
        :root {
            --primary: #FF3366;
            --secondary: #1A2B4C;
            --accent: #FFD166;
            --light: #F7F7F7;
            --dark: #333333;
            --gray: #A0A0A0;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--light);
        }
        
        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: 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%;
        }
        .dropdown:hover > .dropdown-menu {
            display: block;
            margin-top: 0;
        }
        .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);
        }
        
        .hero {
            background-color: var(--secondary);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background-color: rgba(255, 51, 102, 0.1);
            transform: rotate(45deg);
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .hero h1 span {
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
        }
        
        .contact-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #e1e1e1;
            margin-bottom: 20px;
            padding: 10px 15px;
            font-size: 16px;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: none;
        }
        
        textarea.form-control {
            height: 150px;
            resize: none;
        }
        
        .contact-info-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-info {
            flex-grow: 1;
        }
        
        .contact-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .contact-info p {
            margin-bottom: 0;
            color: var(--gray);
        }
        
        .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);
        }
        
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-info-card {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .hero {
                padding: 60px 0;
            }
            
            .contact-section {
                padding: 50px 0;
            }
        }
  .loading-spinner {
        display: none;
        margin-left: 10px;
    }
    
    .alert {
        margin-top: 20px;
    }