
        :root {
            --primary: #FF3366;
            --secondary: #1A2B4C;
            --tertiary: #FFD166;
            --background: #F7F7F7;
            --text-dark: #333333;
            --text-light: #F7F7F7;
            --gray-accent: #A0A0A0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: var(--background);
            line-height: 1.6
        }
        /* Header Styles */
          .navbar {
            background-color: white;
            padding: 15px 0;
        }
        .navbar .active{
            color: var(--primary) !important;
        }
        .logo {
  height: 40px;      
  width: auto;       
  display: block;     
}
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
        }
         .nav-link {
            font-weight: 600;
            color: var(--dark);
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
            transition: all 0.3s ease;
        }
        .nav-link:hover:after {
            width: 100%;
        }
        
            .btn-primary {
            background-color: var(--primary);
            color: var(--text-light);
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .dropdown:hover > .dropdown-menu {
            display: block;
            margin-top: 0;
        }
        .btn-primary:hover {
            background-color: #e62958;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255, 51, 102, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background-color: var(--background);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--text-dark);
        }
        
        .hero-section .highlight {
            color: var(--primary);
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text-dark);
            max-width: 700px;
        }
        
        .geometric-shape {
            position: absolute;
            z-index: 0;
        }
        
        .shape-block {
            width: 300px;
            height: 400px;
            background-color: var(--secondary);
            transform: rotate(15deg);
            top: 10%;
            right:10%;
            opacity: 0.1; 
        }
        
        .shape-circle {
            width: 200px;
            height: 200px;
            background-color: var(--primary);
            border-radius: 50%;
            bottom: 2%;
            right: 5%;
            opacity: 0.1;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            color: var(--text-dark);
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 3rem;
            max-width: 800px;
        }
        
        /* Card Styles */
        .service-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
         .service-card .icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .service-card p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .service-card ul {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
        }
        
        .service-card ul li {
            padding: 0.5rem 0;
            color: var(--text-dark);
        }
        
        .service-card ul li i {
            color: var(--primary);
            margin-right: 0.5rem;
        }
        
        /* Benefits Cards */
        .benefit-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-color: var(--primary)
        }
            .benefit-card .icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .benefit-card h4 {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }
        
        .benefit-card p {
            font-size: 0.95rem;
            color: var(--text-dark);
        }
        
        /* Use Cases Section */
        .use-case-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .use-case-card h4 {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .use-case-card p {
            font-size: 1rem;
            color: var(--text-dark);
            line-height: 1.7;
        }
        
        /* Process Section */
        .process-section {
            background-color: var(--secondary);
            color: var(--text-light);
        }
        
        .process-section .section-title {
            color: var(--text-light);
        }
        
        .process-section .section-title::after {
            background-color: var(--primary);
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem;
        }
        
        .process-step .step-number {
            width: 70px;
            height: 70px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }
        
        .process-step h4 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.8rem;
            color: var(--text-dark);
        }
        
        .process-step p {
            font-size: 0.95rem;
            color: var(--text-dark);
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 5rem 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--text-light);
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        
        .btn-white-custom {
            background-color: white;
            color: var(--primary);
            border: none;
            padding: 0.8rem 2.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-white-custom:hover {
            background-color: var(--background);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
         /* Footer */
     .footer {
            background-color: var(--secondary);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 15px;
        }
        
        .footer ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 60px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
            
            .process-step {
                margin-bottom: 2rem;
            }
        }