* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* NAVBAR */
.navbar {
  background: white;
  padding:6px 20px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: bold;
}

.logo img {
  margin: 10%;
  padding: 10%;
  width: 80px;
}

nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.btn-nav {
  background: #ecc847;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ================= MOBILE NAV FIX ================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  /* hide desktop menu */
  nav {
    display: none !important;   /* 🔥 THIS IS THE KEY */
    position: absolute;
    top: 70px;
    right: 15px;
    width: 240px;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    flex-direction: column;
    z-index: 9999;
  }

  /* show when active */
  nav.active {
    display: flex !important;
  }

  nav a {
    margin: 12px 0;
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
  }
}


/* HERO */
.hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #4ca28b, #0b322e);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  color: #f6f7f7;
}

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 100px;
}

.hero-buttons a {
  margin: 0 10px;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
 
  background: #e6bf26;
  color: #000;
}

.btn-secondary {
  background-color: white;
  border: 2px solid #000;
  color: #0f3924;
}


/* LOGO SCROLL SECTION */
.logo-scroll-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.logo-title {
  color: #0f4846;
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
}

/* Slider */
.logo-slider {
  width: 100%;
  overflow: hidden;
}

/* Track */
.logo-track {
  display: flex;
  width: max-content;              /* 🔥 KEY FIX */
  animation: scroll 30s linear infinite;
}

/* Logos */
.logo-track img {
  width: 100px;                    /* kutty logos */
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

/* Hover */
.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Pause on hover */
.logo-slider:hover .logo-track {
  animation-play-state:running;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* CONTENT */
.content-section {
  background: #021f24;
  padding: 80px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.card {
  background: #058964;
  padding: 30px;
  border-radius: 18px;
  color: #fff;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: #4ade80;
  margin-bottom: 10px;
}

/* SERVICES SECTION */
.services {
  background: #042a34;
  padding: 90px 60px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #24484f;
  padding: 35px;
  border-radius: 20px;
  color: #f6f9f9;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card .icon {
  font-size: 32px;
  color: #4ade80;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #eff2f0;
}

/* WHY DETAILS SECTION */
.why-details {
  background: #173c39;
  padding: 90px 60px;
}

.why-details h1{
  text-align: center;
  height: 90px;
  font-size: 250%;
  color: #fff;
}



.why-details-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: #2d7072;
  padding: 35px;
  border-radius: 18px;
  color: #ffffff;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ffffff;
}

.why-card p {
  color: #c7eae6;
  line-height: 1.6;
}

/* WHO WE ARE DETAILS */
.who-details {
  background:#11886c9a;
  padding: 100px 60px;
}

.who-details h1{
  text-align: center;
  height: 90px;
  font-size: 250%;
  color: #0a5136;
}


.who-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.who-left h2 {
  color: #0f4d2d;
  font-size: 32px;
  margin-bottom: 25px;
}

.who-left p {
  color: #1b6a3a;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 16px;
}

/* RIGHT QUOTE CARD */
.who-quote {
  background: #018257;
  padding: 35px;
  border-radius: 16px;
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: 0.3s ease;
}

.who-quote:hover {
  transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .who-container {
    grid-template-columns: 1fr;
  }
}

/* OUR LEADERSHIP SECTION */
.leadership {
  background: #235144;
  padding: 100px 60px;
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 60px;
}

/* GRID */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.leader-card {
  background: #1e6d81;
  padding: 40px;
  border-radius: 18px;
  text-align: left;
  transition: 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.45);
}

.leader-card h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 6px;
}

.leader-card .role {
  display: inline-block;
  color: #f0f1f0;
  font-size: 14px;
  margin-bottom: 20px;
}

/* LIST */
.leader-card ul {
  list-style: none;
  padding: 0;
}

.leader-card ul li {
  color: #cfe7e5;
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.leader-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #eff4f1;
}

/* BOTTOM NOTE */
.leadership-note {
  margin-top: 50px;
  color: #bfe3df;
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA SECTION */
.cta-section {
  background: #0d8a75e1;
  text-align: center;
  padding: 90px 30px;
  color: #052e34;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid #052e34;
  border-radius: 30px;
  color: #022225;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #eef1f1;
  color: #03272d;
}


/* FOOTER */

.site-footer {
  background: #0f3743;
  color: #cfe1e8;
  padding: 70px 10% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #f5f8f6;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cfe1e8;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-founder {
  margin-top: 15px;
  font-weight: 600;
  color: #fafdfb;
}

.footer-contact a {
  color: #ffffff;        /* white text */
  text-decoration: none;
}

.footer-contact a:visited {
  color: #ffffff;        /* visited link purple varama */
}

.footer-contact a:hover {
  color: #7fd1b9;        /* hover effect (optional) */
  text-decoration: underline;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1f525f;
  font-size: 13px;
  color: #9fb6bf;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul {
    align-items: center;
  }
}

/* ===================== MOBILE RESPONSIVE FIX ===================== */
@media (max-width: 576px) {

  /* GENERAL */
 body {
    overflow-x: hidden;
  }

  /* NAVBAR */
  .nav-container {
    flex-direction:column;
    text-align: center;
  }

  .logo img {
    width: 60px;
    margin: 0;
    padding: 20%;
  }

  nav a {
    margin:3px 0;
    display:inline-table;
    line-height: 0%;
    font-size: 80%;
  }

  .btn-nav{
    padding: 8px;
    line-height: 110%; 
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* NAVBAR */
  .nav-container {
    gap: 20px;
  }

  .logo img {
    width: 60px;
    margin: 0;
    padding: 0;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 70px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .hero-buttons a {
    display: block;
    margin: 10px 0;
  }

  /* LOGO SCROLL */
  .logo-title {
    font-size: 24px;
  }

  .logo-track img {
    width: 80px;
    margin: 0 20px;
  }

  /* CONTENT CARDS */
  .content-section {
    padding: 50px 20px;
    gap: 25px;
  }

  .card {
    padding: 22px;
  }

  /* SERVICES */
  .services {
    padding: 60px 20px;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  /* WHY DETAILS */
  .why-details {
    padding: 60px 20px;
  }

  .why-details h1 {
    font-size: 26px;
    height: auto;
    margin-bottom: 30px;
  }

  /* WHO WE ARE */
  .who-details {
    padding: 70px 20px;
  }

  .who-details h1 {
    font-size: 26px;
    height: auto;
    margin-bottom: 30px;
  }

  .who-left h2 {
    font-size: 24px;
  }

  .who-left p {
    font-size: 15px;
  }

  /* LEADERSHIP */
  .leadership {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .leader-card {
    padding: 28px;
  }

  /* CTA */
  .cta-section {
    padding: 70px 20px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 16px;
  }

  /* FOOTER */
  .site-footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    gap: 30px;
  }

  .footer-brand h3 {
    font-size: 20px;
  }

}






