           :root {
            --primary: #651d94;
            --primary-dark: #54187c;
            --secondary: #c54a8a;
            --secondary-light: #d56a9c;
            --text-dark: #2d3748;
            --text-light: #718096;
            --background: #f7fafc;
            --white: #ffffff;
            --logo-gradient: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--background);
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(101, 29, 148, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo img{
            width: 180px;
        }

        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--logo-gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: var(--logo-gradient);
            color: var(--white);
            padding: 12px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(101, 29, 148, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(101, 29, 148, 0.4);
        }
/* Hero Section Styles */

.hero {
    min-height: 100vh;
    background: 
        linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.85) 50%, 
            rgba(0, 0, 0, 0.85) 100%
        ),
        url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(101, 29, 148, 0.2);
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05); /* Lighter for dark background */
}

.shape-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
.shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }
.shape-3 { width: 150px; height: 150px; top: 30%; right: 25%; }


.hero-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.hero-badge {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    border: 2px solid;
    border-image: linear-gradient(135deg, #651d94 0%, #c54a8a 100%) 1;
    backdrop-filter: blur(10px);
    align-self: flex-start;
}

/* Alternative: Using background-clip for gradient border */
.hero-badge.background-clip {
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    color: white;
    position: relative;
    border: none;
}

.hero-badge.background-clip::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: 8px;
    z-index: -1;
}

.hero-badge.background-clip span {
     background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Alternative: Using box-shadow for gradient border effect */
.hero-badge.shadow-border {
    border: none;
    box-shadow: 0 0 0 2px #651d94, 0 0 0 4px #c54a8a;
}


.hero-badge i {
    color: #c54a8a;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #2d3748;
}

.title-line {
    display: block;
    color:#ffffff;
}

.highlight {
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ffffff;
    max-width: 500px;
}
.typing-container {
    display: inline-block;
    position: relative;
}

.cursor {
    display: inline-block;
    width: 3px;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-visual {
    position: relative;
    height: 100%;
}

.visual-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /*height: 100%;*/
}
/* Features Grid */
.hero-features {
    margin-top: 30%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    max-width: 500px;
}


.feature-card {
    background: rgba(255, 255, 255, 0.10);
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid;
    border-image: linear-gradient(135deg, #651d94 0%, #c54a8a 100%) 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff; /* White text */
}
.feature-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8); /* Lighter white */
    margin: 0;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: white;
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(101, 29, 148, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(101, 29, 148, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid #651d94;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button.secondary:hover {
    background: #ffffff;
    color: #651d94;
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-elements {
    position: relative;
    height: 200px;
}
.floating-element {
    position: absolute;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    animation: floatElement 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(101, 29, 148, 0.4);
    z-index: 10;
    white-space: nowrap;
}
.element-1 { top: 10%; right: 30px; animation-delay: 0s; }
.element-2 { top: 25%; left: 5%; animation-delay: 1.5s; }
.element-3 { top: 70%; right: 35%; animation-delay: 3s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}
/*=========================================*/
/*==================Model==================*/
/*=========================================*/
/* Referral Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
    z-index: 9999;
    padding: 20px;
    overflow-y: auto; /* Enable scrolling for overlay */
}

.modal-container {
    background:rgba(1,1,1,0.8);
    color: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    margin: 20px auto; /* Center with margin */
    max-height: 90vh; /* Limit height */
    overflow: hidden; /* Prevent container scrolling */
}

.modal-content {
    max-height: calc(90vh - 60px); /* Account for padding */
    overflow-y: auto; /* Enable scrolling for content */
    padding-right: 10px; /* Space for scrollbar */
}

/* Scrollbar styling */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10; /* Ensure close button is above content */
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-title .highlight {
    color: #4ade80;
    text-shadow: 0 2px 10px rgba(74, 222, 128, 0.3);
}

.modal-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Referral Steps */
.referral-steps {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.referral-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.step-content-model {
    margin:5px 5px;
    background: rgba(0, 0, 0, 0.95);
    padding: 60px 25px 30px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border: none;
}
.step-content-model::before{
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s ease;
    border: 3px solid transparent;
    border-radius: 10px;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.step-content-model h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.step-content-model p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Referral Code */
.referral-code-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.referral-code-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.code-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

#referralCode {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    border: 2px solid transparent;
}

#referralCode:focus {
    outline: none;
    border-color: var(--primary);
}

.copy-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.reward-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reward-card:hover {
    transform: translateY(-5px);
}

.reward-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
}

.reward-icon.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.reward-icon.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
}

.reward-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
}

.reward-card h4 {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.reward-desc {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.email {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-terms {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 20px;
    line-height: 1.4;
}

/* Tertiary Button for Hero */
.cta-button.tertiary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.cta-button.tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* stats */
.user-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4ade80;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #3b82f6);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.referral-input-wrapper {
    position: relative;
}

/*.referral-note {
    display: block;
    color: #4ade80;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}*/
.referral-message {
    font-size: 12px;
    margin-top: 5px;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.referral-message.success {
    color: #27ae60;
    background: #e8f5e8;
    border-left: 3px solid #27ae60;
}

.referral-message.error {
    color: #e74c3c;
    background: #fdeded;
    border-left: 3px solid #e74c3c;
}

.referral-message.info {
    color: #3498db;
    background: #e8f4fd;
    border-left: 3px solid #3498db;
}

.referral-message.default {
    color: lightgreen;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
    }
    
    .modal-container {
        padding: 20px;
        margin: 10px auto;
        max-height: 95vh;
    }
    
    .modal-content {
        max-height: calc(95vh - 40px);
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .reward-card {
        min-height: 120px;
        padding: 15px 10px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .referral-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .referral-steps::before {
        display: none;
    }
    
    .code-container {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 15px;
        border-radius: 15px;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 0.8rem;
    }
    
    .step-content p {
        font-size: 0.7rem;
    }
}
/* Services Section with Professional Background */
.services {
    text-align: center;
    padding: 80px 20px;
    background: #ffffffe0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(101, 29, 148, 0.03) 0%, transparent 0%),
        radial-gradient(circle at 80% 20%, rgba(197, 74, 138, 0.03) 0%, transparent 0%),
        radial-gradient(circle at 40% 40%, rgba(101, 29, 148, 0.02) 0%, transparent 0%);
    pointer-events: none;
    height: 4px;
    background: var(--logo-gradient);
}
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(101, 29, 148, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(101, 29, 148, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--logo-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(101, 29, 148, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(101, 29, 148, 0.3);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}
.read-more{
    display: flex;
    justify-content: center;
    align-items: self-end;
    margin-top: 10px;
}

.read-more-btn {
    color: #651d94;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.07rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border:none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fa-service-arrow{
    margin-top:4px;
}
/* Tools Grid for service details */
#service-details-container {
    margin-top: 40px;
}

.service-detail {
    background: rgba(1, 1, 1, 0.9);
    padding: 60px 50px;
    box-shadow: 
        0 25px 50px rgba(101, 29, 148, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:-1px;
}


.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--logo-gradient);
    border-radius: 25px 25px 0 0;
}

.tool-svg-icon{
    width: 64px;
}

.detail-header {
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top:50px;
}

.detail-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.1;
}

.detail-description {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 180px));
    gap: 25px;
    margin: 40px 0;
    justify-content: start;
}

.tool-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(101, 29, 148, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.03);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    /*background: var(--logo-gradient);*/
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: transparent;
    box-shadow: 
        0 20px 40px rgba(101, 29, 148, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s ease;
}
.tools-img{
    width:90px;
}

.tool-card:hover .tool-icon {
    transform: scale(1.2);
}

.tool-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.3;
}

/* Enhanced Section Titles */
.section-title {
    font-size: 2.2rem;
    margin: 30px 0 30px 0;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--logo-gradient);
    border-radius: 2px;
}

/* Enhanced Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.service-features li {
    padding: 15px 20px 15px 50px;
    color: var(--text-dark);
    position: relative;
    background: rgba(101, 29, 148, 0.03);
    border-radius: 12px;
    border-left: 4px solid;
    border-image: var(--logo-gradient) 1;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(101, 29, 148, 0.08);
    transform: translateX(5px);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #c54a8a;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Category Sections */
.category-section {
    margin: 10px 0;
    padding: 40px 40px 5px 40px;
    background: linear-gradient(135deg, rgba(101, 29, 148, 0.02) 0%, rgba(197, 74, 138, 0.02) 100%);
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}
/* Enquire Form Section */
.enquire-section {
    text-align: center;
    padding: 80px 20px;
    background: rgba(1,1,1,1);
}

.enquire-container {
    max-width: 800px;
    margin: 0 auto;
}


.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--logo-gradient);
    border-radius: 2px;
    animation: expandCenterFixed 1.2s ease-out forwards;
    animation-delay: 0.5s;
}


@keyframes expandCenterFixed {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 150px;
        left: calc(50% - 75px); /* Center 80px border */
    }
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enquire-subtitle,.university-section-subtitle{
    text-align: center;
    font-size: 1.2rem;
    color:rgba(255,255,255,0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

}
.section-subtitle-detail{
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; 
}

.enquire-form {
    text-align: left;
    background: rgba(255,255,255,0.15);
    padding: 50px;
    box-shadow: 0 20px 60px rgba(101, 29, 148, 0.1);
    border: 1px solid rgba(101, 29, 148, 0.1);
    position: relative;
}

.enquire-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
    border-radius: 20px 20px 0 0;
}
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid transparent;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.15);
    color: white; /* Default text color */
    border-radius: 4px; /* Added for better gradient border appearance */
    position: relative;
}

/* Create gradient border using background-origin and background-clip */
.form-group input,
.form-group select,
.form-group textarea {
    background: 
        linear-gradient(135deg, e3dce700  0%, #c54a8a00 100%) border-box,
        rgba(255,255,255,0.15) padding-box;
    border: 2px solid transparent;
}

/* Focus state with enhanced gradient */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: 
        linear-gradient(135deg, #651d94 0%, #c54a8a 100%) border-box,
        rgba(255,255,255,0.2) padding-box;
    box-shadow: 0 0 0 3px rgba(101, 29, 148, 0.2);
    color: white; /* Ensure text stays white on focus */
}

/* White text color when user types */
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    color: white;
}

/* For select elements (they don't have placeholder) */
.form-group select {
    color: white;
}

/* Placeholder text color */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group select option {
    background: #2a2a2a;
    color: white;
}

.file-upload {
    position: relative;
    margin-bottom: 25px;
}

.file-upload input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Alternative method using pseudo-element for gradient border */
.form-group.alternative input,
.form-group.alternative select,
.form-group.alternative textarea {
    background: rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
}

.form-group.alternative input::before,
.form-group.alternative select::before,
.form-group.alternative textarea::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%);
    border-radius: 4px;
    z-index: -1;
}

.file-upload-btn {
    display: block;
    padding: 16px 20px;
    background:rgba(255,255,255,0.15);
    border: 2px dashed #d6bcfa;
    text-align: center;
    color:rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.file-upload-btn:hover {
    border-color: var(--primary);
    background: #f0e6ff;
}

.submit-btn {
    width: 100%;
    background: var(--logo-gradient);
    color: white;
    padding: 10px 18px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(101, 29, 148, 0.3);
}
.model-submit-btn{
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 29, 148, 0.4);
}
/* Validation Styles */
.form-input-wrapper {
    position: relative;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

input:invalid, textarea:invalid, select:invalid {
    border-color: #e74c3c !important;
}

input:valid, textarea:valid, select:valid {
    border-color: #27ae60 !important;
}

.file-names {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.privacy-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color:rgba(255,255,255,0.9);
}

   /* Trust Section */
/* Redesigned Trust Section */
.trust-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #111111, #111111);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(101, 29, 148, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(197, 74, 138, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-subtitle {
    font-size: 1.1rem;
    color:#ffffff;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flags-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.flags-track {
    display: flex;
    width: max-content;
    animation: slideInfinite 40s linear infinite;
}

.flag-card {
    width:250px;
    margin-left:5px;
    margin-right:5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(101, 29, 148, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: none;
}

.flag-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.flag-card:hover::before {
    left: 0;
}

.flag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(101, 29, 148, 0.15);
}

.flag-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flag-card:hover .flag-img {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.country-name {
    margin-top: 15px;
    font-weight: 600;
    color:rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.flags-slider-container:hover .flags-track {
    animation-play-state: paused;
}

/* Gradient overlay for fading edges */
.flags-slider-container::before,
.flags-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.flags-slider-container::before {
    left: 0;
}

.flags-slider-container::after {
    right: 0;
}

/* Stats Counter */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(101, 29, 148, 0.08);
    border: 3px solid;
    border-image: linear-gradient(135deg, #651d94 0%, #c54a8a 100%) 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge {
    background: rgba(255,255,255,0.8);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(101, 29, 148, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(101, 29, 148, 0.15);
}

.badge i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}
/* About Section */
.about {
    padding: 100px 20px;
    background: #FFFFFF;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    background: var(--logo-gradient);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 60px rgba(101, 29, 148, 0.3);
}

.about-image h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-image p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.signature {
    font-weight: 700;
    color: var(--primary);
    font-style: italic;
    font-size: 1.1rem;
}        
        /* Process Section */
.process {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(101, 29, 148, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 74, 138, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title.center-border::after {
    animation: expandCenterBorder 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes expandCenterBorder {
    0% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 30%;
        left: 35%;
    }
}
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-header {
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--logo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(101, 29, 148, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -15px auto 0;
    color: var(--primary);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(101, 29, 148, 0.15);
    border: 2px solid rgba(101, 29, 148, 0.1);
    transition: all 0.4s ease;
}

.step-content {
    margin:5px 5px;
    background: rgba(255,255,255,0.9);
    padding: 60px 25px 30px;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border: none;
}
.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    color:var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

.step-connector {
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(101, 29, 148, 0.3), 
        rgba(197, 74, 138, 0.3), 
        rgba(101, 29, 148, 0.3));
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Hover Effects */
.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(101, 29, 148, 0.4);
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(101, 29, 148, 0.25);
    background: var(--white);
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(101, 29, 148, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* Process CTA */
.process-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(101, 29, 148, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.process-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Animation for steps */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }

/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 80px 20px;
    background: var(--background);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    margin: 0 -15px;
}

.testimonials-track {
    display: flex;
    animation: slideInfinite 30s linear infinite;
    gap: 30px;
}

.testimonial-card {
    min-width: 400px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(101, 29, 148, 0.08);
    border-left: 4px solid;
    border-image: var(--logo-gradient) 1;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--logo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 3 - 30px * 3));
    }
}

/* Pause animation on hover */
.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}
.universities {
    text-align: center;
    padding: 80px 20px;
    background: rgba(1,1,1,1);
}
.universities-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.universities-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.universities-track {
    display: flex;
    width: max-content;
    animation: slideInfinite 35s linear infinite;
}

.university-card {
    flex: 0 0 auto;
    width: 220px;
    height: 140px;
    margin: 0 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.university-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(101, 29, 148, 0.4);
    box-shadow: 0 12px 25px rgba(101, 29, 148, 0.3);
}

.university-logo {
    height: 60px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.university-name {
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.3;
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.universities-slider-container:hover .universities-track {
    animation-play-state: paused;
}

/* Gradient overlay for fading edges */
.universities-slider-container::before,
.universities-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.universities-slider-container::before {
    left: 0;
}

.universities-slider-container::after {
    right: 0;
}

/* Footer Styles */
.footer {
    background:#000000;
    color: var(--white);
    padding: 70px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--logo-gradient);
    border-radius: 2px;
}

/* First Column - Logo & Description */
.footer-logo {
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--white);
}

.contact-item i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a:hover {
    color: var(--secondary-light);
    padding-left: 10px;
}

.footer-links li a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    color: var(--secondary);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links li a:hover::before {
    opacity: 1;
    left: -10px;
}

.refandearn p{
    margin-top:10px;
    color: #cbd5e0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.referral-btn {
    background: var(--logo-gradient);
    border: none;
    padding: 12px 18px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.referral-btn:hover {
    background: var(--primary-dark);
}

/* Social Links */
.social-links {
    margin:25px 0px;
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--logo-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(101, 29, 148, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: var(--secondary-light);
}
.bulk-header{
   margin-top: 5px;
   display: flex;
   align-items: center;
}
.bulk-order-card p {
    margin-top:5px;
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.95rem;
}
.bulk-contact a{
    color: #cbd5e0;
    font-size: 0.95rem;
    text-decoration: none;
}
/* service details */
/* Enhanced Stats Section */
.stats-section {
    margin: 40px 0;
    padding: 50px;
    background:rgba(1,1,1,1);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--logo-gradient);
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(101, 29, 148, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: none;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.4s ease;
    border: 2px solid transparent;
    border-radius: 10px;
    background: linear-gradient(135deg, #651d94 0%, #c54a8a 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(101, 29, 148, 0.15);
}
.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--logo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.achievement-badge{
    background: rgba(0,0,0,1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid;
    border-image: var(--logo-gradient) 1;
    font-weight: 600;
    color:rgba(255,255,255,0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.achievement-badge::before {
    content: '✓';
    color:var(--logo-gradient);
    font-weight: bold;
}
.expertise,.project-handle{
    text-align: center;
    margin:20px 40px;
}

.footer-legal a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: #4a5568;
}
.fa-icon-color{
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
/* Legal Page Specific Styles */
        /* Legal Main Content */


/* Legal Tabs Styling */
.legal-tabs-container {
    background: rgba(0, 0, 0, 1)!important;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.legal-tabs-container h1{
    display: flex;
    justify-content: center;
    margin-top: 0!important;
    padding-top: 20px;
}

.legal-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px 20px 30px 20px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.legal-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.legal-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.legal-tab:hover {
    background: rgba(67, 97, 238, 0.2);
    transform: translateY(-2px);
}

.legal-tab.active {
    background: var(--logo-gradient);
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.tab-content h3 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.tab-content p {
    margin-bottom: 1rem;
}

.tab-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tab-content li {
    margin-bottom: 0.5rem;
}

.policy-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.policy-section.active {
    display: block;
}
.highlight-box {
    background: rgba(101, 29, 148, 0.1);
    border-left: 4px solid;
    border-image: var(--logo-gradient) 1;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    border-right: 1px solid var(--card-border);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

th {
    background: var(--logo-gradient);
    color: white;
    font-weight: 600;
}

tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.legal-main {
    padding: 25px 0 0 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-lighter);
}

.policy-content {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    padding: 50px;
    margin-bottom:0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
    .hero {
        min-height: 90vh;
    }
     .hero-container {
        width:100%;
        grid-template-columns: 1fr;
        gap: 20px; /* Reduced from 40px */
        text-align: center;
    }
    .hero-content {
        order: -1;
        margin-top: 20px; /* Reduced from 50px */
    }
    .hero-content .hero-title{
        max-width: 800px;
        align-self:center;
        font-size: 2.5rem;
    }
    
    .hero-badge {
        align-self: center;
        margin-top: 80px;
    }
    .hero-subtitle{
        align-self: center;
        max-width:600px;
    }
    
    .visual-container {
        gap: 25px;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin:0 auto;
        margin-bottom: 20px;
    }    
    .floating-element {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content:center;
    }
}
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content .hero-title {
        font-size: 2.3rem;
        max-width: 700px;
    }
    
    .nav-links {
        display: none;
    }
    .process-steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-step {
        padding: 0;
    }
    
    .step-content {
        padding: 60px 20px 30px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .flag-card {
        width: 150px;
        margin: 0 10px;
    }
    
    .flags-slider-container::before,
    .flags-slider-container::after {
        width: 80px;
    }
    .flag-card {
        padding: 20px 15px;
    }
    
    .flag-img {
        width: 48px;
        height: 48px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -12px;
        left: 20px !important
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: left;
    }
    .service-detail {
        padding: 40px 20px;
    }
    .detail-header{
       padding: 0;
    }
     .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .tool-card {
        padding: 25px 15px;
    }
    
    .tool-icon {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    .legal-main {
        padding: 50px 0 0 0;
    }
    .legal-tabs {
        background: rgba(0, 0, 0, 1)!important;
        position: sticky;
        top: 0;
        z-index: 100;
        justify-content: flex-start; /* Align tabs to start for horizontal scroll */
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        padding: 25px 20px;
        margin-bottom: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .legal-tabs::-webkit-scrollbar {
        display: none; 
    }

    .legal-tab {
        flex-shrink: 0; 
        white-space: nowrap; 
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .policy-content {
        padding: 30px;
    }

    .page-title {
        font-size: 2.2rem;
    }
        .process {
        padding: 80px 20px;
    }
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .process-cta {
        padding: 30px 20px;
    }
    
    .process-cta p {
        font-size: 1.1rem;
    }
        .logo img{
        width:120px;
    }
    .hero-content .hero-title {
        font-size: 2.1rem;
        max-width: 500px;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    .section-subtitle,.enquire-subtitle,.trust-subtitle,.university-section-subtitle{
       margin-bottom: 20px;
    }

    
    .feature {
        width: 100%;
        max-width: 300px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }    
    .cta-button {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .stat {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-elements {
        height: 150px;
    }
    
    .floating-element {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    .services-grid,
    .process-steps,
     {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content:center;
    }
    /*.testimonials-grid*/
    .enquire-form {
        padding: 30px 25px;
    }
    .testimonial-card {
        min-width: 300px;
    }
    /*service-details*/
    .stats-section {
        margin: 30px 0;
        padding: 40px 20px;
        background:rgba(1,1,1,1);
        position: relative;
        overflow: hidden;
    }
    .expertise,.project-handle{
        text-align: center;
        margin:20px 15px;
    }
    .nav-container .cta-button{
        width: 150px;
        padding: 8px 0px;
    }
    
    @keyframes slideInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 3 - 30px * 3));
        }
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-container {
        padding: 0 15px;
        gap:0px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        margin-top: 80px;
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    .hero-features{
        margin-top:0px;
        margin:0px 10px 10px 10px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .flag-card {
        width: 130px;
        padding: 20px 10px;
    }
    
    .stat {
        padding: 12px 10px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    .hero-actions {
        display:flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        justify-content:center;
    }
    
    .floating-elements {
        height: 120px;
    }
    
    .floating-element {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-legal a:not(:last-child)::after {
        display: none;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer {
        padding: 50px 0 0;
    }
        .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    .policy-content {
        padding: 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    th, td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .services{
        padding:40px 20px;
    }
    .stats-title {
        font-size: 1.8rem;
    }
    .achievement-badges {
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x:scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .achievement-badges::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .stats-section {
        padding: 40px 15px;
    }
    .stats-subtitle,.enquire-subtitle{
        font-size: 1.1rem;
    }
    .process{
        padding:20px 20px;
    }
    .enquire-section{
        padding:40px 20px;
    }
    .testimonials{
        padding:40px 20px;
    }
    .testimonial-text{
       font-size: 0.9rem;
    }
    .trust-section{
        padding:40px 20px;
    }
    .about,.universities{
        padding:40px 20px;
    }
    .about-content h2{
        font-size: 1.5rem;
    }
    .about-content p{
        text-align: justify;
        text-justify: inter-word;text-justify: inter-word;
        word-spacing: -0.05em;
        letter-spacing: 0.01em;
    }
    .category-title {
    font-size: 1.4rem;
    text-align: center;
    }
    .cta-button .fa-rocket{
        display:none;
    }
}


