
        :root {
            --primary: #FF3366;
            --secondary: #1A2B4C;
            --tertiary: #FFD166;
            --background: #F7F7F7;
            --text-dark: #333333;
            --text-light: #F7F7F7;
            --gray-accent: #A0A0A0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background);
            color: var(--text-dark);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .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);
            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(-2px);
        }
        .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);
        }
        .hero-section {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 100px 0;
        }
         .hero-section .highlight {
            color: var(--primary);
        }
        .section-title {
            position: relative;
            margin-bottom: 50px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(255, 51, 102, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .icon-box i {
            color: var(--primary);
            font-size: 24px;
        }
        
        .stats-section {
            background-color: var(--secondary);
            color: var(--text-light);
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--tertiary);
        }
        
        .cta-section {
            padding: 80px 0;
            background-color: var(--primary);
            color: var(--text-light);
        }
        
      .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);
        }
        
        .check-list {
            list-style: none;
            padding-left: 0;
        }
        
        .check-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }
        
        .check-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        .global-service-img {
            height: 100%;
            min-height: 250px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }
        
        @media (max-width: 767.98px) {
            .global-service-img {
                height: 200px;
                margin-top: 20px;
            }
        }