html{
  scroll-behavior:smooth;
}
body{
  font-family:'Segoe UI',sans-serif;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#f5f7fa;
  color:#222;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}


/* TOP BAR */

.top-bar{
  background:#003366;
  color:#fff;
  padding:10px 0;
  font-size:14px;
}

.top-bar .container{
  display:flex;
  justify-content:space-between;
}


/* HEADER */

.header{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  padding:20px 0;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:18px;
}

.logo img{
  width:75px;
  height:75px;
  object-fit:contain;
}

.logo-text{
  display:flex;
  flex-direction:column;
}

.logo-text h1{
  color:#003366;
  font-size:28px;
  margin:0;
  line-height:1.1;
}

.logo-text p{
  color:#666;
  font-size:14px;
  margin-top:5px;
}

nav ul{
  list-style:none;
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#003366;
  font-weight:bold;
}
@media(max-width:768px){

  .top-bar .container{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }

  .header{
    padding:15px 0;
  }

  .nav-container{
    flex-direction:column;
    gap:20px;
  }

  .logo{
    flex-direction:column;
    text-align:center;
  }

  .logo img{
    width:70px;
    height:70px;
  }

  .logo h1{
    font-size:36px;
  }

  .logo p{
    font-size:15px;
  }

  nav{
    width:100%;
  }

  nav ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    padding:0;
  }

  nav ul li{
    margin:0;
  }

  nav a{
    font-size:17px;
  }

  .hero{
    height:500px;
  }

  .hero-content h2{
    font-size:42px;
  }

  .hero-content p{
    font-size:18px;
  }

  .about-container{
    flex-direction:column;
  }

}
/* HAMBURGER MENU */

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:34px;
  color:#003366;
  cursor:pointer;
}


/* MOBILE MENU */

@media(max-width:768px){

  .nav-container{
    position:relative;
  }

  .menu-toggle{
    display:block;
    position:absolute;
    top:20px;
    right:20px;
  }

  nav{
    width:100%;
    display:none;
    margin-top:20px;
  }

  nav.active{
    display:block;
  }

  nav ul{
    flex-direction:column;
    gap:20px;
    text-align:center;
    background:#fff;
    padding:20px 0;
  }

  .logo{
    flex-direction:column;
    text-align:center;
  }

  .logo h1{
    font-size:34px;
  }

  .hero-content h2{
    font-size:42px;
  }

}


/* HERO */

.hero{
  position:relative;
  height:500px;
  background:url('../images/ktl_main_bg.jpg') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  text-align:center;
  color:#fff;
}

.hero-content h2{
  font-size:60px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:22px;
}

.btn{
  display:inline-block;
  margin-top:30px;
  background:#0056b3;
  color:#fff;
  padding:14px 30px;
  text-decoration:none;
  border-radius:5px;
  transition:0.3s;
}

.btn:hover{
  background:#003366;
  transform:translateY(-2px);
}


/* ABOUT */

.about{
  padding:80px 0;
  /* color: #ffffff; */
}

.about-container{
  display:flex;
  gap:50px;
  align-items:center;
}

.about-text{
  flex:1;
}

.about-text h2{
  margin-bottom:20px;
  color:#003366;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:10px;
}


/* QUICK LINKS */

.quick-links{
  padding:80px 0;
  background:#fff;
}

.quick-links h2{
  text-align:center;
  margin-bottom:50px;
  color:#003366;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:#f9fbff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.card h3{
  margin-bottom:15px;
  color:#003366;
}


/* FOOTER */

footer{
  background:#003366;
  color:#fff;
  text-align:center;
  padding:20px 0;
  margin-top:50px;
}


/* RESPONSIVE */

@media(max-width:768px){

  .nav-container{
    flex-direction:column;
    gap:20px;
  }

  nav ul{
    flex-direction:column;
    text-align:center;
  }

  .hero-content h2{
    font-size:40px;
  }

  .about-container{
    flex-direction:column;
  }

}
/* CORPORATE GOVERNANCE SECTION */

.governance{
  padding:90px 0;
  background:#f5f7fa;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:42px;
  color:#003366;
  margin-bottom:15px;
}

.section-title p{
  font-size:18px;
  color:#666;
}

.governance-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.governance-card{
  background:#fff;
  padding:40px 35px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.governance-card:hover{
  transform:translateY(-5px);
}

.governance-card h3{
  color:#003366;
  margin-bottom:20px;
  font-size:26px;
}

.governance-card p{
  color:#555;
  line-height:1.8;
  font-size:17px;
}
/* ANNOUNCEMENTS SECTION */

.announcements{
  padding:90px 0;
  background:#ffffff;
}

.announcement-list{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.announcement-item{
  background:#f9fbff;
  padding:25px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:30px;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
  transition:0.3s;
}

.announcement-item:hover{
  transform:translateY(-4px);
}

.announcement-date{
  min-width:90px;
  height:90px;
  background:#003366;
  color:#fff;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.announcement-date span{
  font-size:32px;
  font-weight:bold;
}

.announcement-date small{
  font-size:14px;
  letter-spacing:1px;
}

.announcement-content h3{
  color:#003366;
  margin-bottom:10px;
  font-size:24px;
}

.announcement-content p{
  color:#555;
  line-height:1.7;
}
/* DOWNLOADS SECTION */

.downloads{
  padding:90px 0;
  background:#f5f7fa;
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.download-card{
  background:#fff;
  padding:35px 30px;
  border-radius:12px;
  text-decoration:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
  color:inherit;
}

.download-card:hover{
  transform:translateY(-5px);
}

.download-icon{
  width:70px;
  height:70px;
  background:#003366;
  color:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  margin-bottom:25px;
}

.download-card h3{
  color:#003366;
  margin-bottom:15px;
  font-size:24px;
}

.download-card p{
  color:#555;
  line-height:1.7;
}
/* FOOTER */

.footer{
  background:#002244;
  color:#fff;
  padding-top:80px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
  padding-bottom:50px;
}

.footer-column h3{
  margin-bottom:25px;
  font-size:24px;
}

.footer-column p{
  color:#d6d6d6;
  line-height:1.8;
  margin-bottom:12px;
}

.footer-column ul{
  list-style:none;
}

.footer-column ul li{
  margin-bottom:15px;
}

.footer-column ul li a{
  color:#d6d6d6;
  text-decoration:none;
  transition:0.3s;
}

.footer-column ul li a:hover{
  color:#ffffff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:25px 0;
  margin-top:20px;
}

.footer-bottom p{
  color:#cfcfcf;
}
/* DIRECTORS SECTION */

.directors{
  padding:90px 0;
  background:#ffffff;
}

.directors-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:35px;
}

.director-card{
  background:#f9fbff;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.director-card:hover{
  transform:translateY(-5px);
}

.director-card img{
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
}

.director-card h3{
  color:#003366;
  margin-bottom:10px;
  font-size:24px;
}

.director-card p{
  color:#666;
  font-size:16px;
}

.director-btn{
  text-align:center;
  margin-top:50px;
}
/* PAGE HERO */

.page-hero{
  position:relative;
  height:420px;
  background:url('../images/Bg3.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.page-hero-content{
  position:relative;
  text-align:center;
  color:#fff;
}

.page-hero-content h2{
  font-size:60px;
  margin-bottom:20px;
}

.page-hero-content p{
  font-size:22px;
}
/* BOARD SECTION */
/* BOARD OF DIRECTORS */

/* BOARD OF DIRECTORS */

.board-section{
padding:100px 0;
background:#f8fafc;
}

.director-list{
display:flex;
flex-direction:column;
gap:30px;
margin-top:50px;
}

.director-profile{
background:#fff;
border-radius:20px;
overflow:hidden;
display:flex;
align-items:center;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
transition:.3s;
}

.director-profile:hover{
transform:translateY(-5px);
}

.director-image{
    width:380px;
    min-width:380px;
    flex-shrink:0;
    padding:25px;
}

.director-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    object-position:center top;
    border-radius:16px;
    display:block;
}

.director-details{
padding:35px;
flex:1;
}

.director-details h3{
color:#003366;
font-size:32px;
margin-bottom:10px;
}

.designation{
display:inline-block;
background:#eef4ff;
color:#0056b3;
padding:8px 16px;
border-radius:30px;
font-weight:600;
margin-bottom:25px;
}

.director-meta{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.meta-item{
background:#f8fafc;
padding:18px;
border-radius:12px;
}

.meta-item strong{
color:#003366;
display:block;
margin-bottom:8px;
}

.meta-item p{
margin:0;
color:#555;
}

@media(max-width:991px){


.director-profile{
    flex-direction:column;
}

.director-image{
    width:100%;
}

.director-meta{
    grid-template-columns:1fr;
}

}





/* COMMITTEE SECTION */

.committee-section{
  padding:90px 0;
  background:#f5f7fa;
}

.committee-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.committee-card{
  background:#ffffff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.committee-card:hover{
  transform:translateY(-5px);
}

.committee-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.4;
}

.committee-card p{
  color:#555;
  line-height:1.8;
}
/* POLICIES SECTION */

.policies-section{
  padding:90px 0;
  background:#ffffff;
}

.policies-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.policy-card{
  background:#f9fbff;
  padding:35px;
  border-radius:12px;
  text-decoration:none;
  color:inherit;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.policy-card:hover{
  transform:translateY(-5px);
}

.policy-icon{
  width:70px;
  height:70px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.policy-card h3{
  color:#003366;
  margin-bottom:15px;
  font-size:24px;
}

.policy-card p{
  color:#555;
  line-height:1.8;
}
/* COMPLIANCE SECTION */

.compliance-section{
  padding:90px 0;
  background:#f5f7fa;
}

.compliance-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.compliance-card{
  background:#ffffff;
  padding:35px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.compliance-card:hover{
  transform:translateY(-5px);
}

.compliance-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.5;
}

.compliance-card p{
  color:#555;
  line-height:1.8;
}
/* GOVERNANCE DOWNLOADS */

.governance-downloads{
  padding:90px 0;
  background:#ffffff;
}

.downloads-table{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.download-row{
  background:#f9fbff;
  padding:30px;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
}

.download-info h3{
  color:#003366;
  margin-bottom:10px;
  font-size:24px;
}

.download-info p{
  color:#555;
  line-height:1.7;
}

.download-btn{
  background:#003366;
  color:#fff;
  text-decoration:none;
  padding:14px 24px;
  border-radius:6px;
  transition:0.3s;
  white-space:nowrap;
}

.download-btn:hover{
  background:#0056b3;
}


/* RESPONSIVE */

@media(max-width:768px){

  .download-row{
    flex-direction:column;
    align-items:flex-start;
  }

}
/* INVESTOR HERO */

.investor-hero{
  position:relative;
  height:420px;
  background:url('../images/bg4.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.investor-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.investor-hero-content{
  position:relative;
  text-align:center;
  color:#fff;
  padding:20px;
}

.investor-hero-content h2{
  font-size:62px;
  margin-bottom:20px;
}

.investor-hero-content p{
  font-size:22px;
  max-width:800px;
  line-height:1.7;
}
/* INVESTOR ARCHIVE */

.investor-archive{
  padding:90px 0;
  background:#ffffff;
}

.archive-table{
  border:1px solid #dcdcdc;
  border-radius:10px;
  overflow:hidden;
}

.archive-row{
  display:grid;
  grid-template-columns:320px 1fr;
  border-bottom:1px solid #e5e5e5;
}

.archive-row:last-child{
  border-bottom:none;
}

.archive-title{
  background:#f5f7fa;
  padding:28px;
  font-weight:600;
  color:#003366;
  border-right:1px solid #e5e5e5;
  font-size:18px;
}

.archive-links{
  padding:28px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.archive-links a{
  color:#0056b3;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

.archive-links a:hover{
  color:#003366;
  text-decoration:underline;
}


/* MOBILE */

@media(max-width:768px){

  .archive-row{
    grid-template-columns:1fr;
  }

  .archive-title{
    border-right:none;
    border-bottom:1px solid #e5e5e5;
  }

}
/* FINANCIAL RESULTS */

.financial-results{
  padding:90px 0;
  background:#f5f7fa;
}

.financial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.financial-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.financial-card:hover{
  transform:translateY(-5px);
}

.financial-card h3{
  color:#003366;
  margin-bottom:20px;
  font-size:26px;
}

.financial-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.financial-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.financial-card a:hover{
  text-decoration:underline;
}
/* INVESTOR CONTACT */

.investor-contact{
  padding:90px 0;
  background:#f5f5f5;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.contact-card{
  background:#f9fbff;
  padding:40px 35px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.contact-card:hover{
  transform:translateY(-5px);
}

.contact-card h3{
  color:#003366;
  margin-bottom:20px;
  font-size:24px;
}

.contact-card p{
  color:#555;
  line-height:1.8;
}
/* FEATURED REPORTS */

.featured-reports{
  padding:90px 0;
  background:#f5f7fa;
}

.reports-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.report-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.report-card:hover{
  transform:translateY(-5px);
}

.report-year{
  width:90px;
  height:90px;
  background:#003366;
  color:#fff;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:bold;
  margin-bottom:25px;
}

.report-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:26px;
}

.report-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.report-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.report-card a:hover{
  text-decoration:underline;
}
/* ABOUT HERO */

.about-hero{
  position:relative;
  height:420px;
  background:url('../images/bg5.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.about-hero-content{
  position:relative;
  text-align:center;
  color:#fff;
  padding:20px;
}

.about-hero-content h2{
  font-size:62px;
  margin-bottom:20px;
}

.about-hero-content p{
  font-size:22px;
  max-width:850px;
  line-height:1.8;
}
/* COMPANY OVERVIEW */

.company-overview{
  padding:90px 0;
  background:#ffffff;
}

.overview-container{
  display:flex;
  align-items:center;
  gap:60px;
}

.overview-text{
  flex:1;
}

.left-align{
  text-align:left;
  margin-bottom:35px;
}

.overview-text p{
  color:#555;
  line-height:1.9;
  margin-bottom:25px;
  font-size:17px;
}

.overview-image{
  flex:1;
}

.overview-image img{
  width:100%;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}


/* MOBILE */

@media(max-width:768px){

  .overview-container{
    flex-direction:column;
  }

}
/* VISION & MISSION */

.vision-mission{
  padding:90px 0;
  background:#f5f7fa;
}

.vision-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:35px;
}

.vision-card{
  background:#ffffff;
  padding:50px 40px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.vision-card:hover{
  transform:translateY(-5px);
}

.vision-card h2{
  color:#003366;
  margin-bottom:25px;
  font-size:34px;
}

.vision-card p{
  color:#555;
  line-height:1.9;
  font-size:17px;
}
/* COMPANY HIGHLIGHTS */

.company-highlights{
  padding:90px 0;
  background:#ffffff;
}

.highlights-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.highlight-card{
  background:#f5f7fa;
  padding:50px 30px;
  text-align:center;
  border-radius:14px;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
  transition:0.3s;
}

.highlight-card:hover{
  transform:translateY(-5px);
}

.highlight-card h3{
  color:#003366;
  font-size:52px;
  margin-bottom:18px;
}

.highlight-card p{
  color:#555;
  line-height:1.7;
  font-size:18px;
}
/* MANUFACTURING SECTION */

.manufacturing-section{
  padding:90px 0;
  background:#f5f7fa;
}

.manufacturing-container{
  display:flex;
  align-items:center;
  gap:60px;
}

.manufacturing-image{
  flex:1;
}

.manufacturing-image img{
  width:100%;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.manufacturing-text{
  flex:1;
}

.manufacturing-text p{
  color:#555;
  line-height:1.9;
  margin-bottom:25px;
  font-size:17px;
}


/* MOBILE */

@media(max-width:768px){

  .manufacturing-container{
    flex-direction:column;
  }

}
/* LEADERSHIP SECTION */

.leadership-section{
  padding:90px 0;
  background:#ffffff;
}

.leadership-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:35px;
}

.leader-card{
  background:#f9fbff;
  padding:40px 35px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.leader-card:hover{
  transform:translateY(-5px);
}

.leader-card img{
  width:150px;
  height:150px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:25px;
}

.leader-card h3{
  color:#003366;
  margin-bottom:10px;
  font-size:26px;
}

.leader-card span{
  display:block;
  color:#0056b3;
  font-weight:600;
  margin-bottom:18px;
}

.leader-card p{
  color:#555;
  line-height:1.8;
}
.director-details{
    margin-top:20px;
    text-align:left;
}

.director-details p{
    margin-bottom:10px;
    color:#555;
    font-size:15px;
}

.director-details strong{
    color:#003366;
}

/* CONTACT HERO */

.contact-hero{
  position:relative;
  height:420px;
  background:url('../images/contact1.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.contact-hero-content{
  position:relative;
  text-align:center;
  color:#fff;
  padding:20px;
}

.contact-hero-content h2{
  font-size:62px;
  margin-bottom:20px;
}

.contact-hero-content p{
  font-size:22px;
  max-width:850px;
  line-height:1.8;
}
/* CONTACT INFO */

.contact-info-section{
  padding:90px 0;
  background:#ffffff;
}

.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.contact-info-card{
  background:#f5f7fa;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 15px rgba(0,0,0,0.06);
  transition:0.3s;
}

.contact-info-card:hover{
  transform:translateY(-5px);
}

.contact-info-card h3{
  color:#003366;
  margin-bottom:20px;
  font-size:24px;
}

.contact-info-card p{
  color:#555;
  line-height:1.8;
}
/* CONTACT FORM */

.contact-form-section{
  padding:90px 0;
  background:#f5f7fa;
}

.form-container{
  display:flex;
  gap:60px;
  align-items:flex-start;
}

.contact-form{
  flex:1;
  background:#ffffff;
  padding:45px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px;
  border:1px solid #dcdcdc;
  border-radius:8px;
  font-size:16px;
  outline:none;
}

.contact-form textarea{
  resize:none;
}

.contact-form button{
  background:#003366;
  color:#fff;
  border:none;
  padding:16px;
  border-radius:8px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#0056b3;
}

.form-info{
  flex:1;
}

.form-info h3{
  color:#003366;
  margin-bottom:25px;
  font-size:34px;
}

.form-info p{
  color:#555;
  line-height:1.9;
  margin-bottom:25px;
  font-size:17px;
}


/* MOBILE */

@media(max-width:768px){

  .form-container{
    flex-direction:column;
  }

}
/* MAP SECTION */

.map-section{
  padding:90px 0;
  background:#ffffff;
}

.map-container{
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}
/* LEGAL DOCUMENTS */

.legal-documents{
  padding:90px 0;
  background:#ffffff;
}

.legal-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.legal-card{
  background:#f9fbff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.legal-card:hover{
  transform:translateY(-5px);
}

.legal-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.legal-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:26px;
}

.legal-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.legal-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.legal-card a:hover{
  text-decoration:underline;
}
/* INDEPENDENT DIRECTORS */

.independent-directors{
  padding:90px 0;
  background:#f5f7fa;
}

.independent-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.independent-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.independent-card:hover{
  transform:translateY(-5px);
}

.independent-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.independent-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:26px;
}

.independent-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.independent-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.independent-card a:hover{
  text-decoration:underline;
}
/* REMUNERATION SECTION */

.remuneration-section{
  padding:90px 0;
  background:#ffffff;
}

.remuneration-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.remuneration-card{
  background:#f9fbff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.remuneration-card:hover{
  transform:translateY(-5px);
}

.remuneration-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.remuneration-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:26px;
  line-height:1.5;
}

.remuneration-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.remuneration-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.remuneration-card a:hover{
  text-decoration:underline;
}
/* MATERIALITY SECTION */

.materiality-section{
  padding:90px 0;
  background:#f5f7fa;
}

.materiality-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.materiality-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.materiality-card:hover{
  transform:translateY(-5px);
}

.materiality-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.materiality-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.5;
}

.materiality-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.materiality-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.materiality-card a:hover{
  text-decoration:underline;
}
/* SECRETARIAL SECTION */

.secretarial-section{
  padding:90px 0;
  background:#ffffff;
}

.secretarial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.secretarial-card{
  background:#f9fbff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.secretarial-card:hover{
  transform:translateY(-5px);
}

.secretarial-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.secretarial-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.5;
}

.secretarial-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.secretarial-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.secretarial-card a:hover{
  text-decoration:underline;
}
/* RATINGS SECTION */

.ratings-section{
  margin-top: 30px;;
  padding:90px 0;
  background:#ffffff;
}

.ratings-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.ratings-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.ratings-card:hover{
  transform:translateY(-5px);
}

.ratings-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.ratings-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.5;
}

.ratings-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.ratings-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.ratings-card a:hover{
  text-decoration:underline;
}
/* ANNUAL RETURN SECTION */

.annual-return-section{
  padding:90px 0;
  background:#ffffff;
}

.annual-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.annual-card{
  background:#f9fbff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.annual-card:hover{
  transform:translateY(-5px);
}

.annual-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.annual-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.5;
}

.annual-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.annual-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.annual-card a:hover{
  text-decoration:underline;
}
/* KMP SECTION */

.kmp-section{
  padding:90px 0;
  background:#ffffff;
  padding-left: 20px;
  padding-right: 20px;
}

.kmp-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.kmp-card{
  background:#f5f7fa;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.kmp-card:hover{
  transform:translateY(-5px);
}

.kmp-card h3{
  color:#003366;
  margin-bottom:25px;
  font-size:24px;
}

.kmp-card p{
  color:#555;
  line-height:1.9;
  margin-bottom:15px;
}

.kmp-card strong{
  color:#003366;
}
/* REGULATION 47 SECTION */

.reg47-section{
  padding:90px 0;
  background:#f5f7fa;
}

.reg47-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.reg47-card{
  background:#ffffff;
  padding:40px 35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.reg47-card:hover{
  transform:translateY(-5px);
}

.reg47-icon{
  width:75px;
  height:75px;
  background:#003366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  font-weight:bold;
  margin-bottom:25px;
}

.reg47-card h3{
  color:#003366;
  margin-bottom:18px;
  font-size:24px;
  line-height:1.5;
}

.reg47-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.reg47-card a{
  color:#0056b3;
  text-decoration:none;
  font-weight:600;
}

.reg47-card a:hover{
  text-decoration:underline;
}


/* COMPANY OVERVIEW */

.company-overview{
    padding:100px 0;
    background:#fff;
}

.overview-wrapper{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:center;
}

.section-tag{
    display:inline-block;
    background:#eef4ff;
    color:#003366;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.overview-content h2{
    font-size:48px;
    color:#003366;
    margin-bottom:25px;
}

.overview-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.company-facts-panel{
    background:#003366;
    border-radius:20px;
    padding:40px;
    color:#fff;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.fact-item{
    padding-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,0.15);
}

.fact-item span{
    display:block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    opacity:.8;
    margin-bottom:8px;
}

.fact-item h3{
    font-size:20px;
    margin:0;
    font-weight:600;
}

@media(max-width:991px){

.overview-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.company-facts-panel{
    grid-template-columns:1fr;
}

.overview-content h2{
    font-size:34px;
}

}
/* COMPANY INFO */

/* .company-info{
  padding:90px 0;
  background:#ffffff;
} */

.company-info-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.company-info-card{
  background:#ffffff;
  padding:35px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.company-info-card h3{
  color:#003366;
  margin-bottom:15px;
  font-size:22px;
}

.company-info-card p{
  color:#555;
  font-size:18px;
  font-weight:600;
}

/* BOARD OF DIRECTORS */

.board-section{
    padding:100px 0;
    background:#f8fafc;
}

.board-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.director-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.director-card:hover{
    transform:translateY(-8px);
}

.director-card img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin:30px auto 20px;
    display:block;
    border:5px solid #f5f7fa;
}

.director-content{
    padding:30px;
}

.director-content h3{
    font-size:24px;
    color:#003366;
    margin-bottom:8px;
}

.director-content span{
    display:inline-block;
    background:#eef4ff;
    color:#0056b3;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.director-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.director-content ul li{
    padding:12px 0;
    border-bottom:1px solid #e9ecef;
    color:#555;
    font-size:15px;
    line-height:1.6;
}

.director-content ul li:last-child{
    border-bottom:none;
}

.director-content strong{
    color:#003366;
}


/* BOARD OF DIRECTORS */

.board-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-subtitle{
    display:inline-block;
    background:#eef4ff;
    color:#003366;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.board-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.board-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.board-card:hover{
    transform:translateY(-8px);
}

.board-card img{
    width:130px;
    height:130px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:5px solid #f5f7fa;
}

.board-card h3{
    color:#003366;
    font-size:24px;
    margin-bottom:10px;
}

.director-role{
    display:inline-block;
    background:#eef4ff;
    color:#0056b3;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

.director-info{
    text-align:left;
    margin-top:20px;
}

.director-info p{
    margin-bottom:18px;
    padding-bottom:15px;
    border-bottom:1px solid #e5e7eb;
    color:#555;
    line-height:1.6;
}

.director-info p:last-child{
    border-bottom:none;
}

.director-info strong{
    color:#003366;
}

@media(max-width:768px){

    .board-grid{
        grid-template-columns:1fr;
    }

}
.home-board-section{
    padding:100px 0;
    background:#f8fafc;
}

.home-board-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
}

.home-director-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.home-director-card h3{
    color:#003366;
    margin-bottom:10px;
}

.home-director-card span{
    color:#666;
}

.board-btn{
    text-align:center;
    margin-top:40px;
}

.director-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.director-info-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    border-left:5px solid #003366;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.director-info-card h3{
    color:#003366;
    margin-bottom:10px;
}

.director-info-card span{
    display:inline-block;
    margin-bottom:20px;
    color:#666;
}

.director-info-card ul{
    list-style:none;
    padding:0;
}

.director-info-card li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}
/* BOARD OF DIRECTORS */

.board-section{
padding:100px 0;
background:#f8fafc;
}

.director-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:50px;
}

.director-info-card{
background:#ffffff;
padding:35px;
border-radius:18px;
border-left:5px solid #003366;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.director-info-card:hover{
transform:translateY(-5px);
}

.director-info-card h3{
color:#003366;
font-size:28px;
margin-bottom:10px;
}

.designation{
display:inline-block;
background:#eef4ff;
color:#0056b3;
padding:8px 16px;
border-radius:30px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.director-info-card ul{
list-style:none;
padding:0;
margin:0;
}

.director-info-card ul li{
padding:12px 0;
border-bottom:1px solid #e5e7eb;
color:#555;
}

.director-info-card ul li:last-child{
border-bottom:none;
}

.director-info-card strong{
color:#003366;
}

@media(max-width:768px){


.director-grid{
    grid-template-columns:1fr;
}


}
