/* styles.css - global styles */
:root{
  --bg:#ffffff;
  --text:#222;
  --muted:#666;
  --accent:#00aaff;
  --menu-bg:#000;
  --menu-link:#fff;
  --max-width:1200px;
  --container-padding:28px;
  --font-sans: "Inter", "Poppins", Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}

/* Header: left logo, right hamburger */
.header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px var(--container-padding);
  max-width:var(--max-width);
  margin:0 auto;
}
.logo img{
  height:120px;
  width:120px; 
  display:block;
}
.hamburger{
  font-size:26px;
  cursor:pointer;
  user-select:none;
}

/* Side menu (right) */

/*
.side-menu{
  position:fixed;
  top:0;
  right:-360px; 
  width:360px;
  height:100vh;
  background:var(--menu-bg);
  color:var(--menu-link);
  z-index:9999;
  padding:28px;
  transition: right .36s cubic-bezier(.2,.9,.2,1);
  overflow:auto;
}
.side-menu.open{ right:0; }
.side-menu .close{
  font-size:26px;
  text-align:right;
  cursor:pointer;
}
.side-menu nav{ margin-top:40px; }
.side-menu nav a{
  display:block;
  color:var(--menu-link);
  text-decoration:none;
  padding:18px 6px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:18px;
  letter-spacing:.4px;
}
*/

/* Side menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100vh;
  background: #0c2232;
  color: var(--menu-link);
  z-index: 9999;
  padding: 28px;
  transition: right .36s cubic-bezier(.2, .9, .2, 1);
  overflow: auto;
}

.side-menu.open { 
  right: 0; 
}

.side-menu .close {
  font-size: 26px;
  text-align: right;
  cursor: pointer;
}

.side-menu nav { 
  margin-top: 30px; 
}

.side-menu nav a {
  display: block;
  color: var(--menu-link);
  text-decoration: none;
  padding: 15px 6px;
  border-bottom: 1px solid #ffffff; /* bottom border white */
  font-size: 14px;
  letter-spacing: .4px;
  transition: all 0.25s ease; /* smooth animation */
}

/* Hover effect */
.side-menu nav a:hover {
  background: #10466d; /* light black */
  border-bottom: none; /* remove border on hover */
  padding-left: 12px; /* slight slide right */
}


/* Main hero layout: left content + right image */
.hero {
  overflow-x: hidden;
  display:flex;
  align-items:stretch;
  min-height:calc(100vh - 120px);
  max-width:var(--max-width);
  margin:-30px auto;
  gap:30px;
  padding:20px var(--container-padding);
}
.hero .left{
  width:30%;
  padding:48px 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero .left h1{
  margin:0 0 8px;
  font-size:25px;
  letter-spacing:3px;
}
.hero .left h2{
  margin:0 0 18px;
  font-weight:600;
  color:#050505;
  font-size: 1.3em;
}
.hero .left p{
  text-align: justify;
    line-height: 2em;
  color:#3d3939;
  margin-bottom:14px;
  font-size:15px;
}

/* right image */
.hero .right{
  width:70%;
  position:relative;
  overflow:hidden;
}
.hero .right img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:6px;
}


/* Main hero layout: left content + right image */
.hero1 {
  overflow-x: hidden;
  display:flex;
  align-items:stretch;
  min-height:calc(100vh - 120px);
  max-width:var(--max-width);
  margin:0 auto;
  gap:30px;
  padding:20px var(--container-padding);
}
.hero1 .right1{
  width:30%;
  padding:48px 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero1 .right1 h1{
  margin:0 0 8px;
  font-size:25px;
  letter-spacing:3px;
}
.hero1 .right1 h2{
  margin:0 0 18px;
  font-weight:600;
  color:#050505;
  font-size: 1.3em;
}
.hero1 .right1 p{
  text-align: justify;
    line-height: 2em;
  color:var(--muted);
  margin-bottom:14px;
  font-size:15px;
}

/* right image */
.hero1 .left1{
  width:70%;
  position:relative;
  overflow:hidden;
}
.hero1 .left1 img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:6px;
}


/* Main hero layout: left content + right image */
.hero2 {
  overflow-x: hidden;
  display:flex;
  align-items:stretch;
  min-height:calc(100vh - 120px);
  max-width:var(--max-width);
  margin:0 auto;
  gap:30px;
  padding:20px var(--container-padding);
}


/* right image */
.hero2 .left2{
  width:50%;
  position:relative;
  overflow:hidden;
}
.hero2 .left2 img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:6px;
}
/* right image */
.hero2 .right2{
  width:50%;
  position:relative;
  overflow:hidden;
}
.hero2 .right2 img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:6px;
}

.hero3 {
  overflow-x: hidden;
  display:flex;
  align-items:stretch;
  min-height:calc(100vh - 120px);
  max-width:var(--max-width);
  margin:0 auto;
  gap:30px;
  padding:20px var(--container-padding);
}


/* right image */
.hero3 .left3{
  width:30%;
  position:relative;
  overflow:hidden;
}
.hero3 .left3 img{
  
  margin-top: 51px;
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:6px;
}
/* right image */
.hero3 .right3{
  width:70%;
  position:relative;
  overflow:hidden;
}
.hero3 .right3 img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  border-radius:6px;
}

/* Projects grid */
.projects{
  max-width:var(--max-width);
  margin:40px auto;
  padding:0 var(--container-padding);
}
.projects .grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.project-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(16,24,40,.06);
  overflow: hidden;
  border-radius: 12px;
}

.project-card-inner{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(16,24,40,.06);
  overflow: hidden;
  border-radius: 12px;
}

/* On hover – show original color */
.project-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.03); /* optional zoom effect */
}

/* Projects image grayscale effect */
.project-card img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.project-card .meta{
  padding:12px;
}
.project-card h3{ margin:0 0 8px; font-size:16px; }
.project-card p{ margin:0; color:var(--muted); font-size:14px; }


/* Projects image grayscale effect */
.project-card-inner img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}
.project-card-inner .meta{
  padding:12px;
}
.project-card-inner h3{ margin:0 0 8px; font-size:16px; }
.project-card-inner p{ margin:0; color:var(--muted); font-size:14px; }


/* Contact section */
.contact {
  max-width:var(--max-width);
  margin:40px auto;
  padding:0 var(--container-padding) 80px;
  display:flex;
  gap:30px;
  align-items:flex-start;
}
.contact .form{
  flex:1;
  background:#fff;
  padding:20px;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(16,24,40,.06);
}
.contact .details{
  width:360px;
  min-width:260px;
  background:#fff;
  padding:20px;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(16,24,40,.04);
}
.form label{display:block; font-size:13px; margin-bottom:6px; color:var(--muted)}
.form input[type="text"], .form input[type="email"], .form textarea{
  width:100%; padding:10px; border:1px solid #e6e6e6; border-radius:4px; margin-bottom:10px;
  font-size:14px;
}
.form button{
  background:var(--accent); color:#fff; border:0; padding:10px 16px; border-radius:4px; cursor:pointer;
}
.form small{ color:var(--muted) }

/* Footer */
.footer{
  background:#0b0b0b; color:#ddd; padding:28px;
  text-align:center; font-size:14px;
}

/* Responsive */
@media(max-width:1000px){
  .hero{ flex-direction:column; gap:16px; min-height:unset; }
  .hero .left, .hero .right{ width:100% }
  .projects .grid{ grid-template-columns:repeat(2,1fr) }
  .contact{ flex-direction:column }
  .contact .details{ width:100% }
}
@media(max-width:700px){
  .projects .grid{ grid-template-columns:1fr }
}
/*people page*/

.people {
    width: 94%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

.title {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.intro h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.intro p {
    max-width: 850px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sub-title {
  letter-spacing: 4px;
    padding: 43px;
    font-size: 40px;
    

    margin: 25px 0 15px;
    font-weight: 600;
    text-align: left;
}

/* PARTNERS ROW LAYOUT */
.partner-row {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.partner-row img {
    width: 350px;
    border-radius: 4px;
}

.partner-row h4 {
    margin-bottom: 4px;
    font-size: 18px;
}

.partner-row .designation {
    font-size: 14px;
    margin-bottom: 10px;
    
}

/* OUR TEAM GRID = 3 COLUMNS */
/* .team-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
} */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
    width: 60%;
    border-radius: 4px;
}

.team-card img {
  width: 100%;
  object-fit: cover;
}

/* Name + Designation box */
.team-info {
  padding: 16px 12px 20px;
  background: #f9f9f9;
}

.team-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.team-info p {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
}

/* .team-card h3 {
    text-align: left;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
} */

/* RESPONSIVE */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-row {
        flex-direction: column;
    }
    .partner-row img {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* contact page */
/* MAP */
.map-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* TWO COLUMNS */
.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.contact-columns .col {
    flex: 1 1 300px;
}

.contact-columns h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.contact-columns p {
    margin: 8px 0;
    font-size: 16px;
}

/* SOCIAL ICONS */
.social-icons a {
    font-size: 28px;
    margin-right: 15px;
    text-decoration: none;
    color: #000; /* black icons */
    display: inline-block;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    .map-section iframe {
        height: 280px;
    }
}



/* page title*/
.page-title {
  background-color: #10466d; /* black background */
  color: #fff;            /* white text */
  text-align: center;     /* center the title */
  padding: 60px 20px;     /* vertical padding */
  margin-top: -36px;
}

.page-title h1 {
  margin: 0;
  font-size: 2.5em;       /* adjust size as needed */
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-title h1 {
    font-size: 1.8em;     /* smaller font on mobile */
  }
}

/* whatsapp button */
  .wa-btn {
position: fixed;
left: 20px;
bottom: 20px;
width: 62px;
height: 62px;
border-radius: 50%;
background: #25D366;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 16px rgba(0,0,0,0.25);
cursor: pointer;
animation: pulse 2s infinite ease-in-out;
transition: transform 0.25s ease;
}


.wa-btn:hover { transform: scale(1.12); }


/* Inline SVG stays perfectly centered */
.wa-btn svg {
width: 32px;
height: 32px;
fill: #ffffff;
}


/* Smooth pulse animation */
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.08); }
100% { transform: scale(1); }
}


/* why choose us */
.a2-why-choose { font-family: system-ui,-apple-system,Segoe UI, Roboto, Arial; color:#1d1d1d; }
  .a2-container { max-width:1200px; margin:0 auto; padding:30px 20px; box-sizing:border-box; }

  .a2-header { text-align:center; margin-bottom:24px; }
  .a2-logo { width:64px; height:auto; display:inline-block; margin-bottom:10px; }
  .a2-header h2 { margin:6px 0 6px; font-size:1.6rem; letter-spacing:0.4px; }
  .a2-sub { margin:0; color:#666; font-size:0.95rem; }

  .a2-grid { display:flex; gap:20px; align-items:stretch; justify-content:space-between; }

  .a2-card {
    flex:1 1 0;
    background:#fff;
    border-radius:14px;
    padding:22px;

    /* STRONGER SHADOW ADDED HERE */
    box-shadow:0 10px 30px rgba(0,0,0,0.18);

    transform:translateY(28px);
    opacity:0;
    transition: transform .6s cubic-bezier(.2,.9,.3,1), opacity .6s ease;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .a2-card-icon {
    width:56px; height:56px;
    border-radius:10px;
    background:linear-gradient(180deg,#124e7a,#0f3f61);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:1.25rem;
    box-shadow:0 6px 18px rgba(4,30,50,0.18);
  }

  .a2-card h3 { margin:0; font-size:1.05rem; color:#0f2340; }
  .a2-card p { margin:0; color:#555; line-height:1.5; font-size:0.95rem; }

  .a2-card.in-view { transform:translateY(0); opacity:1; }
  .a2-card.in-view:nth-child(1) { transition-delay:0s; }
  .a2-card.in-view:nth-child(2) { transition-delay:0.12s; }
  .a2-card.in-view:nth-child(3) { transition-delay:0.24s; }

  @media (max-width: 820px) {
    .a2-grid { flex-direction:column; }
    .a2-card { transform:none; opacity:1; }
  }

  /* statistics */

   .stats {
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:20px;
    max-width:1100px;
    margin:auto;
    text-align:center;
    font-family:system-ui, Arial;
  }

  .box {
    flex:1;
    padding:25px 10px;
    border-radius:10px;
    background:linear-gradient(180deg, #124e7a, #0f3f61);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
  }

  .num {
    font-size:2.4rem;
    font-weight:700;
    color:#ffffff;
    margin-bottom:5px;
  }

  .box p {
    margin:0;
    color:#ffffff;
    font-size:1rem;
    font-weight:500;
  }

  @media(max-width:768px){
    .stats {
      flex-direction:column;
      gap:25px;
    }
    .num { font-size:2rem; }
  }

  /*slide 4 images */
/* Container */
.css-auto-slider {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Track that will move */
.css-auto-slider .slides {
  display: flex;
  width: 400%;                /* 4 slides -> 4 * 100% */
  animation: slideAnim 12s linear infinite;
}

/* Each slide = 1/4 of track */
.css-auto-slider .slide {
  width: 25%;
  flex-shrink: 0;
  padding: 18px;             /* card padding */
  box-sizing: border-box;
  background: #fff;
}

/* Image styling */
.css-auto-slider .slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Pause animation when user hovers */
.css-auto-slider:hover .slides {
  animation-play-state: paused;
}

/* Keyframes: move the track left to show each quarter */
@keyframes slideAnim {
  0%   { transform: translateX(0%); }       /* show slide 1 */
  20%  { transform: translateX(0%); }       /* hold slide 1 for 20% of duration */
  25%  { transform: translateX(-25%); }     /* transition to slide 2 */
  45%  { transform: translateX(-25%); }     /* hold slide 2 */
  50%  { transform: translateX(-50%); }     /* slide 3 */
  70%  { transform: translateX(-50%); }     /* hold slide 3 */
  75%  { transform: translateX(-75%); }     /* slide 4 */
  95%  { transform: translateX(-75%); }     /* hold slide 4 */
  100% { transform: translateX(0%); }       /* jump back to start smoothly */
}

/* Responsive: smaller images on mobile */
@media (max-width: 768px) {
  .css-auto-slider .slide img { height: 160px; }
  .css-auto-slider .slide { padding: 10px; }
}

