body{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* background-color: #000; */
  overflow-x: hidden;
}

/* Base Navbar - transparent background */
.navbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Frosted glass effect when scrolled */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Default nav-link style */
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #ffffff !important;
  padding: 8px 12px;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

/* Change text color when scrolled */
.navbar.scrolled .nav-link {
  color: #002645 !important;
}

/* Hover underline animation using ::before */
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s ease-in-out;
}

.nav-link:hover::before {
  width: 100%;
}

/* Optional button consistency */
.btn-danger {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 5px;
}

   .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: 80px;
      color: white;
      text-align: center;
    }

    .hero-section video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .animate-text-reveal {
      opacity: 1 !important;
      animation: fadeInUp 0.6s ease forwards;
    }

    .glow-effect::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background-color: #002645;
      filter: blur(30px);
      opacity: 0.5;
      z-index: -1;
    }

    .opacity-0 {
      opacity: 0;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-delay-200 { animation-delay: 0.2s; }
    .animate-delay-300 { animation-delay: 0.3s; }
    .animate-delay-400 { animation-delay: 0.4s; }
    .animate-delay-500 { animation-delay: 0.5s; }
  
   /* Font */
@import url('https://fonts.googleapis.com/css2?family=YourFontFamily:wght@300;400;600;700&display=swap');

:root {
  --dark-blue: #002645;
  --red: #dc3545;
  --cyan-blue: #11B5E4;
  --white: #ffffff;
  --white-translucent: rgba(255, 255, 255, 0.8);
}

.process-step {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(17, 181, 228, 0.4);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #002645;
}

.process-step .icon-circle {
  background-color: #002645;
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}
 .icon-circle {
    background-color: #002645;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
    width: 64px;
    height: 64px;
  }

  .process-step:hover .icon-circle {
    background-color: #ffffff;
    color: #002645;
  }

  .process-step:hover .icon-circle .icon-inside {
    color: #002645;
  }

  .icon-inside {
    color: #ffffff;
    transition: color 0.3s;
  }
.process-step:hover {
  background: #002645;
  border-color: rgba(220, 53, 69, 0.8);
  color: #ffffff;
  transform: translateY(-5px);
}

.process-step:hover h3,
.process-step:hover p {
  color: #ffffff !important;
}

.process-step:hover .icon-circle {
  background-color: #ffffff;
  color: #002645;
}

.text-gradient-primary {
  background: linear-gradient(to right, #dc3545, #dc3545);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.animate-fade-in {
  opacity: 1 !important;
  transition: opacity 0.5s ease;
}

.opacity-0 {
  opacity: 0;
}


/* Features Section Styles */

 
#features {
  @apply py-5 bg-white;
}

#features .container {
  @apply mx-auto px-4;
}

#features .text-center {
  @apply text-center mb-5;
}

#features .features-title {
  @apply opacity-0;
}

#features .features-title.text-danger {
  color: hsl(var(--destructive));
  @apply fw-bold text-2xl sm:text-3xl md:text-4xl; 
}

#features .features-title.text-primary-emphasis {
  color: hsl(var(--primary));
  @apply mt-3 mx-auto max-w-3xl;
}

#features .row {
  @apply flex flex-wrap gap-4;
}

#features .col-sm-6 {
  @apply w-full sm:w-1/2 lg:w-1/3;
}

.feature-card {
  @apply bg-primary p-4 rounded-4 shadow-lg text-white relative h-full cursor-pointer;
  background-color: hsl(var(--primary));
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 0.25);
  height: 100%;
  cursor: pointer;
}

.feature-card .icon-wrapper {
  @apply inline-flex items-center justify-center p-3 rounded-full border border-white/50 mb-3 bg-white bg-opacity-10;
}

.feature-card .icon-wrapper i {
  @apply text-white text-xl;
}

.feature-card h4 {
  @apply font-semibold;
}

.feature-card p {
  @apply text-white/50 text-sm mt-2;
}



#featureModal .modal-content {
  @apply bg-primary text-white;
  background-color: hsl(var(--primary));
}

#featureModal .modal-header .modal-title {
  color: hsl(var(--destructive));
}

#featureModal .btn-close {
  filter: invert(1);
}

#featureModal .btn-danger {
  @apply bg-destructive text-destructive-foreground;
  background-color: hsl(var(--destructive));
  color: hsl(var(--destructive-foreground));
}

 @keyframes textReveal {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    } 

    
 #services {
      padding: 4rem 0;
    }

    .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 1.5rem;
    }

    h2 {
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      color: #2563eb;
      margin-bottom: 2rem;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 768px) {
      .service-grid {
        grid-template-columns: 1fr;
      }
    
    }

    .service-card {
      position: relative;
      padding: 1.5rem;
      border-radius: 1rem;
      background-color: white;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.5s, filter 0.5s;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-0.75rem) scale(1.05);
      z-index: 1;
    }
.service-card h4,p:hover{
  color: #ffffff;
}
    .service-card .overlay {
      position: absolute;
      inset: 0;
      transform: scale(0);
      transform-origin: top right;
      transition: transform 0.5s;
      z-index: 0;
    }

    .service-card:hover .overlay {
      transform: scale(1);
    }

    .service-content {
      position: relative;
      z-index: 1;
      transition: color 0.5s;
    }

    .blurred {
      filter: blur(3px);
    }

    .view-more-btn {
      margin-top: 2.5rem;
      display: flex;
      justify-content: center;
    }

    .view-more-btn button {
      background-color: #11B5E4;
      color: white;
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      border: none;
      border-radius: 9999px;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }

    .view-more-btn button:hover {
      background-color: #0d99c5;
    }
 
.testimonial-card {
      border: 1px solid #11B5E4;
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 2rem;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .testimonial-stars i {
      color: #dc3545;
    }
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .floating-buttons a, .floating-buttons button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      border: none;
    }
    .whatsapp-btn {
      background-color: #25d366;
    }
    .chatbot-btn {
      background-color: #0D3B66;
    }

    
 .partner-card {
      transition: all 0.3s ease;
      border: 1px solid rgba(17, 181, 228, 0.3);
    }
    .partner-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .partner-avatar {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border: 1px solid rgba(17, 181, 228, 0.4);
      background-color: white;
      padding: 4px;
      border-radius: 50%;
      margin-right: 1rem;
    }

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .floating-buttons {
    bottom: 80px;  /* move up to avoid overlapping with chatbot */
    left: 89%;
  }
}

/* Mobile (width less than 768px) */
@media screen and (max-width: 767px) {
  .floating-buttons {
    bottom: 100px; /* increase more space for Botpress widget */
    left: 75%;
  }
}
    ::placeholder {
      color: #1d4ed8e6 !important;
      opacity: 1;
    }

    #contact h2 {
      color: #002645;
      text-align: left;
    }

    #techList span {
      /* display: inline-block; */
      background-color: #002645;
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      margin-right: 5px;
      margin-bottom: 5px;
      font-size: 14px;
      cursor: pointer;
    }

    #contact .form-container {
      background-color:#ffffff; /* light blue */
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    #submitBtn {
      background-color: #dc3545;
      border-color: #dc3545;
    }

    #submitBtn:hover {
      background-color: #bb2d3b;
      border-color: #b02a37;
    }
    
.footer-custom {
   background-color: #002645;
  color: white;
  
  width: 100vw; /* Ensure it spans full screen width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 20px 30px;
}

.footer-custom a {
  color: white;
  text-decoration: none;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 4;
  min-width: 220px;
}
.footer-custom a:hover {
  text-decoration: underline;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  /* background-color: white; */
  color: #002645;
  transition: all 0.3s ease;
}

/* Social-specific hover colors */
.social-icon.twitter:hover { color: #1DA1F2; background-color: white; }
.social-icon.linkedin:hover { color: #0077B5; background-color: white; }
.social-icon.facebook:hover { color: #1877F2; background-color: white; }
.social-icon.instagram:hover { color: #E1306C; background-color: white; }
.social-icon.youtube:hover { color: #FF0000; background-color: white; }
.social-icon.medium:hover { color: #12100E; background-color: white; }
.social-icon.quora:hover { color: #B92B27; background-color: white; }

.footer-links li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #0D6EFD;
}

.footer-contact li {
  /* margin-bottom: 8px; */
  color: #ccc;
  /* line-height: 2px; */
}
.footer-custom .row {
  display: flex;
  justify-content: center;
  gap: 10%;
  flex-wrap: wrap;
  padding: 0 15px;
}

.footer-custom .col-md-2,
.footer-custom .col-md-5 {
  flex: 0 0 auto;
  width: auto;
  max-width: 292px;
}

.footer-contact .icon {
  color: #0D6EFD;
  margin-right: 8px;
}

.google-map {
  width: 260px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  /* margin-top: 7px; */
  border: 1px solid #ccc;
}

.footer-bottom p,
.footer-legal a {
  color: #aaa;
}

.footer-legal a:hover {
  color: #0D6EFD;
}
