       :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #FF2E2E;
            --light: #f8f9fa;
            --dark: #212529;
            --gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        }
        body {
        font-family: 'Poppins', sans-serif;
        }
        .gradient-bg {
            background: #0dcaf0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-brand {
            font-weight: 900;
            font-size: 1.9rem;
            /* background: var(--gradient); */
            /* -webkit-background-clip: text; */
            -webkit-text-fill-color: transparent;
        }
        
        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            color: #555 !important;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        
        /* .nav-link:hover, .nav-link.active {
            color: var(--accent) !important;
        } */
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--gradient-accent);
            color: white !important;
            border-radius: 50px;
            padding: 10px 25px !important;
            margin-left: 15px;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 46, 46, 0.3);
        }
        
        .nav-cta::after {
            display: none;
        }
        .hero-image {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        .hero-section {
            padding: 150px 0 100px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary-custom {
            background: var(--accent);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background: #fff;
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-primary-custom-serv {
            background: var(--accent);
            border: none;
            padding: 6px 15px;
            border-radius: 50px;
            font-weight: 400;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom-serv:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .navbar {
            background: white !important;
            transition: none !important;
        }

        .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: rgb(252 1 1);
}

        .section-title {
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        /* Base styling */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient hover background */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  transform: scale(0);
  transition: all 0.5s ease;
  z-index: 0;
  border-radius: 50%;
}

.service-card:hover::before {
  transform: scale(1);
}

.service-card * {
  position: relative;
  z-index: 1;
}

/* Hover lift effect */
.service-card:hover {
  transform: translateY(-12px);
  color: #fff;
}

.custom-omr-icon {
  width: 1.2em;
  height: 1.2em;
  color: #4facfe !important; /* takes text color */
}
/* Icon wrapper */
/* .icon-wrapper {
  font-size: 2.5rem;
  color: #4facfe;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.2);
  color: #fff;
} */

/* Button */
.btn-custom {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card:hover .btn-custom {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

/* Typography */
.service-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: rgba(106, 17, 203, 0.1);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-icon i, .service-icon svg {
            font-size: 2.8rem;
            color: #0dcaf0;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon i, 
        .service-card:hover .service-icon svg {
            color: white;
        }
        
        .service-card h4 {
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: #222;
            font-size: 1.5rem;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        
        .btn-service {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            background: transparent;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            font-size: 1rem;
        }
        
        .service-card:hover .btn-service {
            background: var(--gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3);
        }
/* .service-icon svg {
  width: 3rem;
  height: 3rem;
  color: #4facfe; 
  transition: all 0.3s ease;
} */

/* On hover (like <i class="fas ...">) */
/* .service-card:hover .service-icon svg {
  color: #fff;
  transform: scale(1.2);
} */
/* Responsive tweaks */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }
}
        
        .gif-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .gif-container:hover {
            transform: scale(1.03);
        }
        
        .testimonial-card {
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
            height: 100%;
        }
        
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }
        /* Business Value Section */
        .value-section {
            background: white;
        }
        
        .value-card {
            background: #fff;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 5px solid var(--primary);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(106, 17, 203, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .value-icon i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .value-card h4 {
            font-weight: 800;
            margin-bottom: 1rem;
            color: #222;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.7;
        }
        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: bottom;
            opacity: 0.2;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta {
            background: white;
            color: var(--primary);
            border: none;
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 800;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            font-size: 1.1rem;
        }
        
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        .btn-outline-light-custom {
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light-custom:hover {
            background: white;
            color: var(--primary);
            border-color: white;
            transform: translateY(-3px);
        }
        /* Footer */
        .footer {
            background: #1a1a2e;
            color: white;
            padding: 100px 0 40px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .footer h5 {
            margin-bottom: 25px;
            position: relative;
            font-weight: 800;
            font-size: 1.3rem;
        }
        
        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-icons a:hover {
            background: white;
            color: black;
            transform: translateY(-5px);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.show {
            opacity: 1;
        }
        
        /* Animation classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }
        
        .zoom-in.animate {
            opacity: 1;
            transform: scale(1);
        }
        
        .stagger-item {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .stagger-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }