/* Import Albert Sans Font */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Albert Sans', sans-serif;
  color: #1E293B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.8s ease-in;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  padding:1.5rem1rem;  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1050;
}

.navbar-brand img {
  height: 60px;
}
ul.navbar-nav li {
    padding: 0 7px;
}
.navbar .nav-link {
  color: #1E293B;
  font-weight: 500;
  font-size: 16px;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #6B7FED;
}

.navbar .phone-link {
  color: #1E293B;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: color 0.2s ease;
}

.navbar .phone-link:hover {
  color: #6B7FED;
}

.navbar .phone-link i {
  margin-right: 0.35rem;
  font-size: 16px;
}

.navbar .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
}

/* Sidebar (offcanvas) menu */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 2000;
  padding: 2rem 1.5rem;
}

.offcanvas-menu.open {
  right: 0;
}

.offcanvas-menu .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #1E293B;
  cursor: pointer;
}

.offcanvas-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.offcanvas-menu ul li {
  margin-bottom: 1rem;
}

.offcanvas-menu ul li a {
  color: #1E293B;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.offcanvas-menu ul li a:hover {
  color: #6B7FED;
}

.offcanvas-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1990;
}

.offcanvas-overlay.show {
  display: block;
}

/* Hide default collapse on mobile */
@media (max-width: 991px) {
  .navbar .collapse {
    display: none !important;
  }
}

/* Hero Section */
/* --------------------------------------------
   HERO BASE
--------------------------------------------- */
.hero-section {
  padding: 5rem 0 3rem;
  position: relative;
  position: relative; overflow: visible; background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url(images/bg.webp);
}

/* --------------------------------------------
   TOP LABEL (white pill)
--------------------------------------------- */
.hero-section .text-muted {
  display: flex;
  background: #fff;
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto 20px;
  border:1px solid #E2E8F0;
  width: fit-content;
  color: #000000 !important;
  margin-bottom: 35px;
}

/* --------------------------------------------
   MAIN TITLE WITH GRADIENT
--------------------------------------------- */
.hero-section .hero-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 20px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #6A73F5 0%, #02B7A4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------
   BRUSH UNDERLINE (EXACT STYLE)
--------------------------------------------- */
.hero-section .hero-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 180px;                   /* adjust width */
  height: 14px;
  background-image: url("images/line.png");
  background-repeat: no-repeat;
  background-size: contain;
}

/* --------------------------------------------
   SUBTITLE
--------------------------------------------- */
.hero-section .hero-subtitle {
  font-size: 18px;
  color: #36393c;
  max-width: 700px;
  margin: 20px auto 35px; /* extra space to match screenshot */
  line-height: 1.6;
}

/* --------------------------------------------
   BUTTON (GRADIENT LIKE REFERENCE)
--------------------------------------------- */
.hero-section .btn-dark {
  background: linear-gradient(90deg, #2BC8FF, #5C6BFF);
  padding: 0.65rem 0.65rem;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.hero-section .btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.20);
}

/* --- FLOATING ICON STYLES --- */
.icon-floating {
  position: absolute;
  width: 80px;
  /* Increased icon size */
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  /* Placeholder for 3D/colored icons */
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Define the movement for the icons */
@keyframes float-animation-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(15px, -25px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes float-animation-2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-15px, 20px) rotate(1deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes float-animation-3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -15px) rotate(-2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes float-animation-4 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-10px, 25px) rotate(3deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Customizing icon positions and background for the dark theme */
.icon-1 {
  /* Left Top Chat Icon */
  top: 120px;
  left: 20%;
  background-image: url(images/icon1.webp);
  animation: float-animation-1 8s ease-in-out infinite alternate;
}

.icon-2 {
  top: 100px;
  right: 15%;
  background-image: url(images/icon2.webp);
  animation: float-animation-2 7s ease-in-out infinite alternate;
}

.icon-3 {
  top: 365px;
  right: 30%;
  background-image: url(images/icon4.webp);
  animation: float-animation-3 9s ease-in-out infinite alternate reverse;
}

.icon-4 {
  top: 365px;
  left: 30%;
  background-image: url(images/icon3.webp);
  animation: float-animation-4 9s ease-in-out infinite alternate reverse;
}

/* Video Container */
.video-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.video-container .video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 12, 40, 0.12);
}

.video-container .video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.video-container .video-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #6B7FED;
  cursor: pointer;
  transition: all 0.25s ease;
  padding-left: 3px;
  box-shadow: 0 12px 30px rgba(107,127,237,0.12);
}

.video-container .video-wrapper .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-wrapper img {
  width: 100%;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 36px;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Popup Styles */
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  max-width: 800px;
  width: 90%;
}

.video-popup iframe {
  width: 100%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 32px;
  color: white;
  cursor: pointer;
}



/* Section Labels & Titles */
.section-label {
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
    border:1px solid #E2E8F0;
    width: fit-content;
  font-weight: 600;
  margin: 0 auto;
  letter-spacing: 1.2px;
  padding: 8px 18px ;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.2;
  background: linear-gradient(90deg, #6A73F5 0%, #02B7A4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, rgba(241, 240, 255, 0.3) 0%, rgba(241, 240, 255, 0.1) 100%);
  padding: 6rem 0 4rem;
  background-image: url(images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748B;
}

.about-section .btn-outline-secondary {
  border: 2px solid #64748B;
  color: #64748B;
  font-weight: 600;
  font-size: 14px;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.about-section .btn-outline-secondary:hover {
  background: #1E293B;
  border-color: #1E293B;
  color: white;
}

/* About pill label (overrides .section-label when in about) */
.about-section .section-label {
  display: inline-block;
  background: #fff;
  color: #111827;
  padding: 8px 18px;
  border-radius: 999px;
  border:1px solid #E2E8F0;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 1.25rem;
}

/* Slightly larger, colorful section title for about */
.about-section .section-title {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* Stat Cards */


.stat-card {
  background: #e9e9ea;
  padding: 1.25rem 1.25rem 1.75rem 1.25rem;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.3s ease, color 0.25s ease;
  border: 1px solid rgba(15, 23, 42, 0.04);
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: #0b1220;
}

.stat-card:hover {
  box-shadow: 0 18px 40px rgba(11, 22, 60, 0.06);
  background: linear-gradient(180deg, #6B7FED 0%, #06B6D4 100%);
  color: #fff;
}

.stat-card .stat-label {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  transition: color 0.25s ease;
}

.stat-card .stat-number {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: inherit;
  transition: color 0.25s ease, transform 0.25s ease;
}

.stat-card:hover h2 {
    font-size: 45px;
}
/* ensure separator tone softens on hover (so it doesn't clash) */
.stat-card:not(:last-child)::after {
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.stat-card:hover:not(:last-child)::after {
  opacity: 0.6;
  filter: blur(4px) saturate(1.1);
}

/* vertical gradient separator on the right of card (visible between cards) */
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 12px;
  width: 12px;
  height: calc(100% - 24px);
  background: linear-gradient(180deg, rgba(107,127,237,0.35) 0%, rgba(168,85,247,0.35) 50%, rgba(6,182,212,0.35) 100%);
  border-radius: 6px;
  filter: blur(6px);
}

/* make sure parent row allows overflow for separators to show */
.about-section .row { overflow: visible; }
/*home page services section styles*/
.homeservice-card {
  background: #F3F2F2;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  transition: all 0.35s ease;
  height: 100%;
}

.homeservice-card .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: left ;
  justify-content: start;
  margin: auto 0;
  transition: all 0.3s ease;
}

/* Hover → Gradient background */
.homeservice-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: linear-gradient(90deg, #6A73F5 0%, #02B7A4 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/* Icon wrapper */
.homeservice-card .service-icon i{
  font-size: 36px;
  color: #6B7FED;
  transition: color 0.3s ease;
}

/* Icon color change on hover */
.homeservice-card:hover .service-icon i {
  color: #ffffff;
}

/* Title */
.homeservice-card .service-title {
  font-size: 19px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.homeservice-card:hover .service-title {
  color: #ffffff;
}

/* Text */
.homeservice-card .service-text {
  color: #64748B;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.homeservice-card:hover .service-text {
  color: #e8f4ff;
}

/* Link */
.homeservice-card .service-link {
  color: #6B7FED;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.homeservice-card:hover .service-link {
  color: #ffffff;
}

.homeservice-card:hover .service-link i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.homeservice-card:hover .service-link i {
  color: #ffffff;
}



/* Services Section */
.services-section {
  padding: 5rem 0;
  background: white;
}
.service-card {
  background: #F3F2F2;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  transition: all 0.35s ease;
  height: 100%;
}

/* Hover → Gradient background */
.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: linear-gradient(90deg, #6A73F5 0%, #02B7A4 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

/* Icon wrapper */
.service-card .service-icon i{
  font-size: 36px;
  color: #fff;
  transition: color 0.3s ease;
}

/* Icon color change on hover */
.service-card:hover .service-icon i {
  color: #ffffff;
}

/* Title */
.service-card .service-title {
  font-size: 19px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #ffffff;
}

/* Text */
.service-card .service-text {
  color: #64748B;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-text {
  color: #e8f4ff;
}

/* Link */
.service-card .service-link {
  color: #6B7FED;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card:hover .service-link {
  color: #ffffff;
}

.service-card .service-link i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-link i {
  color: #ffffff;
}

/* Process Section */
.process-section {
  background: linear-gradient(180deg, rgba(241, 240, 255, 0.2) 0%, rgba(241, 240, 255, 0.05) 100%);
  padding: 5rem 0;
}

.process-steps .process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.process-steps .process-step:last-child {
  margin-bottom: 0;
}

.process-steps .process-step .step-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(107, 127, 237, 0.15);
}

.process-steps .process-step .step-icon i {
  font-size: 24px;
  color: #6B7FED;
}

.process-steps .process-step .step-content h5 {
  font-size: 17px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.process-steps .process-step .step-content p {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.process-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.process-image img {
  max-width: 75%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.process-steps .process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0rem !important;
  align-items: flex-start;
  border-bottom: 2px solid #a8a8a8;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(79, 172, 254, 0.1);
}

.process-step.active {
   background: 
      linear-gradient(white, white) padding-box,
      linear-gradient(135deg, #544FF8 0%, #544FF8 100%) border-box;
  border-bottom: 3px solid transparent;
  border-radius: 0px;
  color: white;
}

.process-step.active i {
  color: white;
}

.step-icon {
  font-size: 28px;
  color: #4facfe;
}

.step-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.step-content p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.process-image img {
  width: 100%;
  border-radius: 12px;
  transition: opacity 0.5s ease;
}


/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: white;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(107, 127, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(107, 127, 237, 0.1);
}

.testimonial-card .testimonial-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.4;
}

.testimonial-card .testimonial-content .testimonial-text {
  color: #64748B;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .testimonial-content .testimonial-author {
  color: #1E293B;
  font-weight: 600;
  font-size: 15px;
}

.testimonial-card .testimonial-content .testimonial-author small {
  color: #64748B;
  font-weight: 400;
}

.testimonial-card .testimonial-avatars {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-card .testimonial-avatars .testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
  background:linear-gradient(99deg, #150428 0%, #30085c 24%, #12082A 100%);
  background-repeat: no-repeat;
  background-position: right;
  padding: 6rem 0 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-section .contact-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-section .contact-title .text-gradient {
  background: linear-gradient(90deg, #8B5CF6 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section .text-light {
  opacity: 0.8;
  font-size: 15px;
}

.contact-section .contact-info h5 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1rem;
}

.contact-section .contact-info p {
  font-size: 18px;
  line-height: 1.7;
}

.contact-info img {
  width: 100%;
  border-radius: 10px;
}

.contact-section .contact-form-wrapper {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  padding: 2.5rem;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-section .contact-form-wrapper h5 {
  font-size: 20px;
  font-weight: 700;
}

.contact-section .contact-form-wrapper p {
  font-size: 14px;
  opacity: 0.8;
}

.contact-section .contact-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.95rem 1.25rem;
  border-radius: 12px;
  font-size: 14px;
}

.contact-section .contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-section .contact-form .form-control,
.contact-section .contact-form .form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 14px;
}

.contact-section .contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(107,127,237,0.9);
  color: white;
  box-shadow: 0 8px 24px rgba(107,127,237,0.08);
}

.contact-section .contact-form .form-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px;
  font-size: 15px;
  background: transparent;
  outline: none;
  border-radius: 8px;
  transition: all 0.18s ease;
}

.contact-section .contact-form .form-input:focus {
  border-color: rgba(107,127,237,0.9);
  box-shadow: 0 8px 24px rgba(107,127,237,0.08);
}

.contact-section .contact-form .form-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-section .btn-gradient {
  background: linear-gradient(90deg, #007bff, #00bcd4);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-section .btn-gradient:hover {
  background: linear-gradient(90deg, #0056b3, #0097a7);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(107, 127, 237, 0.3);
}

/* Buttons Global */
.btn {
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
  }

  .hero-section .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0 2rem;
  }

  .hero-section .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-section .contact-title {
    font-size: 36px;
  }

  .contact-section .contact-form-wrapper {
    padding: 1.75rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .stat-card {
    margin-bottom: 1rem;
  }

  .icon-floating {
    display: none;
  }
}

/* Banner Section */
.banner-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2f44a1 0%, #3c257b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.15"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.banner-section .section-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.banner-section .section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.banner-section .section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .banner-section {
    padding: 3rem 0;
  }
  
  .banner-section .section-title {
    font-size: 36px;
  }
  
  .banner-section .section-subtitle {
    font-size: 16px;
  }
}

/* Value Cards */
.value-card {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 127, 237, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.value-icon i {
  font-size: 36px;
  color: white;
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.mission-vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(107, 127, 237, 0.15);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-box i {
  font-size: 28px;
  color: white;
}

.mission-vision-card:hover .icon-box {
  transform: scale(1.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107, 127, 237, 0.15);
}

.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
}

.team-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1E293B;
}

.team-card .text-muted {
  font-size: 14px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.social-links a i {
  font-size: 16px;
}

/* Feature Icons */
.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 24px;
  color: white;
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1E293B;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item-icon i {
  font-size: 20px;
  color: white;
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.contact-item-content h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1E293B;
}

.contact-item-content p {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

.contact-info-card .social-links h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1E293B;
}

.contact-info-card .social-icons {
  display: flex;
  gap: 0.75rem;
}

.contact-info-card .social-icons a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-card .social-icons a:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.contact-info-card .social-icons a i {
  font-size: 18px;
}

/* Contact Detail Icons */
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  font-size: 20px;
  color: white;
}

/* Service Detail Cards */
.service-detail-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1E293B;
  display: flex;
  align-items: center;
}

.service-detail-card h4 i {
  font-size: 24px;
  margin-right: 0.5rem;
}

.service-detail-card p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-detail-card .service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-detail-card .service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: #475569;
}

.service-detail-card .service-features i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 16px;
}

.service-detail-card h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1E293B;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags .badge {
  font-size: 12px;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: none;
}

/* Services Page Styles */

/* Service Card */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.service-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1E293B;
}

.service-card p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: #475569;
}

.service-features i {
  color: #10b981;
  margin-right: 0.5rem;
  font-size: 16px;
}

/* Technology Card */
.tech-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.tech-icon i {
  font-size: 24px;
  color: white;
}

.tech-card:hover .tech-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
}

.tech-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1E293B;
}

.tech-card p {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* Process Card */
.process-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.process-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1rem;
  transition: all 0.3s ease;
}

.process-icon i {
  font-size: 20px;
  color: white;
}

.process-card:hover .process-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
}

.process-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1E293B;
}

.process-card p {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* BG Gradient Section */
.bg-gradient {
  background: linear-gradient(135deg, #2f44a1 0%, #3c257b 100%);
}

/* Phone Link */
.phone-link {
  color: #1E293B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #667eea;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 64px;
    height: 64px;
  }
  
  .service-icon i {
    font-size: 24px;
  }
  
  .service-card h4 {
    font-size: 20px;
  }
  
  .tech-card,
  .process-card {
    padding: 1.5rem;
  }
  
  .tech-icon,
  .process-icon {
    width: 48px;
    height: 48px;
  }
  
  .tech-icon i,
  .process-icon i {
    font-size: 20px;
  }
}

/* Footer */
.footer {
  background: #1A0734;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-logo p {
  font-size: 14px;
}

.footer .footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 0.75rem;
}

.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer .footer-links li a:hover {
  color: white;
}

.footer .footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer .social-icons {
  display: flex;
  gap: 0.75rem;
}

.footer .social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background: #6B7FED;
  transform: translateY(-3px);
}

.footer .social-icons a i {
  font-size: 18px;
}

.footer .footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}

.footer .footer-link-small {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer .footer-link-small:hover {
  color: white;
}

/* Buttons Global */
.btn {
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
  }

  .hero-section .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0 2rem;
  }

  .hero-section .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .contact-section .contact-title {
    font-size: 36px;
  }

  .contact-section .contact-form-wrapper {
    padding: 1.75rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .stat-card {
    margin-bottom: 1rem;
  }

  .icon-floating {
    display: none;
  }
  .reponsive-about-stats{
    display: block;
  }
  .reponsive-about-stats .col-3{
    margin-bottom: 1.5rem;
    width: 100%;
}
  .reponsive-about-stats .col-3 .stat-card{
    text-align: center;
    height: 150px;
    min-height: 150px;
  }
}

.bg-gradient {
    background: #221f3d;
}