@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
    padding: 0 3vh;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: all 0.3s ease;
}

a:hover {
    color: #003d82;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.h3{
        color: black;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-subtitle {
    color: #666;
    margin: 0 ;
    font-size: 1.1rem;
}

.section-subtitless {
    color: #666;
 
    margin: 0;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.secondary-btn {
   background:linear-gradient(135deg, #ccb641 0%, #857100 100%);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.secondary-btn:hover {
   background:linear-gradient(135deg, #ccb641 0%, #857100 100%);
       box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
       color:black
}

/* Header Styles */
    header {
      background-color: #fff;
      border-bottom: 1px solid #e9ecef;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #000;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: translateY(-2px);
    }

    .logo img {
      height: 45px;
      margin-right: 12px;
      border-radius: 8px;
    }

    .logo-text {
      font-size: 20px;
      font-weight: 700;
       background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
      margin-bottom: 2px;
    }

    .logo-tagline {
      font-size: 11px;
      color: #6c757d;
      font-weight: 500;
    }

    .menu-toggle {
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
      display: block;
      padding: 8px;
       color: #007bff;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .menu-toggle:hover {
      background-color: #f8f9fa;
      color: #0016e0;
    }

    .menu-toggle.active {
      color: #007bff;
    }
.menu-toggle .close-icon {
  display: none;
}

/* When active, show close icon instead */
.menu-toggle.active .open-icon {
  display: none;
}
.menu-toggle.active .close-icon {
  display: inline;
}

/* Optional: style icons */
.menu-toggle i {
  font-size: 26px;
  transition: transform 0.3s ease;
}

.menu-toggle:hover i {
  transform: scale(1.1);
}

        #main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #fff;
      border-bottom: 1px solid #e9ecef;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    #main-nav.active {
      display: block;
    }

      #nav-menu {
      list-style: none;
      padding: 15px 0;
      max-width: 1200px;
      margin: 0 auto;
    }

    #nav-menu li {
      position: relative;
    }

    #nav-menu > li > a {
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
      display: block;
      padding: 12px 20px;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

  
   .dropdown > a::after {
      content: '▾';
      float: right;
      margin-left: 10px;
      font-size: 14px;
      transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      display: none;
      list-style: none;
      background-color: #f8f9fa;
      border-left: 3px solid #007bff;
      margin-left: 20px;
      border-radius: 0 6px 6px 0;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        max-height: 0;
      }
      to {
        opacity: 1;
        max-height: 200px;
      }
    }

    .dropdown.active .dropdown-menu {
      display: block;
    }

    .dropdown-menu li a {
      padding: 10px 20px;
      color: #495057;
      text-decoration: none;
      display: block;
      transition: all 0.3s ease;
      font-size: 14px;
    }
#nav-menu > li > a:hover {
    background-color: #e9ecef;
      color: #007bff;
      padding-left: 25px;
}
    .dropdown-menu li a:hover {
      background-color: #e9ecef;
      color: #007bff;
      padding-left: 25px;
    }


  @media (min-width: 768px) {
      .header-container {
        padding: 15px 40px;
      }

      .menu-toggle {
        display: none;
      }

      #main-nav {
        display: block !important;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        animation: none;
      }

      #nav-menu {
        display: flex;
        gap: 30px;
        align-items: center;
        padding: 0;
      }

      #nav-menu > li > a {
        padding: 10px 16px;
        border-radius: 6px;
        border-left: none;
        position: relative;
        overflow: hidden;
      }

      #nav-menu > li > a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
        transition: left 0.5s ease;
      }



   

      .dropdown {
        position: relative;
      }

      .dropdown > a::after {
        float: none;
        margin-left: 8px;
      }

      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border: 1px solid #e9ecef;
        min-width: 220px;
        padding: 12px 0;
        display: none;
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        margin-left: 0;
        border-left: none;
        z-index: 1000;
      }

      .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInUp 0.3s ease;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .dropdown.active .dropdown-menu {
        display: none;
      }

      .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 15px;
      }

      .dropdown-menu li a:hover {
        background-color: #f8f9fa;
        padding-left: 25px;
      }
    }
 @media (min-width: 1200px) {
      .header-container {
        padding: 20px 60px;
      }

      #nav-menu {
        gap: 40px;
      }

      .logo-text {
        font-size: 22px;
      }

      .logo-tagline {
        font-size: 12px;
      }
    }



    /* Placeholder image styling */
    .logo img {
      background: linear-gradient(45deg, #007bff, #0056b3);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 18px;
    }

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(125, 125, 125, 0.7), rgba(10, 15, 204, 0.39)), url(./images/homeland.jpg) center/cover no-repeat;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    justify-items: end;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.heroheading{
    font-size: 3.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 15px;
    text-align: justify;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.feature-item i {
    font-size: 1.2rem;
}

/* Trust Indicators */
.trust-indicators {
    padding: 12px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
        justify-items: start;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.indicator i {
    font-size: 1.5rem;
    color: #0056b3;
}

.indicator span {
    font-weight: 500;
    color: #333;
}

/* Features Grid */
.features {
    padding: 10px 0;
    background-color: #fff;
    position: relative;
}
/* Default: Show desktop form, hide mobile */
.mobile-lead {
  display: none;
}
.desk-lead {
  display: block;
}

/* On small screens: Show mobile form, hide desktop */
@media (max-width: 768px) {
  .mobile-lead {
    display: block;
    margin-top: 0;
  }

  .desk-lead {
    display: none;
  }
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 1rem;
    scrollbar-width: none;
}

.features-carousel::-webkit-scrollbar {
    display: none;
}

.feature-card {
    scroll-snap-align: start;
    flex: 0 0 100%;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    top: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-img {
    height: 150px;
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.feature-img::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.feature-content {
      padding: 10px 30px 0 30px;
}

.feature-content h3 {
    color: #0056b3;
    font-size: 1.4rem;
    position: relative;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #0056b3;
}

.feature-content p {
    color: #555;
    line-height: 1.7;
    padding-top: 10px;
}

.feature-list {
    list-style: none;
    margin-top: 5px;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-list i {
    color: #0056b3;
    font-size: 0.9rem;
    margin-top: 3px;
}


@media (min-width: 640px) {
    .feature-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .feature-card {
        flex: 0 0 33.333%;
    }
}

/* Nav buttons */
.carousel-wrapper {
    position: relative;
    margin-top: 20px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-btn.left {
    left: -15px;
}

.carousel-btn.right {
    right: -15px;
}

.carousel-btn:hover {
    background: #003e85;
}


/* Internet Plans Section */

     .plans-section {
      padding: 5px 0;
    }

    .plans-section h2 {
      text-align: center;
      margin-bottom: 0;
      color: #0056b3;
      font-size: 2.2rem;
    }

    

    .plans-carousel-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .plans-carousel {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .plans-carousel::-webkit-scrollbar {
      display: none;
    }

    .plans-grid {
      display: flex;
      gap: 30px;
      padding-top: 23px;
    }

    .plan-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #e9ecef;
      transition: all 0.3s ease;
    }

    .plan-card.featured {
      border: 2px solid #0056b3;
      transform: scale(1.02);
    }

    .plan-badge {
      position: relative;
    top: -45px;
    right: -100px;
      background-color: #0056b3;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
          max-width: 130px;
    text-align: center;
    }

    .plan-header {
      margin-bottom: 20px;
      text-align: center;
    }

    .plan-header h3 {
      font-size: 1.8rem;
      color: #0056b3;
    }

    .plan-header p {
      color: #666;
      font-size: 0.95rem;
    }

    .plan-speed {
      text-align: center;
      margin: 20px 0;
    }

    .plan-speed span {
      font-size: 2.5rem;
      font-weight: 700;
      color: #333;
      line-height: 1;
    }

    .speed-unit {
      font-size: 1.2rem;
      color: #666;
      font-weight: 500;
      margin-top: 5px;
    }

    .plan-features {
      list-style: none;
      margin: 30px 0;
      padding: 0;
    }

    .plan-features li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .plan-features i {
      color: #0056b3;
      font-size: 0.9rem;
      margin-top: 3px;
    }

    .plan-price {
      text-align: center;
    }

    .price-label {
      font-size: 1rem;
      font-weight: 400;
      color: #666;
      display: block;
    }

    .plan-price h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #333;
      margin: 5px 0;
    }

    .plan-price h2 span {
      font-size: 1rem;
      font-weight: 400;
      color: #666;
    }

    .plan-btn {
      width: 100%;
      text-align: center;
      margin-top: 20px;
      display: block;
      padding: 12px 25px;
      background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
      transition: all 0.3s ease;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
    }

    .plan-btn:hover {
      background: linear-gradient(135deg, #003d82 0%, #0056b3 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
    }

    .carousel-arrow-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 5px;
    }

    .carousel-arrow {
      width: 50px;
      height: 50px;
      background: white;
      color: #0056b3;
      border: 2px solid #0056b3;
      border-radius: 50%;
      font-size: 1.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .carousel-arrow:hover {
      background: #0056b3;
      color: white;
    }

    @media (min-width: 640px) {
      .plan-card {
        flex: 0 0 calc(50% - 15px);
      }
    }

    @media (min-width: 1024px) {
      .plan-card {
        flex: 0 0 calc(33.333% - 20px);
      }
    }

/* Services Section */
.services {
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.8;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.service-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.service-info h3 {
    color: #0056b3;
    font-size: 1.7rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 5px;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
}

.service-info h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 5px 0 5px;
}

.service-info p {
    color: #555;
    line-height: 1.7;
}

.service-info ol {
    margin-left: 20px;
}

.service-info ol li {
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 5px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f1f7ff;
    padding: 10px 15px;
    border-radius: 8px;
}

.benefit-item i {
    color: #0056b3;
    font-size: 1.2rem;
}

/* Property Search Section */
.property-search {
    padding: 10px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.property-search::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 198, 255, 0.1) 100%);
    z-index: 0;
}

.property-search .container {
    position: relative;
    z-index: 1;
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.search-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.search-info h3 {
    color: #0056b3;
    font-size: 1.8rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 5px;
}

.search-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
}

.search-info p {
    color: #555;
    line-height: 1.7;
}

.coverage-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Entertainment Section */
.entertainment-section {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.entertainment-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.entertainment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.entertainment-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.entertainment-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Technology Section */
.tech-section {
    padding: 10px 0;
    background-color: white;
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.tech-info {
    flex: 1;
    min-width: 300px;
}

.tech-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0056b3;
}

.tech-info p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature {
    display: flex;
    gap: 15px;
}

.tech-feature i {
    font-size: 1.5rem;
    color: #0056b3;
    margin-top: 3px;
}

.tech-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.tech-feature p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tech-image {
    flex: 1;
    min-width: 300px;
}

.tech-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */

/* Testimonials Section */
.testimonials {
    padding: 10px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-content {
    padding: 15px;
}

.rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.author-info span {
    font-size: 0.85rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 5px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: #0056b3;
}

.cta-btn:hover {
    background: #f1f1f1;
    color: #003d82;
}

/* Form Styles */
/* General Container */

.form-container {
    max-width: 390px;
    margin: auto;
    padding: 10px;
    /* background: #ffffff; */
    border-radius: 5px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Labels */
form label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    text-align: left;

}

.required-star {
    color: rgb(10, 10, 10);
    margin-left: 4px;
}



/* Disclaimer Box */
.disclaimer-section {
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9fc;
    font-size: 9px;
    color: #555;
    text-align: justify;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.checkbox-label input {
    margin-right: 10px;
}

/* Submit Button */
.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.primary-button,
.secondary-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 50%;
}

.primary-button {
    background-color: #007bff;
    color: white;
    width: 50%;
}

.secondary-button {
    background-color: #6c757d;
    color: white;
}

.primary-button:disabled {
    background-color: #c0c0c0;
    cursor: not-allowed;
}

/* Spinner (for loading) */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Images */
.responsive-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 15px 0;
    }

    nav {
        width: 100%;
        margin-top: 15px;
    }

    nav ul {
        display: flex;
      flex-direction: column;
    }

    nav ul li {
        margin: 0;
        flex: 1 0 auto;
        text-align: center;
        padding: 5px;
    }

    nav ul li a {
        padding: 10px 5px;
        font-size: 14px;
    }

    .heroheading {
        font-size: 2.5rem;
    }





    .hero-btns {
        flex-direction: column;
    }

    .services-container,
    .search-container,
    .tech-container {
        flex-direction: column;
    }

    .service-info,
    .search-info,
    .tech-info {
        order: 2;
    }

    .responsive-img {
        order: 1;
        margin-bottom: 30px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .form-container {
        padding: 10px;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .indicator span {
        font-size: 0.9rem;
    }
}

footer {
    background-color: #0d2846;
    color: white;
    padding: 20px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0066cc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;


    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(rgb(58 144 230 / 80%), rgb(165 168 171 / 80%)), url(images/about-hero-bg.jpg) center / cover no-repeat;
    padding: 20px 0;
    text-align: center;
    color: black;
}

.contact-hero h1 {
    font-size: 2rem;
}

.contact-hero p {
    font-size: 1rem;
    max-width: 701px;
    margin: 0 auto;
}

/* Contact Slider */
.contact-slider {
    padding: 10px 0;
    background-color: #f9f9f9;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
}

.slider-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.slider-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.slider-btn.active {
    color: #0056b3;
}

.slider-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0056b3;
}

.slider-panel {
    display: none;
}

.slider-panel.active {
    display: block;
}

.slider-panel h2 {
    text-align: center;
    margin-bottom: 5px;
    color: #0056b3;
}

.slider-panel p {
    text-align: justify;
    color: #666;
    max-width: 700px;
    margin-right: auto;
}

/* Contact Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.option-card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}

.option-card h3 {
    margin-bottom: 5px;
    color: #333;
}

.option-card p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

/* Contact Form */
/* #contactForm {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
} */







/* FAQ Section */
.faq-section {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8fafc;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-question.active+.faq-answer {
    max-height: 300px;
}

.faq-question.active i {
    transform: rotate(180deg);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 0;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        margin-bottom: 20px;
    }

    .slider-nav {
        justify-content: center;
    }


}

@media (max-width: 480px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Hero Section */
.about-hero {
       background: linear-gradient(rgb(58 144 230 / 80%), rgb(165 168 171 / 80%)), url(images/about-hero-bg.jpg) center / cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
}

.about-hero h1 {
    font-size: 2rem;
}

.about-hero p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 1rem 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1 1 40%;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1 1 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Values Section */
.values {
    padding: 1rem 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--primary-color);
}


/* Technology Section */
.technology {
    padding: 1rem 0;
    background: var(--light-color);
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.tech-content {
    flex: 1 1 50%;
    min-width: 300px;
}



.tech-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.tech-content ul {
    list-style: none;
    margin: 1rem 0;
}

.tech-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.tech-content li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 1rem 0;
    background: var(--light-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.quote {
    position: relative;
    margin-bottom: 1rem;
}

.quote i {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.quote p {
    font-style: italic;
    padding-left: 1.5rem;
}

.customer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.customer-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 1rem 0;
    text-align: center;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
        url('images/cta-bg.jpg') center/cover no-repeat;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
}

.cta h2::after {
    background: var(--white);
}

.cta p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    .about-container,
    .tech-container {
        flex-direction: column;
    }

    .about-image,
    .tech-image,
    .about-content,
    .tech-content {
        min-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 80%;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }

    .about-hero {
        padding: 0.5rem 0;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .initiative {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .initiative-icon {
        margin-bottom: 1rem;
    }
}

/* thank you page */


/* thank you */
.thank-you-page{
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  padding: 16px 12px;
  max-width: 115rem;
  margin: 10px;
    text-align: center;
}
.hero-c-t-a{
  font-weight: 600;
  gap: 4px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(rgb(58 144 230 / 80%), rgb(165 168 171 / 80%)), url(images/about-hero-bg.jpg) center / cover no-repeat;
  color: black;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 1.3rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero-c-t-a:hover {
  background-color: #2174e8; 
}
.btn {
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.btn:hover{
    color: #000;
}

.btn.primary {
    background: #007bff;
    color: white;
}

.btn.secondary {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.what-next {
    margin-top: 60px;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card .icon {
    font-size: 24px;
    margin-bottom: 10px;
}



body {
  background: #f5f5fa;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Main container */
.gradient-bg {
  max-width: 480px;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
    background: linear-gradient(135deg, #0056b3 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.form-subtitle {
  text-align: center;
  color: #555;
  display: none;
}



label {
  font-weight: 600;
  margin-top: 16px;
  display: block;
}

.required-star {
  color: rgb(8, 8, 8);
}

select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
   padding: 6px 8px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #fafafa;
  font-size: 1rem;
}

input:focus,
select:focus {
  border-color: #7b5df0;
  outline: none;
  background-color: #fff;
}

.input-with-icon {
  position: relative;
  margin-top: 6px;
}

.input-with-icon input {
  padding-right: 40px;
}

.input-with-icon .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #888;
}


.agreedThePolicy a {
  color: #5e35b1;
  text-decoration: underline;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(to right, #7b5df0, #623ce8);
  color: white;
  border: none;
  border-radius: 9999px;
    padding: 5px;
    margin-top: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(to right, #6d4fe3, #512dcf);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* contact */


.contact-form-wrapper {
  max-width: 480px;
  margin: 40px auto;
  padding: 40px 32px;
  background-color: #fcfbff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}



.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.required-star {
  color: rgb(19, 18, 18);
  margin-left: 4px;
}


textarea::placeholder {
  color: #aaa;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #7b5df0;
  background-color: #fff;
}



.agreedThePolicy {
font-size: 11px;
  line-height: 1.5;
}

.agreedThePolicy a {
  color: #5e35b1;
  text-decoration: underline;
}



/* Spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* CTA Button Styles */
    .cta-button {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 60px;
      height: 60px;
    background: linear-gradient(135deg, #ccb641 0%, #857100 100%);
      color: white;
      border-radius: 50%;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      font-size: 20px;
    }
    
    .cta-button:hover {
      background-color: #0d5bba;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
      color: white;
    }
    
    /* Scroll to Top Button Styles */
    .scroll-top {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 50px;
      height: 50px;
     background: linear-gradient(135deg, #ccb641 0%, #857100 100%);
      color: white;
      border-radius: 50%;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      cursor: pointer;
    }
    
    .scroll-top.show {
      opacity: 1;
      visibility: visible;
    }
    
    .scroll-top:hover {
      background-color: #0d5bba;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    
    @media (max-width: 768px) {
      .cta-button, .scroll-top {
        width: 50px;
        height: 50px;
        font-size: 18px;
      }
      .scroll-top {
        bottom: 80px;
      }
    }