/* Import a clean, stylish font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; display: flex; flex-direction: column; min-height: 100vh; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 2rem;
  background: rgba(14, 59, 206, 0.205);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
  z-index: 1000;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.2); }

/* Logo */
.logo img { height: 45px; }

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li { position: relative; }
.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: #006644; }

/* Arrow styling */
.arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.dropdown:hover > a .arrow { transform: rotate(90deg); }

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background: rgba(175, 219, 245, 0.932); 
  backdrop-filter: blur(6px);
  list-style: none;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 180px;
}
.dropdown:hover .dropdown-menu { display: flex; }

/* Staggered animation for dropdown items */
.dropdown-menu li {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInUp 0.4s forwards;
}
.dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li a {
  color: #222;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.dropdown-menu li a:hover { color: #006644; }

/* Right controls */
.right-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sign-in-icon {
  color: #222;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.sign-in-icon:hover { color: #006644; }

/* Hamburger */

/* Hamburger with colored bars */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
.hamburger span {
  height: 3px; width: 25px;
  margin: 4px 0;
  transition: 0.4s;
}
.hamburger span:nth-child(1) { background: #ff4d4d; }   /* red */
.hamburger span:nth-child(2) { background: #ffcc00; }   /* yellow */
.hamburger span:nth-child(3) { background: #4caf50; }   /* green */

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Modern login icon container */
.sign-in-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  transition: background 0.3s ease;
  cursor: pointer;
}
.sign-in-container.logged-in {
  background: #4caf50; /* green when logged in */
}
.sign-in-container i {
  color: #222;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.sign-in-container:hover i {
  color: #006644;
}

.hamburger span {
  height: 3px; width: 25px; background: #222;
  margin: 4px 0; transition: 0.4s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .logo img { height: 40px; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.9rem; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    flex-direction: column; align-items: center;
    background: rgb(246, 247, 246); backdrop-filter: blur(10px);
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .nav-links.active { max-height: 600px; }
  .nav-links li { width: 100%; text-align: center; }
  .dropdown-menu {
    position: static; background: none; padding: 0;
    border-radius: 0; min-width: unset;
  }
  .dropdown-menu li { opacity: 1; transform: none; animation: none; }
  .hamburger { display: flex; }
  .sign-in-icon { font-size: 1rem; }
}

@media (max-width: 600px) {
  .logo img { height: 35px; }
  .nav-links a { font-size: 0.85rem; }
  .sign-in-icon { font-size: 0.9rem; }
}


   /* =========================
   HERO BASE
========================= */
.hero {
  position: relative;
  height: 80vh;
  width: 100%;
  background: url('images/wallpaper.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(34, 47, 230, 0.2);
  backdrop-filter: blur(1.2px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80vw;
  padding: 0 2vw;
}

.hero-content h1 {
  font-size: 7vh;
  font-weight: 700;
  margin-bottom: 2vh;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero-content h2 {
  font-size: 5vh;
  font-weight: 700;
  margin-bottom: 2vh;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 2.5vh;
  margin-bottom: 4vh;
  color: #f0f0f0;
}

.datetime-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
  min-width: 160px;
}

#current-time {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0077b6;
  margin: 0;
}

#current-date {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

/* Buttons */
.cta-btn {
  background: linear-gradient(135deg, #0077cc, #00cc88);
  color: #fff;
  font-weight: 600;
  padding: 1.5vh 3vw;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  margin: 0 1vw;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-decoration: none;   /* prevents underline */
  outline: none;           /* removes focus outline */
}


/* Optional: customize focus state instead of removing */
.cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 204, 136, 0.4); /* subtle glow */
}

/* Secondary button refinement */
.cta-btn.secondary {
  border: 1px solid rgba(255,255,255,0.6); /* softer border */
}


.cta-btn:hover {
  background: linear-gradient(135deg, #00cc88, #0077cc);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.cta-btn.secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid #fff;
  
}

.cta-btn.secondary:hover {
  background: rgba(255,255,255,0.3);
  border-color: #fff; /* consistent hover */
}

/* =========================
   RESPONSIVE MEDIA QUERIES
========================= */

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .hero-content h1 { font-size: 8vh; }
  .hero-content h2 { font-size: 6vh; }
  .hero-content p { font-size: 3vh; }
  .cta-btn { font-size: 1.1rem; padding: 1.5vh 2.5vw; }
}

/* Tablets (769px–1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .hero-content h1 { font-size: 6vh; }
  .hero-content h2 { font-size: 4.5vh; }
  .hero-content p { font-size: 2.2vh; }
  .cta-btn { font-size: 1rem; padding: 1.2vh 2.5vw; }
  .hero-content { max-width: 90vw; }
}
/* =========================
   Mobile & Small Tablet (≤768px)
========================= */
@media (max-width: 768px) {
  .hero {
    height: auto;              /* allow content to expand naturally */
    padding: 10vh 5vw;         /* breathing room around content */
    flex-direction: column;    /* stack content vertically */
    justify-content: flex-start;
    text-align: center;
  }

  .hero-content {
    max-width: 95vw;           /* prevent overflow */
    padding: 0;
  }

  .hero-content h1 {
    font-size: 4.2vh;          /* smaller heading */
    line-height: 1.2;          /* tighter line spacing */
    word-wrap: break-word;     /* prevent text overflow */
  }

  .hero-content h2 {
    font-size: 3.2vh;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 2vh;
    margin-bottom: 3vh;
  }

  /* Buttons stack vertically */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
    align-items: center;
  }

  .cta-btn {
    width: 85vw;               /* full-width buttons */
    margin: 0;
    font-size: 1rem;
    padding: 1.2vh 0;
    text-decoration: none;   /* prevents underline */
  outline: none; 
  }

  /* Datetime card moves below hero content */
  .datetime-card {
    position: static;          /* no overlap */
    margin-top: 4vh;
    width: 85vw;
    font-size: 0.9rem;
  }

  #current-time {
    font-size: 1rem;
  }

  #current-date {
    font-size: 0.8rem;
  }
}


/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 3.8vh; }
  .hero-content h2 { font-size: 3vh; }
  .hero-content p { font-size: 1.8vh; }
  .cta-btn {
    font-size: 0.95rem;
    padding: 1.2vh 5vw;
    width: 90vw;
  }
  .datetime-card {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
  /* Remove underline from button links */
.cta-btn {
  text-decoration: none;   /* prevents underline */
  outline: none;           /* removes focus outline */
}

/* Optional: customize focus state instead of removing */
.cta-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 204, 136, 0.4); /* subtle glow */
}

/* Secondary button refinement */
.cta-btn.secondary {
  border: 1px solid rgba(255,255,255,0.6); /* softer border */
}
.cta-btn.secondary:hover {
  border-color: #fff; /* consistent hover */
}

}


       /* Quick actions */



/* Quick Actions Section */
.quick-actions {
  background: #f9f9f9;
  padding: 8vh 5vw;
  text-align: center;
}

.quick-actions h2 {
  font-size: 4vh;
  font-weight: 700;
  margin-bottom: 2vh;
  color: #222;
  position: relative;
}

.quick-actions h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00cc88;
  margin: 1vh auto 0;
  border-radius: 2px;
}

.quick-actions p {
  font-size: 2.2vh;
  color: #555;
  margin-bottom: 5vh;
}

/* Buttons container */
.qa-buttons {
  display: flex;
  justify-content: center;
  gap: 2vw;
  flex-wrap: wrap;
}

/* CTA Buttons */
.qa-btn {
  position: relative;
  overflow: hidden;
  padding: 1.5vh 3vw;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Button color themes */
.qa-btn.blue { background: #0077cc; }
.qa-btn.green { background: #00cc88; }
.qa-btn.orange { background: #ff6600; }
.qa-btn.purple { background: #9933cc; }

/* Animated text inside button */
.qa-btn span {
  display: inline-block;
  position: relative;
  animation: pulseText 2s infinite;
}

@keyframes pulseText {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Hover slide-in background effect */
.qa-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.4s ease;
}

.qa-btn:hover::before {
  left: 0;
}

.qa-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
      

/* service overview section */

:root {
  --clr-blue: #0077cc;
  --clr-green: #00cc88;
  --clr-purple: #9933cc;
  --clr-orange: #ff6600;
  --clr-text-dark: #d32a2a;
  --clr-text-med: #050000;
  --shadow-soft: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-card: 0 6px 20px rgba(0,0,0,0.1);
}

/* Card themes */
.card-blue {
  background: var(--clr-text-dark);
  color: #fff;
}
.card-blue h3 { color: #fff; }
.card-blue .cta-btn { background: var(--clr-orange); }

.card-gray {
  background: #e0e0e0;
  color: var(--clr-text-dark);
}
.card-gray h3 { color: var(--clr-text-dark); }
.card-gray .cta-btn { background: var(--clr-green); }

.card-green {
  background: var(--clr-green);
  color: #fff;
}
.card-green h3 { color: #fff; }
.card-green .cta-btn { background: var(--clr-purple); }

/* Section container */
.services-overview {
  background: #e2faf3;
  padding: 8vh 0;
  text-align: center;
}

/* Header */
.overview-header h2 {
  font-size: 4.5vh;
  font-weight: 700;
  margin-bottom: 1vh;
  color: var(--clr-text-dark);
  position: relative;
}
.overview-header h2::after {
  content: "";
  display: block;
  width: 72px; height: 4px;
  background: var(--clr-green);
  margin: 1.2vh auto 0;
  border-radius: 2px;
}
.overview-header p {
  font-size: 2.2vh;
  color: var(--clr-text-med);
  margin-bottom: 6vh;
}

/* Cards layout */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 2vw;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual card */
.service-card {
  border-radius: 20px;
  padding: 3vh 2vw;
  flex: 1 1 calc(33.33% - 2vw);
  max-width: calc(33.33% - 2vw);
  min-width: 250px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-1vh);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Circular image */
.card-image {
  width: clamp(80px, 15vw, 170px);
  height: clamp(80px, 15vw, 170px);
  margin: 0 auto 2vh;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid rgba(0,0,0,0.06);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card title */
.service-card h3 {
  font-size: clamp(1.5rem, 2vw, 2.6vh);
  margin-bottom: 2vh;
  color: var(--clr-blue);
  flex-shrink: 0;
  text-align: center;
}

/* Service list */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 3vh 0;
}
.service-card ul li {
  font-size: clamp(1rem, 1.5vw, 2vh);
  color: #333;
  margin-bottom: 1.2vh;
  position: relative;
  padding-left: 22px;
}


/* CTA Buttons */
.cta-btn {
  position: relative;
  overflow: hidden;
  padding: clamp(0.75vh, 1vw, 1.5vh) clamp(1vw, 2vw, 3vw);
  border: none;
  border-radius: 30px;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-soft);
  outline: none;
  margin-top: auto; /* ensures button stays inside card */
  align-self: center;
}

/* Button themes */
.cta-btn.blue   { background: var(--clr-blue); }
.cta-btn.green  { background: var(--clr-green); }
.cta-btn.purple { background: var(--clr-purple); }
.cta-btn.orange { background: var(--clr-orange); }

/* Animated text pulse */
.cta-btn span {
  display: inline-block;
  position: relative;
  animation: pulseText 2s infinite;
}
@keyframes pulseText {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.85; }
}

/* Hover slide-in backcolor */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -110%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.22);
  transition: left 0.45s ease;
}
.cta-btn:hover::before { left: 0; }
.cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.cta-btn:active { transform: scale(0.97); }

/* ------------------------------
   Responsive Adjustments
------------------------------ */

/* Large desktops */
@media (min-width: 1440px) {
  .overview-header h2 { font-size: 5vh; }
  .overview-header p { font-size: 2.5vh; }
  .service-cards { gap: 3vw; max-width: 1400px; }
  .service-card { padding: 4vh 2.5vw; }
  .cta-btn { font-size: 1.1rem; padding: 1vh 2.5vw; }
}

/* Tablets */
@media (max-width: 768px) {
  .service-cards {
    flex-wrap: wrap;
    gap: 4vw;
  }
  .service-card {
    flex: 1 1 calc(50% - 4vw);
    max-width: calc(50% - 4vw);
    min-width: 220px;
    padding: 2.5vh 2vw;
  }
  .overview-header h2 { font-size: 3.5vh; }
  .overview-header p { font-size: 2vh; }
  .cta-btn { font-size: 0.9rem; padding: 0.8vh 2vw; }
  .card-image { width: clamp(70px, 20vw, 150px); height: clamp(70px, 20vw, 150px); }
}

/* Small mobile screens */
@media (max-width: 600px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 5vh;
  }
  .service-card {
    flex: 1 1 100%;
    max-width: 90%;
    padding: 2vh 5vw;
  }
  .overview-header h2 { font-size: 3vh; }
  .overview-header p { font-size: 1.8vh; margin-bottom: 4vh; }
  .service-card h3 { font-size: 1.2rem; }
  .service-card ul li { font-size: 0.95rem; }
  .cta-btn { font-size: 0.85rem; padding: 0.7vh 1.5vw; }
  .card-image { width: 100px; height: 100px; }
}


@media (max-width: 480px) {
  /* Section paddings */
  .hero,
  .about,
  .quick-actions,
  .faq,
  .newsletter,
  .contact-section,
  .footer-alt,
  .partners-section,
  .ceo-spotlight {
    padding: 3vh 3vw;
  }

  /* Hero Content scaling */
  .hero-content h1,
  .hero-content h2,
  .overview-header h2,
  .about-text h2 {
    font-size: clamp(2rem, 6vw, 3.6vh);
    margin-bottom: 1rem;
  }
  
  .ceo-info h2 {
    font-size: clamp(1.4rem, 5vw, 2vh); /* further reduced max size */
    margin-bottom: 1rem;
  }

  .faq h2 {
    font-size: clamp(1.4rem, 5vw, 2vh); /* further reduced max size */
    margin-bottom: 1rem;
  }

  .hero-content p,
  .overview-header p,
  .about-text p,
  .ceo-info blockquote,
  .faq-answer p,
  .partners-header p {
    font-size: clamp(1rem, 4vw, 2vh);
    margin-bottom: 1rem;
  }

  
  /* Buttons scaling */
  .cta-btn,
  .qa-btn,
  .sign-in-btn,
  .contact-form button {
    font-size: clamp(0.8rem, 4vw, 1rem);
    padding: clamp(0.75rem, 3vw, 1.5rem) clamp(1.5rem, 5vw, 3rem);
    width: 90vw;
    max-width: 400px;
    margin: 0.5rem auto;
    display: block;
  }

  /* Inputs scaling */
  .newsletter-form input[type="email"],
  .contact-form input,
  .contact-form textarea {
    width: 90vw;
    max-width: 400px;
    font-size: clamp(0.9rem, 4vw, 1rem);
    padding: clamp(0.5rem, 3vw, 1rem);
    margin-bottom: 1rem;
    border-radius: 15px;
  }

  /* Icons scaling */
  .contact-card i,
  .footer-social a {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.5rem;
  }

  /* Images scaling */
  .card-image,
  .about-image img {
    width: clamp(120px, 38vw, 210px); /* further increased min and max */
    height: auto;
    margin: 1rem auto;
    display: block;
    border-radius: 50%;
  }


  .partners-logos img {
    max-width: 90px;
    height: auto;
  }

  /* Service Cards section */
  .services-overview {
    padding: 7vh 6vw;
  }

  .overview-header h2 {
    font-size: clamp(1.8rem, 5vw, 3.6vh);
  }

  .overview-header p {
    font-size: clamp(1rem, 4vw, 2vh);
    margin-bottom: 2rem;
  }

  .service-cards {
    gap: 4vh;
    flex-wrap: wrap;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    padding: 3.5vh 6vw;
    box-sizing: border-box;
    min-width: auto;
  }

  .card-image {
    width: 100px;
    height: 100px;
  }

  .service-card h3 {
    font-size: clamp(1.3rem, 5vw, 2.4vh);
  }

  .service-card ul li {
    font-size: clamp(1rem, 4vw, 1.9vh);
  }

  /* About section container */
  .about-container,
  .ceo-container {
    flex-direction: column;
    gap: 2vh;
  }

  .about-text,
  .ceo-info {
    min-width: auto;
    width: 100%;
  }

  /* Quick actions buttons */
  .qa-btn {
    width: 90vw;
    max-width: 400px;
    font-size: clamp(0.8rem, 4vw, 1rem);
    padding: clamp(0.75rem, 3vw, 1.5rem) clamp(1.5rem, 5vw, 3rem);
    margin: 0.5rem auto;
  }

  /* FAQ section */
  .faq-question {
    font-size: clamp(1rem, 4vw, 2.2vh);
    padding: clamp(0.5rem, 2vw, 1rem) 0;
  }

  .faq-question::after {
    font-size: clamp(1.5rem, 6vw, 2.5vh);
  }

  .faq-answer {
    font-size: clamp(0.9rem, 3vw, 2vh);
    padding-left: 1vw;
  }

  /* Newsletter inputs */
  .newsletter-form input[type="email"] {
    width: 90vw;
    max-width: 400px;
    font-size: clamp(0.9rem, 4vw, 1rem);
    padding: clamp(0.5rem, 3vw, 1rem);
    margin: 1rem auto;
    display: block;
    border-radius: 15px;
  }


  /* Footer partners logos */
  .partners-logos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1.5rem;
  }

  .partners-logos img {
    max-width: 70px;
    height: auto;
  }

  /* Footer bottom */
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-nav ul li a {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .footer-social a {
    font-size: clamp(1rem, 5vw, 1.2rem);
    margin-right: 0.75rem;
  }

  /* Override any fixed widths */
  * {
    max-width: 100% !important;
    box-sizing: border-box;
  }
}


/* about section */


.about {
  background: #f5f7fa; /* light background */
  padding: 8vh 5vw;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4vw;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 4vh;
  font-weight: 700;
  color: var(--clr-blue);
  margin-bottom: 2vh;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--clr-green);
  margin-top: 1vh;
  border-radius: 2px;
}

.about-text p {
  font-size: 2.2vh;
  color: var(--clr-text-med);
  margin-bottom: 3vh;
  line-height: 1.6;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 3vh;
}
.about-text ul li {
  font-size: 2vh;
  color: #000;
  margin-bottom: 1vh;
  position: relative;
  padding-left: 22px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

/* Reuse your CTA button styles */
.cta-btn {
  position: relative;
  overflow: hidden;
  padding: 1.5vh 3vw;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.cta-btn.blue { background: var(--clr-blue); }

.cta-btn span {
  display: inline-block;
  position: relative;
  animation: pulseText 2s infinite;
}

@keyframes pulseText {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.4s ease;
}
.cta-btn:hover::before { left: 0; }
.cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.staff-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.staff-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.staff-header p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.staff-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.staff-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px);
}

.staff-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.staff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.staff-card p {
  font-size: 0.95rem;
  color: #777;
}



/* FAQs section */

.faq {
  background: #f5f7fa;
  padding: 8vh 5vw;
  text-align: center;
}

.faq h2 {
  font-size: 4vh;
  color: var(--clr-blue);
  margin-bottom: 4vh;
}

.faq-container {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 2vh;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  font-size: 2.2vh;
  font-weight: 600;
  color: #000080;
  width: 100%;
  text-align: left;
  padding: 2vh 0;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 2.5vh;
  color: var(--clr-green);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 2vh;
  color: var(--clr-text-med);
  padding-left: 1vw;
}

.faq-answer p {
  margin: 0;
  padding: 1vh 0;
}


/* newsletter section */

/* =========================
   Newsletter Base
========================= */
.newsletter {
  background: url("images/news2.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 10vh 5vw;
  text-align: center;
  position: relative;
  color: #fff;
  width: 100%;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.newsletter-container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  max-width: 900px; /* keeps content centered */
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2vh;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 1.2vh 1vw;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem); /* fluid font size */
  outline: none;
  transition: border 0.3s ease;
  background: #fff;
  color: var(--clr-text-dark);
}

.newsletter-form button {
  background: linear-gradient(135deg, #0077cc, #00cc88);
  color: #fff;
  font-weight: 600;
  padding: clamp(0.8rem, 1.5vh, 1rem) clamp(1.2rem, 2vw, 2rem);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #00cc88, #0077cc);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Success/Error messages */
.newsletter-success,
.newsletter-error {
  margin-top: 2vh;
  padding: 1.5vh 2vw;
  border-radius: 8px;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  box-shadow: var(--shadow-soft);
  animation: fadeIn 0.6s ease forwards;
}

/* =========================
   Responsive Media Queries
========================= */

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .newsletter-form input[type="email"] { min-width: 350px; }
  .newsletter-form button { font-size: 1.2rem; }
}

/* Tablets (769px–1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .newsletter-form input[type="email"] { min-width: 300px; }
  .newsletter-form button { font-size: 1.05rem; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .newsletter {
    padding: 8vh 5vw;
  }

  .newsletter-form {
    flex-direction: column;   /* stack input + button vertically */
    align-items: center;
    gap: 1.5vh;               /* spacing between input and button */
    width: 100%;
  }

  .newsletter-form input[type="email"] {
    width: 90%;               /* full width but inside screen */
    min-width: unset;         /* remove fixed min-width */
    font-size: 1rem;
    padding: 0.9rem 1rem;     /* balanced padding */
  }

  .newsletter-form button {
    width: 90%;               /* same width as input */
    font-size: 1rem;          /* scale down text */
    padding: 0.9rem;          /* smaller padding for sleek look */
    border-radius: 25px;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .newsletter {
    padding: 6vh 4vw;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 95%;               /* tighter fit */
    font-size: 0.95rem;
    padding: 0.8rem;          /* compact padding */
  }
}

/* =========================
   Contact Section Base
========================= */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.contact-header .underline-text {
  font-size: 1rem;
  color: #555;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-header .underline-text::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: #00cc88;
  left: 20%;
  bottom: 0;
}

/* Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Info Section */
.info-section {
  flex: 1;
  min-width: 280px;
  background: #0077b6;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.info-section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info h4 {
  font-size: 1.1rem;
  margin: 15px 0 5px;
  color: #e6f2ff;
}

.contact-info p {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #f0f0f0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #00cc88;
  transform: scale(1.2);
}

/* Form Section */
.form-section {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #0077b6;
}

.form-section input,
.form-section textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-section button {
  width: 100%;
  padding: 14px;
  background: #00cc88;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.form-section button:hover {
  background: #00996b;
  transform: scale(1.02);
}

/* =========================
   Responsive Media Queries
========================= */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
  }
  .info-section, .form-section {
    min-width: 100%;
  }
  .contact-header h2 { font-size: 2.2rem; }
  .contact-header .underline-text { font-size: 0.95rem; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .contact-header h2 { font-size: 1.8rem; }
  .contact-header .underline-text { font-size: 0.9rem; }
  .info-section h3, .form-section h3 { font-size: 1.4rem; }
  .form-section input, .form-section textarea { font-size: 0.95rem; }
  .form-section button { font-size: 0.95rem; padding: 12px; }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .contact-header h2 { font-size: 1.6rem; }
  .contact-header .underline-text { font-size: 0.85rem; }
  .info-section h3, .form-section h3 { font-size: 1.2rem; }
  .form-section input, .form-section textarea { font-size: 0.9rem; padding: 10px; }
  .form-section button { font-size: 0.9rem; padding: 10px; }
}

/* footer section */

.footer-alt {
  background: linear-gradient(135deg, #022e52, #25D366, #130805);
  color: #fff;
  padding: 40px 20px;
  margin-top: auto;
}

.hero, .services-overview, .about, .faq, .newsletter, .contact-section, .partners-section, .ceo-spotlight, .footer-alt, .footer-top, .footer-bottom {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.footer-nav ul li a:hover {
  opacity: 0.7;
}

.footer-social a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-partners {
  text-align: center;
  margin-bottom: 20px;
}

.footer-partners h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partners-logos img {
  height: 40px;
  transition: transform 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
}

/* partners section */

/* =========================
   Partners Section Base
========================= */
.partners-section {
  padding: 60px 20px;
  text-align: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  margin-top: 40px;
}

.partners-header h2 {
  font-size: 2rem;
  color: #0078D7;
  margin-bottom: 10px;
}

.partners-header p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  justify-items: center;
}

.partners-logos img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* =========================
   Responsive Media Queries
========================= */

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .partners-header h2 { font-size: 2.5rem; }
  .partners-header p { font-size: 1.2rem; }
  .partners-logos img { max-width: 160px; } /* bigger logos */
}

/* Tablets (769px–1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
  .partners-header h2 { font-size: 2.2rem; }
  .partners-header p { font-size: 1.1rem; }
  .partners-logos {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }
  .partners-logos img { max-width: 130px; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .partners-header h2 { font-size: 1.8rem; }
  .partners-header p { font-size: 1rem; }
  .partners-logos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }
  .partners-logos img { max-width: 100px; } /* scale down */
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .partners-header h2 { font-size: 1.5rem; }
  .partners-header p { font-size: 0.9rem; }
  .partners-logos {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 12px;
  }
  .partners-logos img { max-width: 80px; } /* smallest logos */
}
/ *   F a d e - i n   a n i m a t i o n   * / 
 . f a d e - i n   { 
     o p a c i t y :   1   ! i m p o r t a n t ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 0 )   ! i m p o r t a n t ; 
 } 
 
 . f a d e - i n - s e c t i o n   { 
     o p a c i t y :   0 ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ; 
     t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e - o u t ,   t r a n s f o r m   0 . 6 s   e a s e - o u t ; 
 }  
 