
        :root {
            --primary: #FF3366;
            --secondary: #1A2B4C;
            --tertiary: #FFD166;
            --light: #F7F7F7;
            --dark: #333333;
            --gray: #A0A0A0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e62e5c;
            border-color: #e62e5c;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
        }
        
        .btn-outline-light {
            color: white;
            border-color: white;
            border-radius: 0;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
        }
        
        /* Header */
        .navbar {
            background-color: var(--light);
            padding: 15px 0;
        }
        .navbar .active{
            color: var(--primary) !important;
        }
        /* .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 24px;
            
        } */
        
        /* .navbar-brand span {
            color: var(--primary);
        } */
        .logo {
        height: 40px;      
        width: auto;       
        display: block;     
        }

        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            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%;
        }
        .dropdown:hover > .dropdown-menu {
            display: block;
            margin-top: 0;
        }
        /* Hero Section */
        .hero {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 30px;
        }
        
        .hero-content h1 span {
            color: var(--primary);
        }
        
        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
        
        .hero-shape {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-color: var(--secondary);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
            z-index: -1;
        }
        #sphere-container {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

@media (max-width: 991px) {
    #sphere-container {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 40px;
    }
}
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
        }
           .service-card {
            background-color: white;
            padding: 30px;
            border-radius: 0;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:nth-child(odd) {
            background-color: #f0f0f0;
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 51, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .service-icon i {
            color: var(--primary);
            font-size: 30px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
     
.process {
    padding: 100px 0;
    background-color: var(--secondary);
    color: var(--light);
    position: relative;
}

.process .section-title h2 {
    color: var(--light);
}

.process-card {
    position: relative;
    margin-bottom: 30px;
    height: 100%;
}

.process-card-inner {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.process-card-inner:hover {
    background-color: rgba();
    transform: translateY(-10px);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .process-card {
        margin-bottom: 20px;
    }
}
 /* How We Work Section */
  .how-we-work {
    background-color: #0d1b2a; /* dark navy background */
    position: relative;
  }

  .how-we-work h2 {
    position: relative;
    display: inline-block;
    border-bottom: 3px solid var(--primary); /* orange underline */
    padding-bottom: 5px;
  }

  .timeline {
    position: relative;
    margin-top: 40px;
  }

  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary);
    transform: translateX(-50%);
  }

  .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
  }

  .timeline-item.left {
    justify-content: flex-start;
  }

  .timeline-item.right {
    justify-content: flex-end;
    text-align: right;
  }

  .timeline-content {
    background-color: var(--secondary);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 20px;
    width: 45%;
  }

  .timeline-item.right .timeline-content {
    border-left: none;
    border-right: 3px solid var(--primary);
  }

  .timeline-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 20px;
  }

  @media (max-width: 768px) {
    .timeline::before {
      left: 8px;
    }

    .timeline-item {
      flex-direction: column;
      align-items: flex-start;
      text-align: left !important;
    }

    .timeline-content {
      width: 100%;
      border-right: none !important;
      border-left: 3px solid #ff7f00;
    }

    .timeline-number {
      margin-bottom: 10px;
    }
  }

        /* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    min-width: 70px;
    height: 70px;
    background-color: rgba(255, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.benefit-icon i {
    color: var(--primary);
    font-size: 28px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-content p {
    margin-bottom: 0;
}
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background-color: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-circle {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
        }
        
        /* Footer */
        .footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 80px 0 0;
        }
        
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 28px;
            color: white;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        .footer-about {
            margin-bottom: 30px;
        }
        
        .footer h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer h4:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            bottom: -10px;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-contact {
            margin-bottom: 30px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .footer-contact-icon {
            color: var(--primary);
            font-size: 20px;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .social-icons {
            display: flex;
            margin-top: 30px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        .social-icon i {
            color: white;
            font-size: 18px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 50px;
        }
        
        .footer-bottom p {
            margin: 0;
        }
        
        .footer-bottom-links {
            text-align: right;
        }
        
        .footer-bottom-links a {
            color: var(--light);
            margin-left: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-connector {
                display: none;
            }
            
            .footer-bottom-links {
                text-align: left;
                margin-top: 15px;
            }
            
            .footer-bottom-links a {
                margin-left: 0;
                margin-right: 20px;
            }

        }
        
        @media (max-width: 1000px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero-shape {
                display: none;
            }
            
            .hero-circle {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
        }