/* ===========================================
   RESET & BASE STYLING
=========================================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #081b29;
  color: #ffffff;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ===========================================
   HEADER SECTION
=========================================== */
/* HEADER STYLING */
.site-header {
  background-color: #081b29;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 227, 240, 0.2);
  z-index: 999;
}

.logo img {
  height: 50px;
}

/* NAVIGATION STYLES */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a,
.nav-item .dropdown-toggle {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  transition: color 0.3s ease;
}

.main-nav a::after,
.nav-item .dropdown-toggle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #00e3f0;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.nav-item .dropdown-toggle:hover::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active,
.nav-item .dropdown-toggle:hover,
.nav-item .dropdown-toggle:focus {
  color: #00e3f0;
}
/* DROPDOWN MENU */
.dropdown-menu {
  background-color: #081b29;
  border: 1px solid rgba(0, 227, 240, 0.2);
  border-radius: 6px;
  min-width: 220px;
  padding: 10px 0;
  flex-direction: column;
}

.dropdown-menu .dropdown-item {
  color: #ffffff;
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #00e3f0;
  color: #081b29;
}


/* CTA BUTTON */
.proposal-button a {
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00e3f0 0%, #005f6b 100%);
  color: #ffffff;
  border: 1px solid #00e3f0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.proposal-button a:hover {
  background: #ffffff;
  color: #00e3f0;
  transform: scale(1.05);
}



/* ===========================================
   HERO SECTION
=========================================== */


/* ===========================================
   WHY CHOOSE US SECTION
=========================================== */
body {
      background-color: #081b29;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .why-choose-us{
      background-color: #081b29;
    }
    .why-choose-us h2 {
      font-weight: 700;
      font-size: 2.5rem;
    }

    .why-choose-us p {
      font-size: 1rem;
      color: #b0c4d9;
    }

    .why-choose-us .card-box {
      background: radial-gradient(circle at top left, #072e38, #030b12);
      padding: 30px;
      border-radius: 20px;
      border: 1px solid #0f2c3f;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .why-choose-us .card-box:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0, 227, 240, 0.2);
    }

    .why-choose-us .icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #00e3f0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: #001f23;
      font-size: 28px;
      box-shadow: 0 4px 15px rgba(0, 227, 240, 0.2);
    }

    .why-choose-us h5 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #ffffff;
      text-align: center;
      margin-bottom: 15px;
    }

    .why-choose-us .card-text {
      font-size: 0.95rem;
      color: #d6e8f0;
      text-align: center;
    }

    @media (max-width: 767.98px) {
      .why-choose-us h2 {
        font-size: 2rem;
      }

      .why-choose-us p {
        font-size: 0.95rem;
      }

      .why-choose-us .card-box {
        padding: 25px;
      }

      .why-choose-us h5 {
        font-size: 1.1rem;
      }

      .why-choose-us .card-text {
        font-size: 0.9rem;
      }
    }
/* ===========================================
   TRANSFORM SECTION
=========================================== */
.transfoam{
      background-color: #081b29;
      color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .tech-section {
      padding: 60px 15px;
    }
    .tech-heading {
      font-size: 28px;
      font-weight: 700;
    }
    .highlight {
      color: #00d1ff;
    }
    .tech-description {
      font-size: 16px;
      margin-top: 15px;
      margin-bottom: 30px;
      color: #cfcfcf;
    }
    .btn-custom {
      background: linear-gradient(90deg, #00d1ff, #006dff);
      color: #fff;
      border: none;
      padding: 10px 25px;
      border-radius: 25px;
      transition: 0.3s;
    }
    .btn-custom:hover {
      opacity: 0.85;
    }
    .tech-image {
      border-radius: 12px;
      max-width: 100%;
      height: auto;
    }

/* ===========================================
   SERVICES SECTION
=========================================== */
 /* General Section Styling */
  /* ===== Services Section Styling ===== */
.services-section {
   
  font-family: 'Poppins', sans-serif;
}
/* ===== Services Section Background ===== */
.services-section {
  background-color: #081b29;
}


/* Title and Description */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
}

.section-title span {
  color: #00e6e6;
}

.section-description {
  font-size: 0.85rem;
  color: #aaa !important;
}

/* ===== Service Cards ===== */
.service-card {
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: end;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 230, 230, 0.35);
}

/* Card Content Overlay */
.card-overlay {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 1rem;
  border-radius: 0 0 16px 16px;
  transition: background-color 0.3s ease;
}

.service-card:hover .card-overlay {
  background-color: rgba(0, 0, 0, 0.65);
}

/* Card Title */
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #00e6e6;
  margin-bottom: 0.5rem;
}

/* Card Text */
.card-text {
  font-size: 0.8rem;
  color: #ddd;
  margin: 0;
}
/* ===== Service Cards ===== */
.service-card {
  background-size: cover;          /* Ensures the image covers the entire card */
  background-position: center;     /* Centers the image */
  background-repeat: no-repeat;    /* Prevents repetition */
  height: 360px;                   /* Increased height from 300px */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .service-card {
    height: 400px; /* Optional: taller height for larger screens */
  }
}

/* Card Content Overlay */
.card-overlay {
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 0 0 16px 16px;
  transition: background-color 0.3s ease;
  min-height: 100px;  /* Ensures consistent footer height */
}
@media (max-width: 767px) {
  .service-card {
    height: 300px;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-text {
    font-size: 0.75rem;
  }
}
.site-footer {
  background-color: #01131c;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  color: #00e3f0;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00e3f0;
}

.brand h2 {
  font-size: 28px;
  color: #ffffff;
}

.brand h2 span {
  color: #00e3f0;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00e3f0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1a1a1a;
  padding-top: 15px;
  font-size: 14px;
  color: #888;
}


/* ===========================================
   COUNTER SECTION
=========================================== */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
