html {
  font-family: 'Josefin Sans', sans-serif;
  overflow-x: hidden
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  --primary: #b4988d;
  --dark: #1f1f1f;
  --text: #444;
  --bg: #f6f4f3;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
}

/*--- header css ---*/

a {
  text-decoration: none;
   color: rgb(180 152 141);
}
/* ================= HEADER ================= */
.site-header{
  background:#fff;
  border-bottom:1px solid #ddd;
  position:relative;
  z-index:1000;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.logo{
  font-weight:bold;
  font-size:18px;
  text-decoration:none;
  color:#000;
}

/* ================= NAV ================= */
.main-nav{
  margin-left:auto;
}


.main-nav > ul{
  list-style:none;
  display:flex;
  gap: 40px;
}


.main-nav li{
  position:relative;
}

.main-nav a{
  /* padding: 0px 18px; */
  text-decoration:none;
  color:#000;
  display:block;
  white-space:nowrap;
  position: relative;
}
.main-nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  width:0%;
  height:2px;
  background:#b4988d;
  transition:width 0.3s ease;
}

.main-nav a:hover::after{
  width:100%;
}

/* ================= NORMAL DROPDOWN ================= */
.has-dropdown{
  position:relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 200px;
    background: #d8ad9c;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    padding: 6px 0;
    display: none;
    z-index: 2000;
    list-style: none;
}



.dropdown li a{
  padding:10px 16px;
  font-size:14px;
}

.dropdown li a:hover{
  color:#f5f5f5;
}

.has-dropdown:hover > .dropdown{
  display:block;
}

/* ================= MEGA MENU ================= */
.has-mega{
  position:static;
}

.mega-menu {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100vw;
    height: 100vh;
    background: #9f644d;
    display: none;
    z-index: 1500;
}

/* bg image */


.mega-overlay{
  position:absolute;
  inset:0;
  background:rgb(190, 165, 156,0.5);
}

.mega-content{
  position:relative;
  height:100%;
  max-width:1200px;
  margin:auto;
  display:flex;
}

.mega-grid {
    width: 100%;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

.mega-col h4{
  color:#fff;
  font-size:17px;
  margin-bottom:14px;
  border-bottom:2px solid #ff3b3b;
  display:inline-block;
  padding-bottom:6px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
}
.mega-col ul li a {
    color: #ffffff;
    font-size: 14px;
    padding: 6px 0;
    display: block;
    text-decoration: none;
}

.mega-col ul li a:hover{
  color:#fff;
  text-decoration:underline;
}

/* hover open mega */
.has-mega:hover .mega-menu{
  display:block;
}

/* ================= MOBILE ================= */
.menu-btn{
  display:none;
  cursor:pointer;
  margin-right:15px;
}

.menu-btn span{
  width:25px;
  height:2px;
  background:#000;
  display:block;
  margin:5px 0;
}

@media(max-width:991px){
  .menu-btn{display:block;}

  .main-nav{
    position:fixed;
    top:60px;
    left:-100%;
    width:100%;
    height:calc(100vh - 60px);
    background:#fff;
    transition:.3s;
    overflow:auto;
  }

  .main-nav.active{
    left:0;
  }

  .main-nav ul{
    flex-direction:column;
  }

  .dropdown,
  .mega-menu{
    position:static;
    height:auto;
    display:none;
  }

  .has-dropdown:hover .dropdown,
  .has-mega:hover .mega-menu{
    display:none;
  }

  .has-dropdown.active .dropdown,
  .has-mega.active .mega-menu{
    display:block;
  }

  .mega-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}
/* sticky state */
.site-header.is-sticky{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  animation:stickyFade .25s ease;
}

@keyframes stickyFade{
  from{
    transform:translateY(-100%);
  }
  to{
    transform:translateY(0);
  }
}

/*--- banner css ---*/
section.section-banner {
  background-image: url(../images/banner.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  object-fit: contain;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* footer css */
/* ================= Footer Parent ================= */
.site-footer{
  --primary:#b4988d;
  --dark:#1f1f1f;
  --text:#555;
  background:#ffffff;
  border-top:4px solid var(--primary);
  font-family:'Poppins', sans-serif;
}

/* ================= Layout ================= */
.site-footer .footer-container{
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px 40px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;
}

/* ================= Columns ================= */
.site-footer h3{
  font-size:20px;
  color:var(--dark);
  margin-bottom:15px;
}

.site-footer h4{
  font-size:16px;
  color:var(--dark);
  margin-bottom:14px;
}

.site-footer p{
  font-size:14.5px;
  color:var(--text);
  line-height:1.7;
}

/* ================= Links ================= */
.site-footer ul{
  list-style:none;
  padding:0;
}

.site-footer ul li{
  margin-bottom:10px;
}

.site-footer ul li a{
  text-decoration:none;
  font-size:14.5px;
  color:var(--text);
  transition:0.3s;
}

.site-footer ul li a:hover{
  color:var(--primary);
}

/* ================= Bottom Bar ================= */
.site-footer .footer-bottom{
  text-align:center;
  padding:18px 15px;
  font-size:13.5px;
  color:#777;
  border-top:1px solid #eee;
}

.site-footer .footer-bottom strong {
    color: #b37c66;
}

/* ================= Responsive ================= */
@media(max-width:768px){
  .site-footer .footer-container{
    grid-template-columns:1fr;
    gap:30px;
  }
}



/* ====================new page ===================== */

/* ================= Parent Scope ================= */
.id-terms-page {
  --primary: #b4988d;
  --dark: #1f1f1f;
  --text: #444;
  --bg: #f6f4f3;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
}

/* ================= Header ================= */
.id-terms-page .id-header {
  padding: 100px 20px 50px;
  text-align: center;
  position: relative;
}

.id-terms-page .id-header::after {
  content: '';
  width: 120px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 20px auto 0;
}

.id-terms-page .id-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--dark);
  margin-bottom: 8px;
}

.id-terms-page .id-header p {
  font-size: 15px;
  max-width: 850px;
  margin: 0 auto;
}

/* ================= Container ================= */
/* .id-terms-page .id-container{
  max-width:1100px;
  margin:-30px auto 60px;
  padding:0 20px;
} */

/* ================= Section Card ================= */
.id-terms-page .id-section {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px;
  margin-bottom: 35px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
  position: relative;
}

.id-terms-page .id-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary);
  border-radius: 14px 0 0 14px;
}

.id-terms-page .id-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 18px;
}
.id-terms-page .id-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--dark);
  margin-bottom: 18px;
}
.id-terms-page .id-section p {
  font-size: 15.5px;
  margin-bottom: 16px;
}

/* ================= List ================= */
.id-terms-page .id-section ul {
  margin-top: 10px;
  padding-left: 22px;
}

.id-terms-page .id-section ul li {
  margin-bottom: 12px;
  font-size: 15.5px;
  position: relative;
}

/* ================= Footer ================= */
.id-terms-page .id-footer {
  text-align: center;
  padding: 30px 15px;
  font-size: 14px;
  color: #777;
}

.id-terms-page .id-footer strong {
  color: var(--primary);
}

/* ================= Responsive ================= */
@media(max-width:768px) {
  .id-terms-page .id-header h1 {
    font-size: 28px;
  }

  .id-terms-page .id-section {
    padding: 30px 25px;
  }

  .id-terms-page .id-section h2 {
    font-size: 21px;
  }
}

/* ========================board of directors -=============================== */
/* ================= Parent Scope ================= */
.bod-page{
  --primary:#b4988d;
  --dark:#1e1e1e;
  --text:#444;
  --bg:#f6f4f3;
  font-family:'Poppins', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
}

/* ================= Header ================= */
.bod-page .bod-header{
  /* background:#fff; */
  padding:120px 20px 50px;
  text-align:center;
}

.bod-page .bod-header h1{
  font-family:'Playfair Display', serif;
  font-size:36px;
  color:var(--dark);
}

.bod-page .bod-header span{
  display:block;
  width:120px;
  height:3px;
  background:var(--primary);
  margin:20px auto 0;
}

/* ================= Container ================= */
.bod-page .bod-container{
  max-width:1100px;
  margin:-30px auto 60px;
  padding:0 20px;
}

/* ================= Section ================= */
.bod-page .bod-section{
  background:#fff;
  border-radius:14px;
  padding:40px;
  box-shadow:0 25px 45px rgba(0,0,0,0.06);
}

/* ================= Table ================= */
.bod-page table{
  width:100%;
  border-collapse:collapse;
}

.bod-page thead th{
  text-align:left;
  padding:14px 15px;
  background:#f2eeec;
  color:var(--dark);
  font-weight:500;
  font-size:15px;
}

.bod-page tbody td{
  padding:14px 15px;
  border-bottom:1px solid #eee;
  font-size:14.5px;
  vertical-align:top;
}

.bod-page tbody tr:last-child td{
  border-bottom:none;
}

/* ================= Status ================= */
.bod-page .status-active{
  color:#2e7d32;
  font-weight:500;
}

.bod-page .status-ceased{
  color:#c62828;
  font-weight:500;
}

/* ================= Sub Section ================= */
.bod-page .sub-section{
  margin-top:50px;
}

.bod-page .sub-section h2{
  font-family:'Playfair Display', serif;
  font-size:24px;
  margin-bottom:18px;
  color:var(--dark);
  border-left:5px solid var(--primary);
  padding-left:12px;
}

/* ================= Footer ================= */
.bod-page .bod-footer{
  text-align:center;
  margin-top:40px;
  font-size:14px;
  color:#777;
}

@media(max-width:768px){
  .bod-page .bod-header h1{
    font-size:28px;
  }
  .bod-page .bod-section{
    padding:25px;
  }
  .bod-page table{
    font-size:14px;
  }
}
.bod-page .sub-section table td{
  line-height:1.7;
}

/* ===========================committee page ============================ */

.committee-page{
  --primary:#b4988d;
  --dark:#1f1f1f;
  --text:#444;
  --bg:#f6f4f3;
  font-family:'Poppins', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
}

/* ================= Header ================= */
.committee-page .committee-header{
  /* background:#ffffff; */
  padding:120px 20px 50px;
  text-align:center;
}

.committee-page .committee-header h1{
  font-family:'Playfair Display', serif;
  font-size:36px;
  color:var(--dark);
}

.committee-page .committee-header span{
  display:block;
  width:140px;
  height:3px;
  background:var(--primary);
  margin:20px auto 0;
}

/* ================= Container ================= */
.committee-page .committee-container{
  max-width:1100px;
  margin:-30px auto 60px;
  padding:0 20px;
}

/* ================= Section ================= */
.committee-page .committee-section{
  background:#fff;
  border-radius:14px;
  padding:40px;
  margin-bottom:40px;
  box-shadow:0 25px 45px rgba(0,0,0,0.06);
}

.committee-page .committee-section h2{
  font-family:'Playfair Display', serif;
  font-size:24px;
  margin-bottom:20px;
  color:var(--dark);
  border-left:5px solid var(--primary);
  padding-left:14px;
}

/* ================= Table ================= */
.committee-page table{
  width:100%;
  border-collapse:collapse;
}

.committee-page thead th{
  text-align:left;
  padding:14px 15px;
  background:#f2eeec;
  font-weight:500;
  font-size:15px;
  color:var(--dark);
}

.committee-page tbody td{
  padding:14px 15px;
  border-bottom:1px solid #eee;
  font-size:14.5px;
}

.committee-page tbody tr:last-child td{
  border-bottom:none;
}

/* ================= Footer ================= */
.committee-page .committee-footer{
  text-align:center;
  margin-top:40px;
  font-size:14px;
  color:#777;
}

.committee-page .committee-footer strong{
  color:var(--primary);
}

/* ================= Responsive ================= */
@media(max-width:768px){
  .committee-page .committee-header h1{
    font-size:28px;
  }
  .committee-page .committee-section{
    padding:25px;
  }
}

/* ========================= contact  us page ===========================================*/
.supra-contact{
  --primary:#b4988d;
  --dark:#1f1f1f;
  --text:#555;
  --bg:#f6f5f4;
  font-family:'Poppins', sans-serif;
  background:var(--bg);
  padding:80px 20px;
}

.supra-contact .supra-container{
  max-width:1200px;
  margin:auto;
}

.supra-contact .supra-title{
  text-align:center;
  margin-bottom:50px;
}

.supra-contact .supra-title h1{
  font-size:36px;
  color:var(--dark);
  font-weight:600;
}

.supra-contact .supra-title span{
  display:block;
  width:120px;
  height:3px;
  background:var(--primary);
  margin:15px auto 0;
}

.supra-contact .supra-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:start;
}

.supra-contact .supra-info,
.supra-contact .supra-form{
  background:#fff;
  padding:35px;
  border-radius:14px;
  box-shadow:0 25px 45px rgba(0,0,0,0.06);
}

.supra-contact .supra-info h3{
  font-size:17px;
  margin-bottom:12px;
  border-left:4px solid var(--primary);
  padding-left:10px;
  color:var(--dark);
}

.supra-contact .supra-info p{
  font-size:14.5px;
  line-height:1.8;
  margin-bottom:22px;
}

.supra-contact .supra-info a{
  color:var(--primary);
  text-decoration:none;
  font-weight:500;
}

.supra-contact .supra-info a:hover{
  text-decoration:underline;
}

.supra-contact .supra-form h2{
  font-size:24px;
  margin-bottom:25px;
  color:var(--dark);
}

.supra-contact .supra-field{
  margin-bottom:18px;
}

.supra-contact .supra-field label{
  display:block;
  margin-bottom:6px;
  font-size:14px;
}

.supra-contact input,
.supra-contact textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14.5px;
  transition:0.3s;
}

.supra-contact textarea{
  resize:vertical;
  min-height:120px;
}

.supra-contact input:focus,
.supra-contact textarea:focus{
  outline:none;
  border-color:var(--primary);
}

.supra-contact button{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:12px 30px;
  border-radius:30px;
  cursor:pointer;
  transition:0.3s;
}

.supra-contact button:hover{
  opacity:0.9;
}

@media(max-width:992px){
  .supra-contact .supra-grid{
    grid-template-columns:1fr;
  }
}


/* ========================= about  us page ===========================================*/

.about-page{
  --primary:#b4988d;
  --dark:#1f1f1f;
  --text:#444;
  --bg:#f6f4f3;
  font-family:'Poppins', sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.8;
}

/* ================= Header ================= */
.about-page .about-header{
  padding:70px 20px 50px;
  text-align:center;
}

.about-page .about-header h1{
  font-family:'Playfair Display', serif;
  font-size:36px;
  color:var(--dark);
}

.about-page .about-header span{
  display:block;
  width:120px;
  height:3px;
  background:var(--primary);
  margin:20px auto 0;
}

/* ================= Container ================= */
.about-page .about-container{
  max-width:1100px;
  margin:-30px auto 60px;
  padding:0 20px;
}

/* ================= Section ================= */
.about-page .about-section{
  background:#fff;
  border-radius:14px;
  padding:40px;
  margin-bottom:40px;
  box-shadow:0 25px 45px rgba(0,0,0,0.06);
}

.about-page .about-section h2{
  font-family:'Playfair Display', serif;
  font-size:24px;
  margin-bottom:40px;
  color:var(--dark);
  border-left:5px solid var(--primary);
  padding-left:14px;
}

.about-page .about-section p{
  margin-bottom:16px;
  font-size:15.5px;
}

/* ================= Directors Grid ================= */
.about-page .director-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.about-page .director-card{
  background:#fafafa;
  padding:25px;
  border-radius:10px;
  border-left:4px solid var(--primary);
  transition:all 0.35s ease;
}

.about-page .director-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  background:#ffffff;
}


.about-page .director-card h3{
  font-size:18px;
  color:var(--dark);
  margin-bottom:6px;
}

.about-page .director-card span{
  font-size:14px;
  font-weight:500;
  color:#777;
  display:block;
  margin-bottom:12px;
}

.about-page .director-card p{
  font-size:14.5px;
}

/* ================= Responsive ================= */
@media(max-width:768px){
  .about-page .about-header h1{
    font-size:28px;
  }
  .about-page .director-grid{
    grid-template-columns:1fr;
  }
  .about-page .about-section{
    padding:25px;
  }
}


/* ==================================Investor zone page ============================================= */

.investor-zone{
  --primary:#b4988d;
  --dark:#1f1f1f;
  --text:#555;
  background:#f6f5f4;
  padding:80px 20px;
  font-family:'Poppins', sans-serif;
}

.investor-zone .investor-container{
  max-width:1100px;
  margin:auto;
}

.investor-zone .investor-title{
  text-align:center;
  margin-bottom:60px;
}

.investor-zone .investor-title h1{
  font-size:36px;
  color:var(--dark);
}

.investor-zone .investor-title span{
  display:block;
  width:120px;
  height:3px;
  background:var(--primary);
  margin:15px auto 0;
}

.investor-zone .investor-section{
  background:#fff;
  padding:30px;
  margin-bottom:30px;
  border-radius:12px;
  box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.investor-zone .investor-section h2{
  font-size:18px;
  margin-bottom:15px;
  border-left:4px solid var(--primary);
  padding-left:10px;
  color:var(--dark);
}

.investor-zone ul{
  list-style:none;
  padding:0;
}

.investor-zone li{
  margin-bottom:10px;
}

.investor-zone a{
  text-decoration:none;
  color:var(--text);
  transition:0.3s;
  position:relative;
  padding-left:18px;
}

.investor-zone a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 25px;
    color: var(--primary);
}

.investor-zone a:hover{
  color:var(--primary);
}

.investor-zone p{
  font-size:14.5px;
  line-height:1.8;
}
