
        :root {
            --primary-color: #1a365d;
            --secondary-color: #e63946;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            --gradient-secondary: linear-gradient(135deg, #e63946 0%, #ff7b8c 100%);
            --gradient-accent: linear-gradient(135deg, #2a9d8f 0%, #76c893 100%);
            --gradient-purple: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            --gradient-gold: linear-gradient(135deg, #ff9a00 0%, #ffd700 100%);
        }
        
        .modal {
            overflow: auto !important;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            background-color: #f5f7fa;
            scroll-padding-top: 220px;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            font-size: 14px;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .nav-link.btn-primary-custom.btn-custom:hover, .nav-link.btn-primary-custom.btn-custom:focus{
            color: #fff !important;
        }
        .hero-section {
            min-height: 100vh;
            background: var(--gradient-primary);
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .feature-1 .feature-icon {
            background: var(--gradient-secondary);
            color: white;
        }
        
        .feature-2 .feature-icon {
            background: var(--gradient-accent);
            color: white;
        }
        
        .feature-3 .feature-icon {
            background: var(--gradient-purple);
            color: white;
        }
        
        .feature-4 .feature-icon {
            background: var(--gradient-gold);
            color: white;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .feature-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .btn-custom {
            padding: 10px 20px !important;
            border-radius: 50px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
            color: white;
        }
        
        .btn-secondary-custom {
            background: var(--gradient-secondary);
            color: white;
        }
        
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
            color: white;
        }
        
        .btn-accent-custom {
            background: var(--gradient-accent);
            color: white;
        }
        
        .btn-accent-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42, 157, 143, 0.2);
            color: white;
        }
        
        .btn-purple-custom {
            background: var(--gradient-purple);
            color: white;
        }
        
        .btn-purple-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
            color: white;
        }
        
        .btn-gold-custom {
            background: var(--gradient-gold);
            color: white;
        }
        
        .btn-gold-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 154, 0, 0.2);
            color: white;
        }
        
        .image-container {
            top:95px;
            position: sticky;
            overflow: hidden;
            border-radius: 15px;
            /* height: 100%; */
        }
        
        .animate-image {
            /* position: relative;
            overflow: hidden;
            border-radius: 15px;
            transform: translateX(100%);
            opacity: 0;
            height: 100%; */
        }
        
        .animate-image.active {
            transform: translateX(0);
            opacity: 1;
        }
        
        .image-container img {
            width: 100%;
            /* height: 100%; */
            display: block;
            object-fit: cover;
        }
        
        .flywheel-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .flywheel-flow {
            position: relative;
            margin: 0 auto;
        }
        
        .flow-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                rgba(52, 152, 219, 0.2) 0%,
                rgba(52, 152, 219, 0.4) 50%,
                rgba(52, 152, 219, 0.2) 100%);
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .flow-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, 
                var(--primary-color),
                var(--accent-color));
            animation: progress 8s ease-in-out infinite;
        }
        
        @keyframes progress {
            0%, 100% { width: 0; }
            25% { width: 25%; }
            50% { width: 50%; }
            75% { width: 75%; }
            90% { width: 100%; }
        }
        
        .flow-dots {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            z-index: 2;
        }
        
        .flow-dot {
            width: 20px;
            height: 20px;
            background: white;
            border: 3px solid rgba(52, 152, 219, 0.3);
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .flow-dot.active {
            border-color: var(--primary-color);
            background: var(--primary-color);
            box-shadow: 0 0 0 5px rgba(52, 152, 219, 0.1);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(52, 152, 219, 0); }
            100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
        }
        
        .flow-steps {
            position: relative;
            z-index: 3;
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }
        
        .flow-step {
            width: 23%;
            position: relative;
        }
        
        .step-card {
            background: white;
            border-radius: 20px;
            padding: 1.2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                var(--primary-color),
                var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .step-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .step-card:hover::before {
            opacity: 1;
        }
        
        .step-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .step-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(52, 152, 219, 0.1);
            line-height: 1;
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-number {
            color: rgba(52, 152, 219, 0.2);
            transform: scale(1.1);
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-icon {
            transform: rotate(360deg) scale(1.1);
        }
        
        .step-body h4 {
            color: var(--primary-color);
            font-size: 1.2rem;
            line-height: 1.6rem;
            margin-bottom: 1rem;
            min-height: 2.5em;
        }
        
        .step-body p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .step-arrow {
            position: absolute;
            top: 50%;
            right: -25px;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 4;
            transition: all 0.3s ease;
        }
        
        .step-arrow.cycle-arrow {
            right: -30px;
            background: var(--accent-color);
            color: white;
            animation: spin 3s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: translateY(-50%) rotate(0deg); }
            100% { transform: translateY(-50%) rotate(360deg); }
        }
        
        .cycle-indicator {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
        }
        
        .cycle-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .cycle-content i {
            color: var(--accent-color);
            font-size: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .cycle-content span {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .advantage-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, 
                var(--primary-color),
                var(--accent-color),
                var(--primary-color));
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .modal-trendy {
            border-radius: 20px;
            overflow: hidden;
            border: none;
        }
        
        .modal-trendy .modal-header {
            background: var(--gradient-primary);
            color: white;
            border-bottom: none;
            padding: 1.5rem 2rem;
        }
        
        .modal-trendy .modal-body {
            padding: 2rem;
        }
        
        .modal-trendy .modal-footer {
            border-top: none;
            padding: 1.5rem 2rem;
            background: #f8f9fa;
        }
        
        .form-control-custom {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .form-control-custom:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(42, 157, 143, 0.25);
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .resource-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .resource-icon {
            min-width: 60px;
            height: 60px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
        }
        
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
        }
        
        .mouse {
            width: 25px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            position: relative;
        }
        
        .wheel {
            width: 4px;
            height: 8px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }
        
        @keyframes scroll {
            0% { top: 8px; opacity: 1; }
            100% { top: 20px; opacity: 0; }
        }
        
        .audience-selector {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .audience-btn {
            flex: 1;
            min-width: 120px;
        }
        
        .inspiration-form-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .upload-box {
            border: 2px dashed #ddd;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .upload-box:hover {
            border-color: var(--accent-color);
            background-color: rgba(42, 157, 143, 0.05);
        }
        
        .upload-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        .upsc-sec ul{
            list-style: disc !important;
        }
        .confirmation-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .confirmation-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .confirmation-box {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            max-width: 500px;
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.5s ease;
        }
        
        .confirmation-overlay.active .confirmation-box {
            transform: translateY(0);
        }
        
        .confirmation-icon {
            font-size: 4rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        
        .form-feedback {
            display: none;
            padding: 10px;
            border-radius: 5px;
            margin-top: 10px;
        }
        
        .form-feedback.success {
            display: block;
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-feedback.error {
            display: block;
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid var(--accent-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .btn-with-spinner {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .split-line {
            overflow: hidden;
        }
        
        /* Validation Styles */
        .form-label.required::after {
            content: " *";
            color: var(--secondary-color);
        }
        
        .form-label.optional::after {
            content: " (Optional)";
            color: #6c757d;
            font-size: 0.85em;
            font-weight: normal;
        }
        
        .error {
            color: var(--secondary-color);
            font-size: 0.875em;
            margin-top: 0.25rem;
            display: block;
        }
        
        input.error, select.error, textarea.error {
            border-color: var(--secondary-color) !important;
        }
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            min-width: 300px;
            border-radius: 10px;
            padding: 15px 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification.success {
            background-color: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }
        
        .notification.error {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }
        
        .notification.info {
            background-color: #d1ecf1;
            color: #0c5460;
            border-left: 4px solid #17a2b8;
        }
        
        .notification .close-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 15px;
        }
        
        @media (max-width: 1200px) {
            .flow-steps {
                flex-wrap: wrap;
                gap: 2rem;
            }
            
            .flow-step {
                width: 48%;
            }
            
            .flow-line {
                display: none;
            }
            
            .step-arrow {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
           font-size: 1.8rem;
        line-height: 1.4;
            }
            .hero-section .btn, .btn {
                width: 100%;
                text-align: center;
            }
            .btn-secondary-custom.btn-custom.me-3{
                margin-bottom: 10px !important;
                margin-right: 0px !important;
            }
            .section-title {
                font-size: 1.5rem;
            }
            
            .hero-subtitle, .section-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .audience-btn {
                min-width: 100%;
            }
            .lead {
    font-size: 1.1rem;
    font-weight: 300;
}
            
            .flow-step {
                width: 100%;
            }
            
            .flow-steps {
                flex-direction: column;
                gap: 2rem;
            }
            
            .step-card {
                padding: 1.5rem;
                text-align: center;
            }
            .step-body h4{
                min-height: auto;
            }
            .advantage-card h3{
                font-size: 22px;
                line-height: 1.5;
            }
            .advantage-card {
                padding: 2rem;
            }
            
            .cycle-indicator {
                position: relative;
                bottom: 0;
                margin-top: 2rem;
            }
            
            .notification {
                left: 20px;
                right: 20px;
                min-width: auto;
            }
        }
        
        @media (max-width: 576px) {
            .flywheel-section {
                padding: 3rem 0;
            }
            
            .step-header {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .step-icon {
                margin: 0 auto;
            }
            
            .advantage-card {
                padding: 1.5rem;
            }
        }

        /* Additional styles for expanded sections */
.feature-card ul,
.feature-card ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card ul li,
.feature-card ol li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.feature-card .card {
    transition: all 0.3s ease;
}

.feature-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.text-muted {
    color: #6c757d !important;
}

.fst-italic {
    font-style: italic !important;
}

.small {
    font-size: 0.875rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.alert {
    border-radius: 10px;
    border: none;
}

.alert-info {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0a58ca;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #997404;
}

/* Process steps styling */
.text-center.p-3.border.rounded {
    transition: all 0.3s ease;
    height: 100%;
}

.text-center.p-3.border.rounded:hover {
    background-color: rgba(26, 54, 93, 0.05);
    border-color: var(--primary-color) !important;
}

/* Responsive adjustments for expanded content */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h5 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card .card {
        margin-bottom: 1rem;
    }
    
    .row .col-md-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card h5 {
        font-size: 1rem;
    }
    
    .feature-card ul,
    .feature-card ol {
        padding-left: 1rem;
    }
}


/* Read More/Less Button Styles */
.read-more-btn {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.read-more-btn:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateY(2px);
}

.collapsible-content {
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Smooth transition for expand/collapse */
.collapsible-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments for collapsible sections */
@media (max-width: 768px) {
    .read-more-btn {
        font-size: 0.9rem;
    }
    
    .collapsible-content .row .col-md-4 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .read-more-btn {
        font-size: 0.85rem;
    }
    
    .collapsible-content .alert {
        padding: 0.75rem;
    }
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(238 80 94) !important;
}
.resource-card .btn-primary{
    background-color: transparent !important;
    color: #000 !important;
    border-color: #1a365d !important;
}


/* Footer Enhanced Styles */
.footer {
    background: linear-gradient(145deg, #0d1b3e 0%, #1a365d 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: #e63946;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}

.footer-description {
    color: #b8c1ec;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Icons - Ultra Design */
.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.social-icons a:hover{
    transition: all 0.3s ease !important;
    
}
.social-icon {
    width:45px;
    height:45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon i {
    font-size: 1.2rem;
    transition: transform 0.5s ease;
    z-index: 2;
}



/* Individual Social Icon Colors & Hover Effects */
.twitter {
    color: #1da1f2;
}

.twitter:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #1a8cd8 100%);
    transform: translateY(-5px) scale(1.1);
   
}

.facebook {
    color: #1877f2;
}

.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    transform: translateY(-5px) scale(1.1);
}

.linkedin {
    color: #0077b5;
}

.linkedin:hover {
    background: linear-gradient(135deg, #0077b5 0%, #006da4 100%);
    transform: translateY(-5px) scale(1.1);
}

.instagram {
    color: #e4405f;
}

.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    transform: translateY(-5px) scale(1.1);
}

.youtube {
    color: #ff0000;
}

.youtube:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    transform: translateY(-5px) scale(1.1);
}

/* Hover Effects for All Social Icons */
.social-icon:hover {
    color: white !important;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon:hover .hover-text {
    opacity: 1;
    transform: translateY(-35px);
}

/* Footer Columns */
.footer-column {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e63946, transparent);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b8c1ec;
    text-decoration: none;
    padding: 0.1rem 0;
    border-radius: 6px;
    padding-left: 0.5rem;
    transition: all 0.3s ease !important;
}

.link-icon {
    color: #e63946;
    font-size: 1rem;
    transition: ease all 0.5s;
    opacity: 1;
       transition: all 0.3s ease; 

}

.footer-link:hover {
    color: white;
    /* background: rgba(255, 255, 255, 0.05); */
    /* padding-left: 1rem; */
    transform: translateX(5px);
    transition: all 0.3s ease;

}


/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: #8a94b3;
    font-size: 0.9rem;
}

.copyright .highlight {
    color: #e63946;
    font-weight: 500;
}

.footer-extra {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.extra-link {
    color: #8a94b3;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.extra-link:hover {
    color: white;
}

.divider {
    color: #4a5568;
}

/* Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 10%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%);
}

.element-3 {
    width: 150px;
    height: 150px;
    bottom: 50%;
    right: 20%;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.05) 0%, transparent 70%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }
    
    .footer-extra {
        justify-content: center;
        margin-top: 1rem;
    }
}