	
	
        
   header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10;
            padding: 20px 0;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
              max-width: 1500px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
			
        }
        
        .logo img {
            height: auto;
            margin-right: 10px;
			 width: 70%;
        }
        
        .logo-text {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 4px;
        }
        
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .nav-button {
    background: linear-gradient(to right, #8e4cff 0%, #914bfe 51%, #914bfe 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s 
ease;
    font-size: 1.2rem;
        }
        
        .nav-button:hover {
              background: linear-gradient(to right, #8e4cff 0%, #914bfe 51%, #914bfe 100%);
            transform: translateY(-2px);    font-size: 1.2rem;
        }
        
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        /* Banner Section */
        .banner-container {
            width: 100%;
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            margin-top: 0;
        }
        
        .banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 47, 75, 0.85) 0%, rgba(0, 47, 75, 0.6) 50%, rgba(0, 47, 75, 0.4) 100%);
            z-index: 2;
        }
        
        .content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    margin-top: 40px;
        }
        
        .text-content {
            max-width: 600px;
        }
        

        
        .demo-button {
    display: inline-block;
    padding:0.4rem 1rem;
    background-color: #904cff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s 
ease;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    border: 2px solid #904cff;
        }
        
        .demo-button:hover {
    background-color: #904cff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
    color: #fff;
        }
        
        .demo-button i {
            margin-right: 10px;
        }
          /* Dropdown styles */
  .nav-links li {
    position: relative;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
  }

  .nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown a {
    color: #333 !important;
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
  }

  .dropdown a:hover {
    background: #f8f9fa;
    padding-left: 25px;
  }

  .dropdown a:last-child {
    border-bottom: none;
  }

  .has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.9rem;
  }
.heading {
    color:#f9ffff !important;
    text-align: left;
    text-transform: none;
    line-height: 1.3;
    font-size: 20px !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400 !important;
    padding-bottom: 0px !important;
    font-weight: bold;
    text-align: left;
    margin-top: 55px;
}
.text-content h1{
	        font-size: 3rem;
			 font-weight: 700 !important;
			     padding-bottom: 32px;
}
  /* Mobile dropdown adjustments */
  @media (max-width: 992px) {
    .dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: transparent;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .nav-links li.active .dropdown {
      max-height: 300px;
    }

    .dropdown a {
      color: white !important;
      padding: 10px 15px 10px 30px;
    }

    .has-dropdown > a::after {
      content: '\f107';
      float: right;
      transition: transform 0.3s ease;
    }

    .nav-links li.active.has-dropdown > a::after {
      transform: rotate(180deg);
    }
  }
        /* Responsive adjustments */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            p {
                font-size: 1.3rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .banner-container {
                height: 60vh;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            p {
                font-size: 1.1rem;
            }
            
            .demo-button {
                padding: 0.8rem 2rem;
                font-size: 1.1rem;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .logo img {
                height: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .banner-container {
                height: 74vh;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .demo-button {
                padding: 0.7rem 1.8rem;
                font-size: 1rem;
            }
            
            .navbar {
                padding: 0 1rem;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
        }
	
	
	
	
	
	
	
	
	.form-body {
    background: #8e4afd !important;
    padding: 4%;
    text-align: center;
    border-radius: 15px;
    margin-top: 0%;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 6%;
max-width: 73%;
    border: 1px solid #efefef;
    margin: auto;
}
.form-head {
    margin-bottom: 2vh;
    color: #ffecec!important;
    font-size: 28px;
    font-weight: 400 !important;
}
.button-req-speak, .button-req:active, .carousel-indicators .active, .form-body .button {
    background: #000000 !important;
    border-radius: 9px;
    width: 64%;
    color: #fff !important;
}

.form-body .button {
    outline: 0;
    cursor: pointer;

    margin: 5%;
    color: #fff;
    padding: 3% 4%;
    padding: 3% 4%;
    border: 1px solid #000000!important;
}

.ai-form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 10%;
  background: #f8fbff; /* light background */
}


.left-content {
  flex: 1;
  color: #222;
      padding-top: 73px;
}

.left-content h2 {
font-size: 2rem;
    margin-bottom: 20px;
    color: #8e4afd;
}

.left-content p {
    font-size: 1.1rem;
    line-height: 25px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    color: var(--e-global-color-text);
}
.left-content ul{
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    color:#787878;
}
.left-content li{
	  
	  padding-bottom: 15px;
}
.right-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.right-form h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #003366;
}

.form-group {
  margin-bottom: 15px;
}

.right-form input,
.right-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.right-form input:focus,
.right-form textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 8px rgba(0,119,255,0.2);
  outline: none;
}

.btn {
  width: 100%;
  padding: 14px;
  background: #0077ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #005fcc;
}

/* Responsive */
@media (max-width: 992px) {
  .ai-form-section .container {
    flex-direction: column;
  }
  .left-content, .right-form {
    max-width: 100%;
  }
}	
	
	
	
	
	
	
	
	
	
	
	
	.provide-section {
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 73px 0 124px;
}

.provide-section .service_contentbox .service-box {
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 40px 35px;
    margin-bottom: 27px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
    /* border: 2px solid #000; */
    box-shadow: @;
    box-shadow: 6px 3px 15px 5px rgba(0, 0, 0, 0.05);
}
.counter-section .counter-box {
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 35px 40px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
    box-shadow: 6px 3px 15px 5px rgba(0, 0, 0, 0.05);
}
.sub-banner {
    background: linear-gradient(135deg, #010c23, #041f3a);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
	  .aifa-section {
      padding: 60px 0;
      background-color: #f7f9fc;
    }

    .aifa-heading {
    font-size: 26px;
    font-weight: 700;
    color: #7542d8;
    }

    .aifa-subheading {
      font-size: 1.3rem;
      color: #000;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .aifa-description {
      font-size: 1rem;
      color: #555;
      margin-bottom: 30px;
    }

    .aifa-list-item {
      background: #fff;
      border-left: 4px solid #7542d8;
      padding: 15px 20px;
      margin-bottom: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .aifa-list-item i {
      font-size: 1.3rem;
      color: #111214;
      margin-right: 15px;
    }

    .aifa-list-item:hover {
      transform: translateY(-3px);
    }
	.counter-section {
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 85px 0 16px;
}
.faq-section .faq_content h4 {
    font-weight: 500;
    /* margin-bottom: 16px; */
    display: inline-block;
    color: #000;
    font-size: 18px;
}
.choose-section .choose_wrapper .choose-image {
    position: absolute;
    top: -220px;
    left: -230px;
}
 .cta-section {
    background: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
  }

  .cta-subheading {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #dbe4ff;
  }

  .cta-btn {
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
  }

  .cta-btn:hover {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.5);
  }
.choose-section .choose_content .text1 {
    margin-bottom: 11px;
}
.choose-section .choose_content h2 {
    margin-bottom: 16px;
    color: #8e4afd !important;
}
.banner-section {
      background: linear-gradient(135deg, #010c23, #041f3a);
  }
.banner-section h1{
color:#fff!important;
}
.banner-section p{
color:#fff!important;
}
.choose-section .choose_content .text {
    font-weight: 500;
    margin-bottom: 13px;
    padding-bottom: 18px;
}
.mb-2 {
    margin-bottom: .5rem !important;color:#fff!important;    font-family: 'Ubuntu', sans-serif;
}
.me-2{color:#fff!important;}
  .form-box {
     max-width: 81%;
    border: 1px solid #e0e0e0;
	    margin: auto;    border-radius: 34px !important;
  }
.form-box h4{
    color: #000!important;
}
.btn-primary{
background: #8e4afd !important;
    color: #ffffff;
    border: 2px solid #8e4afd;
}
.mid-aifa-cl{ 
color:#8e4afd!important;
}
.provide-section .provide_content h2 {
    margin-bottom: 24px;
    color: #8e4afd;
}
.provide_content p{
	 margin-bottom:65px;
}
.provide-section .provide_content h5 {

    color: #8e4afd;
}
  .form-box input {
    height: 44px;
    font-size: 0.95rem;
    border-radius: 6px;
  }

  .form-box button {
    height: 45px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
  }

  .form-box button:hover {
    background-color: #0d6efd;
    box-shadow: 0 0 0.75rem rgba(13, 110, 253, 0.3);
  }
.ai-section {
  padding: 75px 20px;


}

/* Container */
.ai-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Image */
.ai-image {
  flex: 1;
  min-width: 320px;
      padding-top: 36px;
}
.ai-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Right Content */
.ai-content {
  flex: 2;
  min-width: 320px;
}

.ai-content h2 {
  font-size: 2.2rem;
  color: #8e4afd;
  margin-bottom: 10px;
}

.ai-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Grid Layout for Bullet Sections */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Block Styling */
.ai-block {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ai-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.ai-block h3 {
  font-size: 1.1rem;
  color: #072f4c;
  margin-bottom: 10px;
}

.ai-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.ai-block ul li {
  position: relative;
  padding-left: 25px;

  color: #444;
  line-height: 1.5;
  font-family: 'Ubuntu', sans-serif;
      padding-top: 13px;

    padding-bottom: 13px;
}

.ai-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;    padding-top: 14px;
}
.ai-benefits {
  padding: 81px 39px 114px 47px;
  background:#f6f6f6;

}

.benefits-container {
    max-width: 1200px;
    margin: auto;

    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.benefits-intro {
  flex: 1;
  min-width: 300px;
}

.benefits-intro h2 {
  font-size: 2.2rem;
  color: #8e4afd;
  margin-bottom: 15px;
}

.benefits-intro p {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
  padding-bottom: 25px;
}

.benefits-list {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
      width: 85%;
    margin: auto;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.benefit-icon {

  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1rem;
  color: #333;
  margin: 0; font-family: 'Ubuntu', sans-serif;
}
.aifa-cta-card {

    margin: 0px auto;
    background: linear-gradient(135deg, #010c23, #041f3a);
    padding: 30px 40px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;

    position: relative;
	    padding: 57px 30px 70px 47px;
		    margin-bottom: 60px;
    border-radius: 61px;
}

.aifa-cta-card h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.4;
}

.aifa-cta-card h2 span {
  color: #914dff;
  font-weight: 700;
}

.cta-btn {
  background: linear-gradient(to right, #8448ee 0%, var(--e-gradient-2) 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(to right, #8448ee 0%, var(--e-gradient-2) 100%);
  transform: translateY(-2px);
}

/* Optional accent bar at top for uniqueness */
.aifa-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #0066cc, #0099ff);
  border-radius: 2px;
}

.features-section {
    background: linear-gradient(135deg, #010c23, #041f3a);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: #ffb400;
    transition: 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: rgba(0, 224, 255, 0.3);
    color: #00e0ff;
    transform: scale(1.1);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.85;
	color: #fff;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-card {
    animation: fadeUp 0.8s ease forwards;
}

  @media (max-width: 768px) {
    .form-box {
      padding: 20px;
    }

    .banner-section h1 {
      font-size: 1.8rem;
    }
  }

    @media (max-width: 768px) {
      .aifa-image {
        margin-bottom: 30px;
      }
	  .banner-form {
      margin-top: 15px;
    }
	.form-body {
    background: #8e4afd !important;
    padding: 4%;
    text-align: center;
    border-radius: 15px;
    margin-top: 0%;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 6%;
    max-width: 100%;
    border: 1px solid #efefef;
    margin: auto;
}
    .choose-section {
        padding: 56px 0 0;
        height: auto;
       
    }
	.choose-section .choose_content {
    padding-left: 0px!important;
    margin-top: 95px;
}
    }


