/* ================================
   Root Variables
================================ */
:root {
  --bg-gradient: linear-gradient(135deg, #0a74da, #2ea8ff, #6dd5ed);
  --btn-green: #00c853;
  --btn-green-hover: #009c44;
  --text-dark: #1a1a1a;
  --nav-bg: rgba(15, 74, 88, 0.9);
  --nav-bg-solid: rgb(15, 74, 88);
}

/* ================================
   Reset & Body
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: var(--bg-gradient);
  min-height: 100vh;
  line-height: 1.6;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: var(--nav-bg);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--nav-bg-solid);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  overflow: hidden; /* ensures image stays inside rounded box */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportionate */
}


.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .title {
  font-size: 18px;
  font-weight: 700;
}

.logo-text .subtitle {
  font-size: 13px;
  color: #a7c4de;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #e6e6e6;
  transition: color 0.3s ease;
  padding: 6px 0;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #64a2d5;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  background: #0f4a58;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeIn 0.2s ease;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #d8d8d8;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #64a2d5;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Request Button */
.start span {
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(to right, #64a2d5, #3b45d7);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ================================
   MOBILE STYLES
================================ */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    background: var(--nav-bg-solid);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-content a {
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-content {
    display: none; /* disable hover effect on mobile */
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #02132b, #062b55); /* deep water look */
}

/* Bubble animation */
.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.bubbles span {
  position: absolute;
  bottom: -150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rise 20s infinite ease-in;
}

.bubbles span:nth-child(1) {
  width: 80px; height: 80px; left: 10%; animation-duration: 18s;
}
.bubbles span:nth-child(2) {
  width: 40px; height: 40px; left: 25%; animation-duration: 22s;
}
.bubbles span:nth-child(3) {
  width: 60px; height: 60px; left: 40%; animation-duration: 26s;
}
.bubbles span:nth-child(4) {
  width: 25px; height: 25px; left: 55%; animation-duration: 20s;
}
.bubbles span:nth-child(5) {
  width: 90px; height: 90px; left: 70%; animation-duration: 24s;
}
.bubbles span:nth-child(6) {
  width: 20px; height: 20px; left: 80%; animation-duration: 19s;
}
.bubbles span:nth-child(7) {
  width: 55px; height: 55px; left: 35%; animation-duration: 21s;
}
.bubbles span:nth-child(8) {
  width: 35px; height: 35px; left: 60%; animation-duration: 23s;
}
.bubbles span:nth-child(9) {
  width: 50px; height: 50px; left: 85%; animation-duration: 25s;
}
.bubbles span:nth-child(10) {
  width: 30px; height: 30px; left: 15%; animation-duration: 27s;
}

@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0.4; }
  50%  { opacity: 0.8; }
  100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.dev {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  line-height: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Buttons */
.buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn.primary {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.4);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #00c6ff;
  color: #00c6ff;
}

.btn.secondary:hover {
  background: #00c6ff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
}

.button-container {
  display: flex;
  justify-content: center;
}

.buttons {
  gap: 30px;
  display: flex;
}

.buttons button {
  color: blue;
  text-transform: uppercase;
  background: linear-gradient(to right, rgb(130, 144, 164), rgb(122, 164, 156),rgb(162, 138, 201));
  padding: 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  cursor: pointer;

  /* smooth transition */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buttons button:hover {
  transform: scale(1.1); /* makes it pop up */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* adds depth */
}

.ourstory-container {
  background: linear-gradient(to right,  #091929,#091929);
  display: flex;
  justify-content: space-between;
}


.story {
  display: flex;
  gap: 90px;
  margin-left: 20px;
}

.story-head {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(226, 226, 232, 0.92);
}

.story-p {
  font-size: 1.2rem;
  color: #e3e3e3;
  text-transform: capitalize;
}

 .features-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-left: 20px;
        }

        .feature-item {
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            width: 200px;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
        }

        .feature-item:hover {
            transform: scale(1.05);
        }

        .icon-container {
            background-color: #7b7d8a36;
            color: #11b1a9;
            border-radius: 6px;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 10px;
            height: 10px;
        }

        .feature-item h3 {
            margin-top: 0;
            color: #000000;
            font-size: 1.2em;
        }

        .feature-item p {
            color: #ffffff;
            font-size: 0.9em;
            margin-bottom: 0;
        }

       .img-container img {
    width: 550px;
    height: 450px;
    border-radius: 20px;
    margin-top: 150px; /* pushes the image down */
}


        .numbers-container {
          display: flex;
          justify-content: space-between;
          border-radius: 20px;
        }

      

        .numbers {
          display: flex;
          gap: 50px;
          margin-left: 30px;
        }

        .number {
          text-transform: capitalize;
        }

        .number h3 {
          color: blue;
          font-size: 1.4rem;
        }

        .number p {
          color: #ffffff;
          font-size: 1rem;
        }

        .products-container {
          background: linear-gradient(#fefeff6f);
        }

        .products-container h3{
          text-align: center;
          color: rgb(6, 6, 39);
          font-size: 2.5rem;
          text-transform: capitalize;
          margin-bottom: 10px;
        }

        .products-container p{
          color: #041128;
          text-align: center;
          word-spacing: 5px;
          font-size: 1.1rem;
          text-transform: capitalize;
        }

/* ============================ SERVICES SECTION ============================ */
.services {
  position: relative;
  padding: 80px 20px;
  border-radius: 20px;
  overflow: hidden;
}

/* Video background */
.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.services .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* Grid container */
.services-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service cards */
.service-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #38bdf8;
  box-shadow: 0 15px 45px rgba(56, 189, 248, 0.25);
}

/* Top area */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

/* Icon */
.icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.icon svg {
  width: 28px;
  height: 28px;
}

/* Badge */
.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: #0369a1;
  border: 1px solid #7dd3fc;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
}

/* Texts */
.service-card h3 {
  font-size: 1.5rem;
  margin: 14px 0;
  font-weight: 700;
  color: #0f172a;
}

.service-card p {
  color: #334155;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card ul {
  margin: 0 0 20px 18px;
  color: #475569;
}

.service-card ul li {
  margin: 6px 0;
  font-size: 0.95rem;
}

/* Learn more */
.learn-more {
  display: inline-block;
  font-weight: 600;
  color: #0284c7;
  text-decoration: none;
  border: 1px solid #7dd3fc;
  padding: 9px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  border-color: transparent;
  transform: translateX(4px);
}

/* Ending */
.ending {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 50px;
}

.ending p {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 18px;
}

.end button {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.end button:hover {
  transform: scale(1.07);
  background: linear-gradient(135deg, #0369a1, #0284c7);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.45);
}

/* Why Choose Hydrosill */
.why-choose {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to left, rgba(153, 153, 181, 0.623),rgb(249, 247, 247),rgb(130, 130, 198));
}

.why-coose {
  text-align: center;
  padding: 80px 20px;
  color: #f9fafb;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  position: relative;
  overflow: hidden;
}

.why-coose h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #1f1435; /* accent green */
}

.why-coose h2 span {
  color: #06928b; /* make Hydrosill stand out */
}

.why-coose p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #3b3d3f; /* soft, readable text */
  font-weight: 500;
}

.why-coose::before,
.why-coose::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  background: rgba(0, 200, 83, 0.1);
}

.why-coose::before {
  top: -50px;
  left: -50px;
}

.why-coose::after {
  bottom: -50px;
  right: -50px;
}


.carousel-section {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.carousel {
  width: 300px;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 20s infinite linear;
}

.card {
  position: absolute;
  width: 280px;
  height: 350px;
  background: linear-gradient(to bottom, rgba(11, 90, 118, 0.6), #e8f0ff);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: #1a2b49;
  text-align: center;
  backface-visibility: hidden;
}

/* Positioning cards in 3D circle */
.card:nth-child(1) { transform: rotateY(0deg) translateZ(420px); }
.card:nth-child(2) { transform: rotateY(90deg) translateZ(420px); }
.card:nth-child(3) { transform: rotateY(180deg) translateZ(420px); }
.card:nth-child(4) { transform: rotateY(270deg) translateZ(420px); }

.card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #0056b3;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card .highlight {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
  color: #0056b3;
  background: #e8f0ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Rotation animation */
@keyframes rotate {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(-360deg); }
}


.experience-container {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f1f5f9;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  max-width: 900px;
  margin: 4rem auto;
}

.experience h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #00c853; /* accent */
  text-transform: capitalize;
}

.experience p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #cbd5e1;
}

.experience-butt {
  margin-top: 1.5rem;
}

.butt {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.butt button {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.button-1 {
  background: #287696;
  color: #fff;
  box-shadow: 0 4px 12px rgba(7, 24, 54, 0.495);
}

.button-1:hover {
  background: #211841;
  transform: translateY(-3px);
}

.button-2 {
  background: rgba(6, 57, 101, 0.68);
  color: #000000;
  border: 2px solid #00c853;
}

.button-2:hover {
  background: #00c853;
  color: #fff;
  transform: translateY(-3px);
}


.projects-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0d1b2a, #1b263b, #00b4d8);
    margin: 0;
    color: #fff;
}

.projects-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00e6d3;
}

.projects-section p {
    font-size: 1.1rem;
    color: #d9e6f2;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.project-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 480px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.project-image-container {
    position: relative;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-type {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #00c8ff;
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.project-details {
    padding: 1.5rem;
    text-align: left;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.project-location svg {
    fill: #00c8ff;
}

.project-details h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.project-details p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-features li {
    font-size: 0.9rem;
    color: #333;
    position: relative;
    padding-left: 1.4rem;
}

.key-features li::before {
    content: "✔";
    color: #00c8ff;
    font-size: 1rem;
    position: absolute;
    left: 0;
}


.portfolio-link-container {
    margin-top: 3rem;
    text-align: center;
}

.portfolio-link {
    text-decoration: none;
    color: #00c8ff;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #00c8ff;
    padding-bottom: 0.2rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.portfolio-link:hover {
    color: #0095c7;
    border-color: #0095c7;
}


.testimonials-carousel {
  text-align: center;
  padding: 60px 20px;
  background-color: #e8e8e8;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials-carousel h2 {
  margin-bottom: 30px;
  color: #222;
  font-size: 2rem;
}

.testimonials-carousel-wrapper {
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  background:  #e8e8e8;
  padding: 30px 20px;
  margin: 0 10px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.testimonial-slide p {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00c853;
}

.author {
  font-weight: bold;
  color: #111;
}

.location {
  font-size: 0.9rem;
  color: #666;
}

.project {
  font-size: 0.9rem;
  color: #00c853;
  font-weight: 600;
}

.stars {
  color: gold;
  font-size: 16px;
  margin-top: 4px;
}

.testimonials-carousel-buttons {
  margin-top: 25px;
  text-align: center;
}

.testimonials-carousel-buttons button {
  background: #222;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonials-carousel-buttons button:hover {
  background: #00c853;
}


.consultation-container {
  background: linear-gradient(to bottom, rgba(2, 176, 250, 0.84),rgba(91, 181, 189, 0.712),rgba(101, 190, 215, 0.621));
}

.consultation h2 {
 text-align: center;
 text-transform: capitalize;
 font-size: 2.3rem;
}

.consultation p {
  text-align: center;
  text-transform: capitalize;
}

 .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
        }

        .call-btn {
            background-color: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: var(--light-text);
        }

        .email-btn {
            background-color: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: var(--light-text);
        }

        .contact-btn .icon {
            font-size: 1.2rem;
        }

        .cta-buttons {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease, color 0.3s ease;
            text-align: center;
        }

        .cta-btn.white {
            background-color: var(--button-bg);
            color: var(--button-text);
        }
        
        .cta-btn.white:hover {
            background-color: var(--accent-blue);
            color: var(--light-text);
        }

        .cta-btn.blue {
            background-color: var(--secondary-blue);
            color: var(--light-text);
            border: 2px solid var(--light-text);
        }

        .cta-btn.blue:hover {
            background-color: var(--accent-blue);
            border-color: var(--accent-blue);
        }

        .fine-print {
            margin-top: 20px;
            font-size: 0.8rem;
            opacity: 0.7;
            text-align: center;
        }

  .footer {
  background-color: #242436;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.8;
}

/* Footer container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 15px;
}

.footer-section.about { flex: 1.5; }

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-section p {
  color: #fffafa;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.footer-section .powered-by {
  font-size: 13px;
  margin-top: 20px;
}

.footer-section .powered-by a {
  color: #FFD700;
  text-decoration: none;
}

.footer-section .powered-by a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgb(201, 201, 201);
  text-transform: capitalize;
  cursor: pointer;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cfcccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-section.contact-info p i {
  margin-right: 10px;
  color: #90EE90;
  font-size: 16px;
  margin-top: 3px;
}

.footer-section.contact-info a {
  color: #bbb;
  text-decoration: none;
}

.footer-section.contact-info a:hover {
  text-decoration: underline;
}

.follow-us {
  margin-top: 30px;
  margin-bottom: 15px !important;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background-color: #90EE90;
  color: #242436;
}

.social-links i { font-size: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom p { margin: 5px 0; }

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: #fff; }

.footer-last p{
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
  font-size: 13px;
  text-transform: capitalize;
}

/* ================================
   MOBILE RESPONSIVE FIXES
================================ */

/* Hero section */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Story section */
@media (max-width: 900px) {
  .ourstory-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .story {
    flex-direction: column;
    gap: 20px;
    margin-left: 0;
  }
  .img-container img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

/* Features */
@media (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    justify-items: center;
  }
  .feature-item {
    width: 90%;
  }
}

/* Numbers */
@media (max-width: 768px) {
  .numbers-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .numbers {
    flex-direction: column;
    gap: 20px;
    margin-left: 0;
  }
}

/* Services */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}

/* Experience buttons */
@media (max-width: 600px) {
  .butt {
    flex-direction: column;
    gap: 15px;
  }
}

/* Projects */
@media (max-width: 768px) {
  .project-card {
    width: 100%;
  }
  .project-details h3 {
    margin-left: 0;
    text-align: center;
  }
  .key-features {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Stats / Trusted */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Consultation buttons */
@media (max-width: 600px) {
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-section {
    margin: 10px 0;
  }
}
