:root {
    --primary-blue: #1976d2;
    --secondary-blue: #2196f3;
    --accent-blue: #64b5f6;
    --dark-gray: #424242;
    --light-gray: #757575;
    --bg-gray: #f5f5f5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    --gradient-secondary: linear-gradient(135deg, #64b5f6 0%, #1976d2 100%);
    --shadow-primary: 0 10px 40px rgba(25, 118, 210, 0.2);
    --shadow-hover: 0 20px 60px rgba(25, 118, 210, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.18);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
  }
  
  /* Remove text decoration from all links */
  a,
  a:hover,
  a:focus,
  a:active {
    text-decoration: none !important;
  }

  /* Solutions Section */
  .solutions-section {
    padding: 6rem 0;
    background-color: var(--bg-gray);
    position: relative;
    overflow: hidden;
  }

  .solutions-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .solutions-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }

  .solutions-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
  }

  .solutions-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

  /* Solution Card */
  .solution-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    position: relative;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-blue);
  }

  .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
  }

  .solution-card.premium {
    /* Additional premium styles can go here */
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
  }

  .premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
  }

  .solution-header {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 200px;
  }

  .solution-image {
    width: 100%;
    height: 100%;
  }

  .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .solution-card:hover .solution-image img {
    transform: scale(1.05);
  }

  .solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--gradient-primary);
  }

  .solution-icon i {
    font-size: 4rem;
    color: white;
    transition: all 0.3s ease;
  }

  .solution-card:hover .solution-icon i {
    transform: scale(1.1);
  }

  .solution-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
  }

  .solution-description {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .solution-features {
    margin-bottom: 1.5rem;
  }

  .feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--light-gray);
  }

  .feature-row i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
    font-size: 0.9rem;
  }

  .solution-content {
    padding: 0.5rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .solution-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
  }

  .solution-description {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    font-size: 0.9rem;
    color: #555;
  }

  .solution-features {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .feature-row {
    margin: 0.15rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .feature-row {
    margin: 0.15rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .feature-row i {
    color: var(--primary-blue);
    margin-right: 0.35rem;
    font-size: 0.8em;
    position: relative;
    top: 0.2em;
    line-height: 1;
  }

  .solution-footer {
    padding: 0 1.25rem 1rem;
    margin-top: 0.5rem;
  }

  /* Custom button styles that work with Bootstrap */
  .btn-solution {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    text-transform: none;
    transition: all 0.2s ease;
    line-height: 1.5;
  }

  .btn-solution i {
    transition: transform 0.2s ease;
  }

  .btn-solution:hover i {
    transform: translateX(3px);
  }

  /* Responsive Adjustments */
  @media (max-width: 1199.98px) {
    .solutions-section {
      padding: 5rem 0;
    }
  }

  @media (max-width: 991.98px) {
    .solutions-section .section-title {
      font-size: 2.2rem;
    }
    
    .solution-header {
      height: 180px;
    }
  }

  @media (max-width: 767.98px) {
    .solutions-section {
      padding: 4rem 0;
    }
    
    .solutions-section .section-title {
      font-size: 2rem;
    }
    
    .solution-card {
      margin-bottom: 2rem;
    }
  }

  @media (max-width: 575.98px) {
    .solutions-section .section-title {
      font-size: 1.8rem;
    }
    
    .solutions-section .section-subtitle {
      font-size: 1.1rem;
    }
    
    .solution-content {
      padding: 1.5rem;
    }
    
    .solution-title {
      font-size: 1.3rem;
    }
  }
  
  /* Navigation Styles */
  .navbar-custom {
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    padding: 0;
    overflow: visible;
  }
  
  .navbar-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background: white;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  
  .navbar-custom .container {
    position: relative;
    height: 100%;
  }
  
  .navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand-custom {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 60px 15px 30px;
    margin-left: -15px;
    background: white;
    text-decoration: none !important;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    outline: none;
  }
  
  .navbar-brand-custom:hover {
    text-decoration: none !important;
  }
  
  /* Mobile Menu Button - FIXED */
  .mobile-menu-btn {
    border: none !important;
    padding: 0.75rem !important;
    font-size: 1.5rem;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1051;
  }
  
  .mobile-menu-btn:focus {
    box-shadow: none !important;
    outline: none !important;
  }
  
  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }
  
  /* Hamburger Icon Color Management */
  .hamburger-icon {
    color: white !important;
    transition: color 0.3s ease;
    font-size: 1.5rem;
  }
  
  /* When navbar is scrolled (white background) */
  .navbar-custom.scrolled .hamburger-icon {
    color: var(--primary-blue) !important;
  }
  
  /* Mobile Menu Content - IMPROVED */
  .mobile-menu-content {
    background: white;
    margin-top: 1rem;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(25, 118, 210, 0.1);
  }
  
  .mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--dark-gray) !important;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .mobile-nav-link:hover {
    color: var(--primary-blue) !important;
    padding-left: 1rem;
    text-decoration: none !important;
  }
  
  .mobile-nav-link:last-of-type {
    border-bottom: none;
  }
  
  /* Desktop Navigation Links */
  .nav-link-custom {
    color: white !important;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    text-decoration: none !important;
    font-size: 0.9rem;
    border: 1px solid transparent;
    background: transparent;
    position: relative;
    z-index: 1;
  }
  
  .nav-link-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link-custom.active {
    background: var(--primary-blue);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    transform: translateY(-2px);
  }
  
  .nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
  }
  
  .navbar-custom.scrolled .nav-link-custom {
    color: var(--dark-gray) !important;
  }
  
  .navbar-custom.scrolled .nav-link-custom:hover {
    background: rgba(25, 118, 210, 0.1);
    color: var(--primary-blue) !important;
  }
  
  .navbar-custom.scrolled .nav-link-custom.active {
    background: var(--primary-blue);
    color: white !important;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  }
  
  .navbar-custom.scrolled .nav-link-custom.active::after {
    background: white;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 0;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .animated-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  
  .dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  .dot:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }
  .dot:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
  }
  .dot:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
  }
  .dot:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
  }
  
  @keyframes pulse {
    0%,
    100% {
      opacity: 0.3;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.5);
    }
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    color: white;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .title-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #e3f2fd;
  }
  
  .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
  }
  
  .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e3f2fd;
  }
  
  .feature-item i {
    color: #4fc3f7;
    font-size: 1rem;
  }
  
  /* Hero Buttons - IMPROVED */
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* Improved Carousel */
  .carousel-container {
    position: relative;
    height: 500px;
    perspective: 1000px;
  }
  
  .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    opacity: 0.3;
    z-index: 1;
  }
  
  .carousel-slide.active {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.05);
    opacity: 1;
    z-index: 3;
  }
  
  .carousel-slide.prev {
    transform: translateX(-20%) translateZ(-100px) rotateY(15deg) scale(0.95);
    opacity: 0.7;
    z-index: 2;
  }
  
  .carousel-slide.next {
    transform: translateX(20%) translateZ(-100px) rotateY(-15deg) scale(0.95);
    opacity: 0.7;
    z-index: 2;
  }
  
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    border-radius: 20px;
  }
  
  .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    z-index: 4;
  }
  
  .floating-card.top-right {
    top: 1rem;
    right: 1rem;
    animation: bounce 2s infinite;
  }
  
  .floating-card.bottom-left {
    bottom: 1rem;
    left: 1rem;
    /* animation: float 3s ease-in-out infinite; */
  }
  
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .text-content {
    transition: all 0.5s ease;
  }
  
  .text-content.transitioning {
    opacity: 0;
    transform: translateY(30px);
  }
  
  /* Modern Buttons */
  .btn-primary-custom {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  }
  
  .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    color: var(--primary-blue);
    text-decoration: none !important;
  }
  
  .btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
  }
  
  /* Slide Indicators */
  .slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .indicator.active {
    background: white;
    width: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
  }
  
  .indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
  }
  
  /* Stats Section */
  .stats-section {
    position: relative;
    margin-top: 0;
    z-index: 20;
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  /* Enhanced Modern Stat Cards */
  .stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(25, 118, 210, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(25, 118, 210, 0.15);
  }
  
  .stat-card:hover::before {
    transform: scaleX(1);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .stat-icon i {
    color: white;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .stat-label {
    color: var(--light-gray);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
  
  /* Enhanced Modern Service Cards */
  .services-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  }
  
  .service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(25, 118, 210, 0.05);
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(25, 118, 210, 0.15);
  }
  
  .service-card.premium {
    border: 2px solid var(--primary-blue);
    position: relative;
  }
  
  .service-card.premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
  }
  
  .service-header {
    padding: 3rem 2.5rem 1.5rem;
    position: relative;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .service-card:hover .service-icon {
    transform: scale(1.05) rotate(3deg);
  }
  
  .service-icon i {
    color: white;
    font-size: 2rem;
  }
  
  .premium-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
  }
  
  .service-content {
    padding: 0 2.5rem;
    flex-grow: 1;
  }
  
  .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .service-description {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  
  .service-features {
    margin-bottom: 2rem;
  }
  
  .feature-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
  }
  
  .feature-row i {
    color: #4caf50;
    font-size: 0.9rem;
    width: 16px;
  }
  
  .service-footer {
    padding: 1.5rem 2.5rem 2.5rem;
  }
  
  .btn-service {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    font-size: 1rem;
  }
  
  .btn-service.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
  }
  
  .btn-service.outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
  }
  
  .btn-service:hover {
    transform: translateY(-2px);
    text-decoration: none !important;
  }
  
  .btn-service.primary:hover {
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    color: white;
  }
  
  .btn-service.outline:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
  }
  
  /* Enhanced Modern Testimonial Cards */
  .testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  }
  
  .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(25, 118, 210, 0.05);
    height: 100%;
    position: relative;
  }
  
  .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(25, 118, 210, 0.15);
  }
  
  .testimonial-card:hover::before {
    transform: scaleX(1);
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid rgba(25, 118, 210, 0.1);
  }
  
  .testimonial-author h5 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
  
  .testimonial-author p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
  }
  
  .testimonial-quote {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
  }
  
  .testimonial-content {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
  }
  
  .testimonial-rating {
    display: flex;
    gap: 0.25rem;
  }
  
  .testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
  }
  
  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(25, 118, 210, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(25, 118, 210, 0.2);
  }
  
  .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  
  .btn-cta {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .btn-cta.primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  }
  
  .btn-cta.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .btn-cta:hover {
    transform: translateY(-3px);
    text-decoration: none !important;
  }
  
  .btn-cta.primary:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    color: var(--primary-blue);
  }
  
  .btn-cta.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }
  
  .trust-section {
    text-align: center;
  }
  
  .trust-section p {
    color: #e3f2fd;
    margin-bottom: 1rem;
  }
  
  .trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* Footer */
  .footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 0;
  }
  
  .footer-main {
    padding-bottom: 2rem;
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-brand .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .footer-brand span {
    font-weight: bold;
    font-size: 1.25rem;
  }
  
  .footer-description {
    color: #999;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none !important;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    text-decoration: none !important;
  }
  
  .footer-section h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: #999;
    text-decoration: none !important;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: white;
    text-decoration: none !important;
  }
  
  .footer-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #999;
  }
  
  .footer-contact i {
    color: var(--primary-blue);
    width: 20px;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    margin-top: 2rem;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-bottom-links a {
    color: #999;
    text-decoration: none !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: white;
    text-decoration: none !important;
  }
  
  /* RESPONSIVE DESIGN - IMPROVED */
  
  /* Large screens */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 3rem;
    }
  
    .hero-subtitle {
      font-size: 1.75rem;
    }
  
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  /* Medium screens */
  @media (max-width: 992px) {
    .hero-section {
      padding: 2rem 0;
      min-height: auto;
    }
  
    .hero-title {
      font-size: 2.5rem;
      text-align: center;
    }
  
    .hero-subtitle {
      font-size: 1.5rem;
    }
  
    .hero-description {
      text-align: center;
      max-width: 100%;
    }
  
    .hero-features {
      justify-content: center;
      text-align: center;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  
    .section-title {
      font-size: 2.25rem;
    }
  
    .cta-title {
      font-size: 2.25rem;
    }
  
    .carousel-container {
      height: 400px;
      margin-bottom: 2rem;
    }
  
    .stat-card {
      padding: 2rem 1.5rem;
    }
  
    .stat-icon {
      width: 60px;
      height: 60px;
    }
  
    .stat-number {
      font-size: 2.5rem;
    }
  
    .service-card {
      margin-bottom: 2rem;
    }
  
    .testimonial-card {
      margin-bottom: 2rem;
    }
  }
  
  /* Small screens */
  @media (max-width: 768px) {
    .navbar-custom::before {
      width: 280px;
    }
  
    .navbar-brand-custom {
      padding: 12px 50px 12px 25px;
    }
  
    .hero-section {
      padding: 1rem 0;
      text-align: center;
    }
  
    .hero-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
  
    .hero-subtitle {
      font-size: 1.25rem;
    }
  
    .hero-description {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
  
    .hero-features {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .btn-primary-custom,
    .btn-outline-custom {
      width: 100%;
      max-width: 280px;
      justify-content: center;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .section-subtitle {
      font-size: 1rem;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-description {
      font-size: 1rem;
    }
  
    .carousel-container {
      height: 300px;
      margin-bottom: 2rem;
    }
  
    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
  
    .btn-cta {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  
    .trust-badges {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-bottom-links {
      flex-direction: column;
      gap: 1rem;
    }
  
    .stats-section {
      padding: 3rem 0 4rem;
    }
  
    .stat-card {
      padding: 1.5rem 1rem;
    }
  
    .stat-number {
      font-size: 2rem;
    }
  
    .services-section,
    .testimonials-section {
      /* padding: 4rem 0; */
    }
  
    .service-header {
      padding: 2rem 1.5rem 1rem;
    }
  
    .service-content {
      padding: 0 1.5rem;
    }
  
    .service-footer {
      padding: 1rem 1.5rem 2rem;
    }
  
    .testimonial-card {
      padding: 1.5rem;
    }
  }
  
  /* Extra small screens */
  @media (max-width: 576px) {
    .navbar-custom::before {
      width: 250px;
    }
  
    .navbar-brand-custom {
      padding: 10px 40px 10px 20px;
    }
  
    .navbar-brand-custom img {
      height: 50px !important;
    }
  
    .hero-badge {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
    }
  
    .hero-title {
      font-size: 1.75rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  
    .hero-description {
      font-size: 0.95rem;
    }
  
    .feature-item {
      justify-content: center;
      font-size: 0.85rem;
    }
  
    .stats-section {
      padding: 2rem 0 3rem;
    }
  
    .stat-card {
      padding: 1.25rem 0.75rem;
    }
  
    .stat-icon {
      width: 50px;
      height: 50px;
    }
  
    .stat-icon i {
      font-size: 1.5rem;
    }
  
    .stat-number {
      font-size: 1.75rem;
    }
  
    .stat-label {
      font-size: 0.9rem;
    }
  
    .section-title {
      font-size: 1.75rem;
    }
  
    .section-subtitle {
      font-size: 0.95rem;
    }
  
    .service-title {
      font-size: 1.25rem;
    }
  
    .service-description {
      font-size: 0.9rem;
    }
  
    .testimonial-header {
      flex-direction: column;
      text-align: center;
      margin-bottom: 1rem;
    }
  
    .testimonial-avatar {
      margin-right: 0;
      margin-bottom: 1rem;
    }
  
    .cta-title {
      font-size: 1.75rem;
    }
  
    .cta-description {
      font-size: 0.95rem;
    }
  
    .carousel-container {
      height: 250px;
    }
  
    .floating-card {
      padding: 0.5rem 0.75rem;
      font-size: 0.8rem;
    }
  
    .mobile-menu-content {
      padding: 1.5rem;
    }
  
    .mobile-nav-link {
      font-size: 1rem;
      padding: 0.75rem 0;
    }
  }
  
  /* Ultra small screens */
  @media (max-width: 480px) {
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  
    .hero-title {
      font-size: 1.5rem;
    }
  
    .hero-subtitle {
      font-size: 1rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .cta-title {
      font-size: 1.5rem;
    }
  
    .carousel-container {
      height: 200px;
    }
  
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-cta {
      padding: 0.875rem 1.5rem;
      font-size: 0.9rem;
    }
  
    .stat-card {
      padding: 1rem 0.5rem;
    }
  
    .service-header {
      padding: 1.5rem 1rem 0.5rem;
    }
  
    .service-content {
      padding: 0 1rem;
    }
  
    .service-footer {
      padding: 0.75rem 1rem 1.5rem;
    }
  }
  