/*

Theme Name: themesmufti

Text Domain: themesmufti

Author: Nama Kamu

Description: Tema custom untuk proyek kamu

Version: 1.0

License: GNU General Public License v2 or later
<style>



/* INVESTOR */
:root{
  --inv-bg:#0a3a67;       /* biru header/footer KWOSM */
  --inv-ink:#0e2239;      /* teks gelap */
  --inv-ink-soft:#546a82; 
  --inv-card:#0f4a82; 
  --inv-accent:#20b2ff;   /* aksen link/hover */
  --container:1200px;
}

.investor-page .inv-container{max-width:var(--container);margin:auto;padding:24px;}
.investor-page h2{font-size:clamp(22px,2.2vw,32px);margin:0 0 12px;}
.investor-page p{line-height:1.6;color:var(--inv-ink);}

/* HERO */
.inv-hero{
  background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.35)), var(--hero-bg) center/cover no-repeat;
  color:#fff; padding:80px 0;
}
.inv-hero .eyebrow{letter-spacing:.12em;text-transform:uppercase;opacity:.9;margin:0 0 8px;}
.inv-hero h1{font-size:clamp(28px,3.2vw,44px);margin:0 0 8px;}
.inv-hero .sub{opacity:.95;max-width:800px}

/* HIGHLIGHTS */
.inv-highlights{background:#f6f9fc;padding:32px 0;}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.inv-card{background:#fff;border:1px solid #e6eef6;border-radius:14px;padding:18px}
.inv-card .value{font-size:clamp(22px,2.6vw,32px);font-weight:700;color:var(--inv-ink)}
.inv-card .label{color:var(--inv-ink-soft);margin:2px 0 0}

/* REPORTS */
.inv-reports .section-head{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:12px}
.inv-reports .filters select{padding:8px 10px;border:1px solid #d6e0ea;border-radius:10px}
.report-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.report-item{display:block;background:#fff;border:1px solid #e6eef6;border-radius:14px;padding:16px;text-decoration:none}
.report-item:hover{border-color:var(--inv-accent);box-shadow:0 6px 20px rgba(0,0,0,.06)}
.ri-head{display:flex;gap:8px;justify-content:space-between;color:var(--inv-ink-soft);font-size:14px}
.report-item h3{margin:6px 0 2px;font-size:16px;color:var(--inv-ink)}
.ri-meta{font-size:12px;color:var(--inv-ink-soft)}

/* NEWS */
.inv-news{padding:28px 0}
.news-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.news-item{background:#fff;border:1px solid #e6eef6;border-radius:14px;padding:16px}
.news-item time{font-size:12px;color:var(--inv-ink-soft)}
.news-item h3{margin:8px 0 6px;font-size:16px}

/* GOVERNANCE */
.inv-gov{background:#f6f9fc;padding:28px 0}
.gov-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;list-style:none;padding:0;margin:0}
.gov-list a{display:block;background:#fff;border:1px solid #e6eef6;border-radius:12px;padding:14px;text-decoration:none}
.gov-list a:hover{border-color:var(--inv-accent)}

/* FAQ */
.inv-faq details{background:#fff;border:1px solid #e6eef6;border-radius:12px;padding:12px;margin-bottom:10px}
.inv-faq summary{cursor:pointer;font-weight:600}
.inv-faq .answer{margin-top:8px;color:var(--inv-ink)}

/* CONTACT */
.inv-contact{background:#0a3a67;color:#fff;padding:36px 0}
.inv-contact a{color:#fff;text-decoration:underline}
.contact-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:20px}

/* Responsive */
@media (max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .report-list,.news-list{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .grid-4,.report-list,.news-list,.gov-list{grid-template-columns:1fr}
  .inv-hero{padding:56px 0}
}

/* INVESTOR */


/* ganti selector sesuai elemen deskripsimu */
.about-desc,
.about-desc p {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  display: block !important;               /* pastikan bukan -webkit-box */
  -webkit-line-clamp: unset !important;    /* hilangkan clamp */
  -webkit-box-orient: initial !important;
  word-break: normal !important;           /* atau break-word jika perlu */
  hyphens: auto;
}

/* kalau parent-nya yang memotong */
.about-desc-wrap {
  height: auto !important;
  overflow: visible !important;
}

/* jika tema/Bootstrap memberi class pemotong */
.text-truncate,
.line-clamp-1,
.line-clamp-2 {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}


/* ===============================
   BASE STRUCTURE
=============================== */
.sliderdefault {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
}

.slide-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 30px;
  color: #fff;
  z-index: 3;
  max-width: 80%;
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.slide-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.slide-desc {
  font-size: 1.3rem;
  line-height: 1.5;
}

/* ===============================
   TRIGGERS (TITLE BUTTONS)
=============================== */
.slider-triggers {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  z-index: 5;
}

.trigger-btn {
  position: relative;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 5px 0;
  overflow: hidden;
  outline: none;
}

.trigger-label {
  display: block;
  margin-bottom: 8px;
}

.progress-base {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #fff;
  border-radius: 2px;
  transition: width linear;
}

/* ===============================
   NAVIGATION BUTTONS
=============================== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0,0,0,0.4);
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 10;
}

.slider-btn.prev { left: 25px; }
.slider-btn.next { right: 25px; }

.slider-container:hover .slider-btn {
  opacity: 1;
  pointer-events: all;
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 1024px) {
  .slide-title { font-size: 2.2rem; }
  .slide-desc { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .slide-content { max-width: 90%; padding: 20px; }
  .slide-title { font-size: 1.8rem; }
  .slide-desc { font-size: 1rem; }
  .slider-triggers { bottom: 25px; flex-direction: column; align-items: center; gap: 15px; }
}

@media (max-width: 480px) {
  .sliderdefault { height: 70vh; }
  .slide-title { font-size: 1.5rem; }
  .slide-desc { font-size: 0.9rem; }
  .trigger-btn { font-size: 0.8rem; }
}
</style>
*/
.card.h-100.text-center {
    padding-top: 24px;
}
.col-lg-6.col-md-12.right-column.about_sec1 {}

.col-lg-6.col-md-12.right-column.about_sec1 h5.text-primary {
    font-size: 13px;
}

.col-lg-6.col-md-12.right-column.about_sec1 h2 {
    font-size: 13px;
        line-height: 25px;
}

.col-lg-6.col-md-12.right-column.about_sec1 p {
       font-size: 13px;
    color: #444343;
    line-height: 24px;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #000000!important;

}
#stock-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 10px 0;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.stock-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stock-name {
  font-weight: bold;
  color: #ffcc00;
}

.stock-change.up { color: #00ff66; }
.stock-change.down { color: #ff4444; }
.stock-change.flat { color: #cccccc; }
.ir-section {
  font-family: "Poppins", sans-serif!important;
}

.ir-text .ir-label {
  color: #d81b60;
  font-weight: 600;
  font-size: 0.9rem;
}
section.ir-section.container.my-5 {
    padding: 0px 70px 0px 70px;
}
.ir-text h2 {
  font-weight: 300!important;
  color: #212121;
  margin: 10px 0;
}

.ir-text p {
  color: #666;
  font-size: 0.95rem;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #d81b60;
  color: #d81b60;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.btn-outline:hover {
  background: #d81b60;
  color: white;
}

.ir-cards {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  height: 350px;
  transition: all 0.5s ease;
}

.ir-card {
  flex: 1;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ir-card .ir-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  text-align: center;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.5s ease;
}

.ir-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.ir-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0;
}

.ir-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.btn-main {
  background: #d81b60;
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-main:hover {
  background: #b0154e;
}

/* Hover efek */
.ir-card:hover {
  flex: 3;
  filter: grayscale(0%);
  transform: scale(1.02);
  z-index: 2;
}

.ir-card:hover .ir-overlay {
  opacity: 1;
}

/* Card lain mengecil */
.ir-cards:hover .ir-card:not(:hover) {
  flex: 0.8;
  filter: grayscale(100%);
}




.footer-info-item h3 {
    font-size: 15px;
    font-weight: 600;
}
.footer-info-item p {
    font-size: 13px!important;
}
.footer-info-column h3 {
    font-size: 15px;
    font-weight: 600;
}
.footer-container p {
    font-size: 12px;
}
.footer-body {
           background: linear-gradient(120deg, #0a192f 0%, #1a365d 50%, #0a192f 100%);
            color: #333;
            background-image: url('https://lokasi.grcadimitra.co.id/wp-content/uploads/2025/10/Frame-7634-1.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        .footer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.85);
            z-index: -1;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .footer-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .footer-logo {
            padding: 15px 0;
            display: flex;
            align-items: center;
        }
        
        .footer-logo img {
            height: 50px;
        }
        
        /* Navigation Styles */
        .footer-nav {
            background-color: #f8f8f8;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .footer-nav-container {
            display: flex;
            justify-content: center;
        }
        
        .footer-nav-item {
            padding: 15px 25px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .footer-nav-item:hover {
            color: #0056b3;
        }
        
        .footer-nav-item.active {
            color: #0056b3;
        }
        
        .footer-nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #0056b3;
        }
        
        /* Tab Content */
        .footer-tab-content {
            display: none;
            padding: 50px 0;
        }
        
        .footer-tab-content.active {
            display: block;
        }
        
        /* Subsidiary Section */
        .footer-section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 28px;
            color: #333;
        }
        
        .footer-subsidiary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-subsidiary-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .footer-subsidiary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .footer-card-logo {
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background-color: #f9f9f9;
        }
        
        .footer-card-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .footer-card-content {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .footer-card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .footer-card-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        /* Investment Section - Logo Grid */
        .footer-investment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-investment-logo {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .footer-investment-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .footer-investment-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        /* Company Info Section */
        .footer-company-info {
               background: linear-gradient(176deg, #0a192f 0%, #000073 50%, #00006a 100%);
            color: white;
            padding: 50px 0;
        }
        
        .footer-info-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-company-logo {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-company-logo img {
            max-width: 200px;
        }
        
        .footer-company-details {
            flex: 2;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
        }
        
        .footer-info-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-info-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-info-icon {
            margin-right: 15px;
            font-size: 18px;
            width: 20px;
            text-align: center;
        }
        
        .footer-social-links {
            margin-top: 15px;
            display: flex;
            align-items: center;
        }
        
        .footer-social-links h3 {
            margin-right: 15px;
            font-size: 18px;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 15px;
        }
        
        .footer-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .footer-social-icon:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        .footer-container p {
    padding: 0px;
    margin: 0px;
}
        /* Footer */
        .footer-footer {
            background-color:#030368;
            color: white;
            text-align: center;
            padding: 20px 0;
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .overlay-inner {
    width: 100%;

}
            .footer-nav-container {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-nav-item {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #eee;
            }
            
            .footer-info-container {
                flex-direction: column;
            }
            
            .footer-company-logo {
                display: flex;
                justify-content: center;
            }
            
            .footer-company-details {
                flex-direction: column;
            }
            
            .footer-info-column {
                width: 100%;
            }
            
            .footer-social-links {
                margin-top: 20px;
            }
            
            .footer-subsidiary-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .footer-investment-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
             .overlay-inner {
    width: 100%!important;

}
            .footer-subsidiary-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-investment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-section-title {
                font-size: 24px;
            }
        }



























.col-sm-12.wrapper {
    margin: 50px;
    padding: 50px;
}
.card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card img {
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}


.language-switch {
  font-weight: 500;
  font-size: 15px;
}

.lang-link {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-link:hover {
  color: #d00;
}

/* 🔴 Aktif berwarna merah */
.lang-link.active-lang {
  color: #d00;
  font-weight: 700;
  border-bottom: 2px solid #d00;
}

.language-switch a.active {
  color: #0d6efd;
  font-weight: 600;
}

.trigger-buttons {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}
.trigger-btn {
    cursor: pointer;
    text-align: center;
    position: relative;
    color: #fff;
}
.trigger-btn.active span { color: #ffca28; } /* warna teks aktif */
.trigger-btn span { display:block; margin-bottom: 5px; }
.trigger-btn .progress-bar {
    position: absolute;
    bottom: -3px;
    left:0;
    height: 3px;
    width:0;
    background: #ffca28; /* warna progres */
    border-radius: 2px;
    transition: width 0.1s linear;
}
/* Pastikan indikator bulat */
#heroCarousel .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important; /* paksa bulat */
    background-color: rgba(255,255,255,0.5) !important;
    border: none !important;
    margin: 0 5px !important;
    transition: background-color 0.3s, transform 0.3s;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #0d6efd !important; /* indikator aktif */
    transform: scale(1.3) !important;
}


.waskita-hero-section {

  background-color: #f8f9fa;

}



.hero-subtitle {

  letter-spacing: 1px;

  color: #b00a1e;

}



.hero-right h1 {

  font-size: 2.2rem;

  font-weight: 700;

  color: #222;

}



.hero-description {

  font-size: 1rem;

  color: #555;

  line-height: 1.6;

}



.hero-btn {

  background-color: #b00a1e;

  color: #fff;

  text-decoration: none;

  transition: all 0.3s ease;

}



.hero-btn:hover {

  background-color: #8b0819;

  transform: translateY(-3px);

}



/* ===== Global ===== */

body, html {

    margin: 0;

    padding: 0;

    height: 100%;

    font-family: 'Inter', sans-serif!important;

    color: #000000;

    

}

.container.wrap {

    padding: 0px;

    margin: 0px;

    width: 100%;

    max-width: 100%;

}

.col-sm-11.s-col-90.s-align-right {

    float: right;

}

.col-sm-1.ws-left-sidebar {

      padding: 0px;
    margin: -3px;

}



.col-sm-11.ws-right-content {

    padding: 0px;

    margin: 0px;

}

/* --- Tambahan CSS untuk Tombol Menu Mobile --- */



.ws-menu-toggler {

    /* Hanya untuk mobile, pastikan ikon terlihat jelas */

    color: #000;

    font-size: 24px;

    border: none;

    background: transparent;

    padding: 10px;

}



/* Modifikasi pada Sidebar di Mobile */

@media (max-width: 575.98px) {

    /* Tata ulang sidebar agar tombol terlihat jelas */

    .sidebar {

        /* ... (CSS Anda sebelumnya: flex-direction: row; justify-content: space-around;) */

        /* Pastikan elemen burger berada di posisi yang tepat di mobile header */

        justify-content: space-between; 

        align-items: center;

        padding: 10px 15px;

    }

    

    /* Sembunyikan konten sidebar desktop yang tidak perlu di mobile (opsional) */

    /* Contoh: jika logo dan ikon sosial ada di get_header() */

    .ws-left-sidebar .ws-logo-area,

    .ws-left-sidebar .ws-social-icons {

        /* display: none; */ 

    }

}

/* CSS ABOUT */

.row.waskita-stats-row.mt-3.pt-2 {

    width: 100%;

    margin: auto;

}
section.project-about .row {
    width: 80%;
    margin: auto;
}

.setimg img.card-img-top {

    width: 20%;

    height: auto;

}

p.text-secondary.mb-4 {

    font-size: 13px;

    color: #000000 !important;

    line-height: 25px;

}

.container.py-5 {

   padding: 0px;

    width: 100%;

    margin: 0px;

    max-width: 100%;

}

/* Pastikan warna utama (merah) sesuai dengan brand Waskita */

:root {

    --waskita-red: #dc3545; /* Menggunakan warna 'danger' Bootstrap sebagai referensi */

    --waskita-light-gray: #f8f9fa; /* Warna latar belakang umum */

}



/* Bagian Hero Section secara keseluruhan */

.waskita-hero-section {

    /* Menggunakan overlay gambar latar belakang dan mengatur background-blend-mode untuk efek keabu-abuan/putih */

    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('path/to/background-image.jpg'); 

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    /* Tambahkan tinggi minimum agar background terlihat, sesuaikan jika diperlukan */

   

}



/* Judul utama */

.waskita-title {

    color: #343a40; /* Warna gelap */

    line-height: 1.2;

}



/* Kotak "About Us" */

.waskita-about-box {

    background-color: transparent; /* Transparan */

}



.waskita-about-heading {

    color: var(--waskita-red);

    text-transform: uppercase;

    font-size: 0.9rem;

}



/* Tombol Explore Our History */

.waskita-btn-explore {

    color: var(--waskita-red);

    border-color: var(--waskita-red);

    border-radius: 0.25rem; /* Sesuaikan dengan style tombol pada desain */

    padding: 0.5rem 1.5rem;

    transition: all 0.3s ease;

}



.waskita-btn-explore:hover {

    color: white;

    background-color: var(--waskita-red);

}



/* Baris Card Statistik */

.waskita-stats-row {

    /* Margin negatif untuk membuat card menonjol ke atas gambar latar */

    margin-top: -5rem; 

}



/* Gaya Card Statistik */

.waskita-stat-card {

    border: none;

    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); /* Bayangan sedikit untuk menonjol */

    border-radius: 0.5rem;

}



/* Kotak Ikon di dalam Card */

.waskita-icon-box {

    width: 60px;

    height: 60px;

    /* Latar belakang abu-abu muda untuk ikon, sesuai desain */

    background-color: var(--waskita-light-gray); 

    border-radius: 0.5rem; /* Sedikit melengkung */

    display: flex;

    align-items: center;

    justify-content: center;

    /* Gambar ikon yang digunakan pada HTML adalah SVG, atur fill-nya di style inline atau CSS */

}



/* Angka Statistik */

.waskita-stat-number {

    color: #343a40; /* Warna gelap */

}



/* Label Statistik */

.waskita-stat-label {

    font-size: 0.9rem;

}



/* Placeholder untuk Logo 64th */

.waskita-logo {

    /* Sesuaikan dimensi dan gaya background untuk logo 64th */

    width: 100px; /* Lebar sesuai desain */

    height: 100px; /* Tinggi sesuai desain */

    background-image: url('https://lokasi.grcadimitra.co.id/wp-content/uploads/2025/10/LOGO-64-TAHUN-WASKITA-KARYA-1-1.png'); /* Ganti dengan gambar logo yang sebenarnya */

    background-size: contain;

    background-repeat: no-repeat;

    background-position: center;

}



/* Responsivitas: Sesuaikan ukuran font untuk layar kecil jika perlu */

@media (max-width: 991.98px) {

    .waskita-title {

        font-size: 2.5rem; /* Ukuran yang lebih kecil untuk layar tablet/mobile */

        margin-left: 0; /* Hapus margin pada layar kecil */

    }

    .waskita-logo {

        width: 80px;

        height: 80px;

    }

}



/* CSS ABOUT */





a {

    text-decoration: none;

    color: inherit;

}

img.custom-logo {

    width: 100%;

    height: auto;

}

/* ===== Top Info Bar ===== */

.top-info-bar {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    color: #fff;

    padding: 20px 185px 20px;

    font-size: 14px;

    z-index: 10;

    margin: auto;

}



.top-info-bar .company-name {

    font-weight: bold;

    color: #b00a1e;

}



.language-selector select {

    padding: 4px 8px;

    border-radius: 5px;

    border: none;

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    font-weight: bold;

    cursor: pointer;

}



.language-selector select option {

    color: #000;

}



.search-box input {

    border: none;

    background: rgba(255, 255, 255, 0.15);

    color: #fff;

    padding: 4px 8px;

    border-radius: 5px;

}



.search-box input::placeholder {

    color: #fff;

}



.search-box button {

    border: none;

    background: none;

    color: #fff;

}

.container.py-5 {

    background: url('https://lokasi.grcadimitra.co.id/wp-content/uploads/2025/10/bg-our-project-oo-1.jpg') no-repeat center center;

    background-size: cover;

}

/* ===== Sidebar ===== */

.sidebar {

    background: #fff;

    border-right: 1px solid #ddd;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    align-items: center;

    padding: 1rem 0;

    height: 100vh;

    width: 8%;

    position: fixed;

    left: 0;

    top: 0;

    z-index: 1200;

}



.sidebar .logo {

    width: 70px;

}



.menu-btn {

    font-size: 1.8rem;

    border: none;

    background: none;

    cursor: pointer;

}



.social-icons {

    display: flex;

    flex-direction: column;

    gap: 0.8rem;

}



.social-icons a {

    color: #111;

    font-size: 1.2rem;

    transition: color 0.3s ease;

}



.social-icons a:hover {

    color: #b00a1e;

}



/* ===== Sidebar Overlay ===== */

.sidebar-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 0;

    height: 100%;

    background: #fff;

    overflow: hidden;

    z-index: 1300;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transform-origin: left center;

    transition: width 0.7s ease, transform 0.7s ease;

}



.sidebar-overlay.show {

    width: 80%;

    transform: scaleX(1.02);

}



.sidebar-overlay.closing {

    transform: scaleX(0.97);

}



.sidebar-overlay .close-btn {

    position: absolute;

    top: 25px;

    right: 40px;

    background: none;

    border: none;

    font-size: 2rem;

    color: #b00a1e;

    cursor: pointer;

}

.close-btn {

  position: fixed;        /* ubah dari absolute → fixed */

  top: 25px;              /* jarak dari atas layar */

  right: 30px;            /* jarak dari kanan layar */

  background: none;

  border: none;

  font-size: 2.2rem;

  color: #b00a1e;

  cursor: pointer;

  z-index: 2000;          /* pastikan di atas semua elemen */

  transition: transform 0.2s ease-in-out;

}



.close-btn:hover {

  transform: scale(1.2) rotate(5deg);

}

.close-btn {

  position: fixed !important;   /* pastikan tidak terpengaruh parent */

  top: 20px !important;         /* jarak dari atas layar */

  right: 25px !important;       /* jarak dari kanan layar */

  background: none;

  border: none;

  font-size: 2.2rem;

  color: #b00a1e;

  cursor: pointer;

  z-index: 3000 !important;     /* pastikan selalu di atas overlay */

  transition: transform 0.2s ease-in-out;

}



.close-btn:hover {

  transform: scale(1.2) rotate(8deg);

}



/* ===== SIDEBAR OVERLAY BASE ===== */

.sidebar-overlay {

  position: fixed;

  top: 0;

  left: 0;

  height: 100%;

  width: 0;

  background: #fff;

  overflow: hidden;

  z-index: 1300;

  transform-origin: left center;

  transition: none;

}



/* Ketika overlay terbuka */

.sidebar-overlay.show {

  animation: overlayExpandBounce 0.6s cubic-bezier(0.55, 0, 0.1, 1) forwards;

}



/* Ketika overlay menutup */

.sidebar-overlay.closing {

  animation: overlayCloseBounce 0.6s cubic-bezier(0.55, 0, 0.1, 1) forwards;

}



/* ===== ANIMASI BOUNCE ===== */

@keyframes overlayExpandBounce {

  0% {

    width: 0;

    transform: scaleX(0.6);

  }

  60% {

    width: 82%;

    transform: scaleX(1.05);

  }

  80% {

    width: 78%;

    transform: scaleX(0.98);

  }

  100% {

    width: 80%;

    transform: scaleX(1);

  }

}



@keyframes overlayCloseBounce {

  0% {

    width: 80%;

    transform: scaleX(1);

  }

  30% {

    width: 83%;

    transform: scaleX(1.05);

  }

  100% {

    width: 0;

    transform: scaleX(0.6);

  }

}



/* ===== INNER WRAPPER ===== */

.overlay-inner {
        width: 40%;
  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 3rem 2rem;

  transform: translateX(0);

  transition: transform 0.4s ease;

}



/* ===== CLOSE BUTTON ===== */

.close-btn {

  position: absolute;

  top: 25px;

  right: 40px;

  background: none;

  border: none;

  font-size: 2rem;

  color: #b00a1e;

  cursor: pointer;

  z-index: 1001;

  transition: transform 0.2s ease-in-out;

}



.close-btn:hover {

  transform: scale(1.2);

}



/* ===== NAVIGATION ===== */


.custom-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-nav-menu li {
    position: relative;
}

.custom-nav-menu > li {
    margin-bottom: 10px;
}

.custom-nav-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.custom-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ====== SUBMENU (Dropdown) ====== */
.custom-nav-menu .sub-menu {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.35s ease;
}

.custom-nav-menu .sub-menu.open {
    max-height: 500px; /* cukup besar agar muat isi */
    opacity: 1;
    transform: translateY(0);
}

/* ====== PANAH DROPDOWN ====== */
.menu-item-has-children > a::after {
    content: "\f107"; /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

/* ====== SUBMENU LINK STYLE ====== */
.custom-nav-menu .sub-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-top: 5px;
}

.main-navigation {

  margin-top: 4rem;

  text-align: left;

}



.custom-nav-menu {

  list-style: none;

  padding: 0;

  margin: 0;

}



.custom-nav-menu li {
    margin-bottom: 0px;
    transform: translateX(0);
    transition: transform 0.3s 
ease;
    border-top: 1px solid #d1d1d1;
    line-height: 44px;
}



.custom-nav-menu li:hover {

  transform: translateX(5px);

}



/* ===== MENU BUTTON ===== */

.menu-btn {

  background: none;

  border: none;

  font-size: 2rem;

  color: #333;

  cursor: pointer;

  z-index: 1002;

}



/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  @keyframes overlayExpandBounce {

    0% { width: 0; transform: scaleX(0.5); }

    60% { width: 105%; transform: scaleX(1.05); }

    80% { width: 95%; transform: scaleX(0.98); }

    100% { width: 100%; transform: scaleX(1); }

  }



  @keyframes overlayCloseBounce {

    0% { width: 100%; transform: scaleX(1); }

    30% { width: 105%; transform: scaleX(1.05); }

    100% { width: 0; transform: scaleX(0.5); }

  }

}



/* ===== Carousel Slider ===== */

.carousel-item {

    position: relative;

    height: 100vh;

    background-size: cover;

    background-position: center;

}



.carousel-caption {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    z-index: 10; /* memastikan berada di atas gambar */

    padding: 0 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 50%;

}



/* ===== Tombol navigasi slider ===== */

.slick-prev,

.slick-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.4); /* semi transparan */

    color: #fff;

    border: none;

    font-size: 30px;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    cursor: pointer;

    z-index: 10; /* pastikan tombol di atas image */

    display: flex;

    align-items: center;

    justify-content: center;

    transition: background 0.3s ease;

}



.slick-prev:hover,

.slick-next:hover {

    background: rgba(0, 0, 0, 0.7);

}



.slick-prev {

    left: 20px; /* jarak dari kiri */

}



.slick-next {

    right: 20px; /* jarak dari kanan */

}



/* ===== Responsif ===== */

@media (max-width: 992px) {

    .carousel-caption h1 {

        font-size: 2.5rem;

    }

    .carousel-caption p {

        font-size: 1.1rem;

    }

}



@media (max-width: 768px) {

    .top-info-bar {

    padding: 0px;

}

    .top-info-bar {

        padding: 0px;

        display: none;

    }

    .carousel-caption{

        width:80%;

    }

    .container.py-5 {

    padding: 33px;

}

    .carousel-caption h1 {

        font-size: 2rem;

    }

    .carousel-caption p {

        font-size: 1rem;

    }



    .slick-prev,

    .slick-next {

        width: 35px;

        height: 35px;

        font-size: 24px;

    }

}



.carousel-caption h1 {

    color: #fff;

    font-size: 3.9rem;

    font-weight: 900;

    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);

    margin-bottom: 15px;

}



.carousel-caption p {

    color: #f1f1f1;

    font-size: 1.2rem;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);

    max-width: 800px;

}



/* ===== Trigger Buttons ===== */

.trigger-buttons {

   position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex
;
    z-index: 4;
    gap: 2rem;
    width: 100%;
    line-height: 35px;
}

}

.card {

  border: none;

  border-radius: 16px;

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

  transform: translateY(0);

  background-color: #fff;

}



/* Efek Hover */

.card:hover {

  transform: translateY(-8px) scale(1.02);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);

}



/* Jika ada gambar di dalam card */

.card img {

  transition: all 0.4s ease;

}



.card:hover img {

  transform: scale(1.08);

}



/* Tambahan opsional — highlight border saat hover */

.card:hover::after {

  content: "";

  position: absolute;

  inset: 0;

  border: 2px solid #b00a1e; /* warna highlight, bisa ganti */

  border-radius: 16px;

  opacity: 0.3;

  pointer-events: none;

  transition: opacity 0.4s ease;

}



/* Animasi halus saat hover keluar */

.card:not(:hover)::after {

  opacity: 0;

}



.trigger-buttons button {

    background: transparent;

    border: none;

    color: #fff;

    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;

}



.trigger-buttons button.active {

    text-decoration: underline;

    color: #b00a1e;

}



/* ===== Dot Navigation ===== */

.dot-navigation {

    display: flex;

    justify-content: center;

    gap: 5px;

}



.dot-navigation .dot {

    height: 10px;

    width: 10px;

    background-color: rgba(255, 255, 255, 0.6);

    border-radius: 50%;

    cursor: pointer;

}



.dot-navigation .dot.active {

    background-color: #fff;

}



/* ===== Responsif ===== */

@media (max-width: 992px) {

    .carousel-caption h1 {

        font-size: 2.5rem;

    }

    .carousel-caption p {

        font-size: 1.1rem;

    }

}



@media (max-width: 768px) {

    .sidebar {

        flex-direction: row;

        justify-content: space-between;

        align-items: center;

        height: auto;

        width: 100%;

        padding: 0.5rem 1rem;

        border-right: none;

        border-bottom: 1px solid #ddd;

        position: fixed;

        top: 0;

        left: 0;

        z-index: 1200;

    }



    .sidebar .logo {

        width: 35px;

    }



    .social-icons {

        flex-direction: row;

        gap: 1rem;

    }



    



    .carousel-item {

        height: 80vh;

    }



    .trigger-buttons {

        overflow-x: auto;

        padding: 0 1rem;

    }



    .trigger-buttons::-webkit-scrollbar {

        display: none;

    }



    .carousel-caption h1 {

        font-size: 2rem;

    }



    .carousel-caption p {

        font-size: 1rem;

    }

}




 /* Breakpoints (mobile-first) */
    @media (min-width: 480px) {        
     section.ir-section.container.my-5 {
    padding: 0px!important;
}
    }




    @media (min-width: 768px) {        
      
    }




    @media (min-width: 1024px) {       
     
    }