  
  
   *{
    padding:0;
    margin:0;
    box-sizing: border-box;
    object-fit: cover;
   }
  
  :root {
            --islamic-green: #3B82F6;
            --islamic-gold: #3B82F6;
            --dark-blue: #264653;

            --primary-green: #3B82F6;
            --light-green: #f0f9f4;
            --primary-orange: #e67e22;
            --light-orange: #fef6f0;
            --text-dark: #333 !important;
            --text-dark2: #666 !important;

             --primary-color: #0d5a7e;
            --secondary-color: #d4af37;
            --accent-color: #3B82F6;
            --light-bg: #f8f5f0;
            --dark-text: #1a2b3c;
            --medium-text: #6c757d;
        }


        
        .navbar-brand {
            font-weight: 700;
            color: var(--dark-blue) !important;
        }
        .navbar-brand .tagline {
            font-size: 0.75rem;
            color: var(--islamic-green);
            font-weight: normal;
            display: block;
            line-height: 1.2;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-blue) !important;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--islamic-green) !important;
            background-color: rgba(42, 157, 143, 0.08);
        }

        .navbar-nav .nav-link:hover{
            color: var(--islamic-green) !important;
        }
        /* Dropdown Styling */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 0.5rem 0;
            margin-top: 0.5rem !important;
        }
        .dropdown-item {
            padding: 0.6rem 1.5rem;
            color: #555;
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        .dropdown-item:hover {
            background-color: rgba(42, 157, 143, 0.1);
            color: var(--islamic-green);
            border-left-color: var(--islamic-green);
            padding-left: 1.8rem;
        }
        .dropdown-divider {
            margin: 0.5rem 0;
        }
        /* CTA Button */
        .btn-cta {
            background-color: var(--islamic-green) !important;
            border: none;
            color: white !important;
            font-weight: 600;
            padding: 0.5rem 1.5rem !important;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(42, 157, 143, 0.2);
        }
        .btn-cta:hover {
            background-color: #3B82F6 !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(42, 157, 143, 0.3);
        }
        /* Navbar Toggler */
        .navbar-toggler {
            border: none;
            padding: 0.25rem;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* Ensure navbar stays on top */
        .navbar {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
            background-color: white !important;
        }
        /* Responsive adjustments for dropdown in mobile */
        @media (max-width: 991.98px) {
            .dropdown-menu {
                box-shadow: none;
                border-radius: 0;
                border: none;
                padding-left: 1.5rem;
                background-color: #f9f9f9;
                margin-top: 0 !important;
            }
            .btn-cta {
                margin-top: 1rem;
                width: 100%;
                text-align: center;
            }
        }
        

        :root {
            --gold-primary: #3B82F6;
            --gold-secondary: #3B82F6;
            --islamic-green: #3B82F6 !important;
            --dark-bg: #0A0F1C;
            --dark-card: #1A2238;
            --text-light: #E2E8F0;
            --text-muted: #94A3B8;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            
           
        }

        .hero-section {
            background: linear-gradient(145deg, 
                var(--dark-bg) 0%,
                #111827 40%,
                #1a365d 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 7.8rem 0 ;
            padding-bottom: 160px !important;
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        
        .bg-secondary{
            background-color: #3B82F6 !important;
                color:white !important
        }
        /* Islamic Pattern Overlay */
        .islamic-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(46, 139, 87, 0.03) 0%, transparent 50%);
            z-index: 1;
        }
        
        /* Arabic Calligraphy Background */
        .arabic-text-bg {
            position: absolute;
            left:50%;
            top: 6%;
            transform: translateX(-50%);
            font-family: 'Scheherazade New', serif;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.4);
            z-index: 1;
            line-height: 1;
            white-space: nowrap;
            user-select: none;
        }
        
        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Badge */
        .trust-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--gold-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .trust-badge i {
            margin-right: 8px;
            font-size: 1rem;
        }
        
        /* Headline */
        .hero-headline {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--gold-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Sub-headline */
        .hero-subheadline {
            color: var(--text-muted);
            font-size: 1.20rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        
        /* Benefits Cards */
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2.5rem 0;
        }
        
        @media (max-width: 768px) {
            .benefits-container {
                grid-template-columns: 1fr;
            }
        }
        
        .benefit-card {
            background: rgba(26, 34, 56, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.25rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .benefit-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .benefit-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .benefit-icon i {
            color: var(--dark-bg);
            font-size: 1.2rem;
        }
        
        .benefit-text {
            font-weight: 500;
            color: var(--text-light);
        }
        
        /* CTA Buttons */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
            border: none;
            color: var(--dark-bg);
            font-weight: 600;
            padding: 1rem 2.2rem;
            border-radius: 10px;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            color: var(--dark-bg);
        }
        
        .btn-gold i {
            margin-right: 10px;
        }
        
        .btn-outline-light {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            border-color: var(--gold-primary);
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold-primary);
            transform: translateY(-3px);
        }
        
        /* Stats Section */
        .stats-section {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-primary);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        /* Right Side Illustration */
        .illustration-container {
            position: relative;
            z-index: 2;
        }
        
        .quran-illustration {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .quran-image {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
            border-radius: 20px;
            transform: perspective(1000px) rotateY(-10deg);
        }
        
        .floating-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }
        
        .floating-icon i {
            color: var(--gold-primary);
            font-size: 1.5rem;
        }
        
        .icon-1 {
            top: 20%;
            left: -30px;
            animation: float 6s ease-in-out infinite;
        }
        
        .icon-2 {
            bottom: 30%;
            right: -30px;
            animation: float 7s ease-in-out infinite 0.5s;
        }
        
        .icon-3 {
            bottom: 10%;
            left: 20%;
            animation: float 5s ease-in-out infinite 1s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-headline {
                font-size: 2.8rem;
            }
            
            .arabic-text-bg {
                display: none;
            }
            
            .illustration-container {
                margin-top: 3rem;
            }
            
            .stats-section {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero-headline {
                font-size: 2.2rem;
            }
            
            .hero-subheadline {
                font-size: 1.1rem;
            }
            
            .btn-gold, .btn-outline-light {
                padding: 0.9rem 1.8rem;
                font-size: 1rem;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .stats-section {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1.5rem;
            }
        }
        
        /* Cursor Animation */
        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 1em;
            background: var(--gold-primary);
            margin-left: 5px;
            animation: blink 1s infinite;
            vertical-align: middle;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }


        .courses-scroll {
    scrollbar-width: thin;
    scrollbar-color: #3B82F6 #f8f9fa;
    padding-bottom: 10px;
}


.course-card {
    
    border: 1px solid rgb(237, 237, 237);
    border-radius: 12px;
    
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.15) !important;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #19875422, #19875411);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #3B82F6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .row-cols-md-3 {
        row-cols: 2 !important;
    }
}

@media (max-width: 576px) {
    .row-cols-sm-2 {
        row-cols: 1 !important;
    }
}

.cources{
    margin-top: -120px !important;
}

.text-light{
    color:white !important;

}

.cources h2{
     margin-top: -130px !important;
    color:#ffffff !important;
    z-index: 9999999 !important;
}

/* How It Works */
        .steps-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            text-align: center;
        }
        .step {
            background-color: white;
            
            border-radius: 50%;
            width: 350px;
           height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 3px solid #ff9800;
        }
        .step-number {
            background-color: #ff9800;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        /* Contact */
                .contact-box {
            background: linear-gradient(to right, #2c5fa5, #1e3a6b);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 3rem;
        }
        .contact-details {
            margin-top: 2rem;
            font-size: 1.1rem;
        }
        .contact-details a {
            color: #ffd166;
            text-decoration: none;
        }
        /* Footer */
        footer {
            background-color: #222;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2rem; }
            .courses-grid, .features-grid { grid-template-columns: 1fr; }
            .steps-container { flex-direction: column; align-items: center; }
            .step { width: 160px; height: 160px; padding: 1.5rem; }
        }

        :root {
            --primary: #3B82F6;
            --primary-light: #3B82F6;
            --secondary: #d4af37;
            --accent: #3B82F6;
            --light: #f8f5f0;
            --dark: #1a2b3c;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
           
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section Common Styling */
        .section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .title-divider {
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 20px auto 0;
            border-radius: 5px;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s ease;
            border-bottom: 5px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(13, 90, 126, 0.1), rgba(42, 122, 92, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            transform: scale(1.1);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* How It Works Section */
        .steps-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            position: relative;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 10px 20px rgba(13, 90, 126, 0.2);
            border: 5px solid var(--light);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .step:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 15px 30px rgba(13, 90, 126, 0.3);
        }
        
        .step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step p {
            color: var(--gray);
            max-width: 300px;
            margin: 0 auto;
        }
        
        
        
       /* CTA Section */
        .cta-section {
                        background: linear-gradient(135deg, rgba(13, 90, 126, 0.95) 0%, rgba(136, 160, 255, 0.95) 100%), rgba(13, 90, 126, 0.95);
 center/cover no-repeat;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .cta-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .cta-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--secondary), #e6c158);
            color: var(--dark);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            border: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
            color: var(--dark);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e6c158, var(--secondary));
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
            border-radius: 50px;
        }
        
        .cta-button:hover::before {
            opacity: 1;
        }
        
        /* Contact Info */
        .contact-info {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            margin: 60px auto 0;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .contact-info > p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .contact-details {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 250px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
        }
        
        .contact-item i {
            font-size: 2.5rem;
            color: var(--secondary);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-item div {
            flex: 1;
        }
        
        .contact-item strong {
            display: block;
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 5px;
        }
        
        .contact-item p {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
        }
        
        
        /* Divider */
.title-divider {
    width: 60px;
    height: 4px;
    background: #3B82F6;
    border-radius: 10px;
    margin-top: 10px;
}

/* Audience Cards */
.audience-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

/* Icon */
.audience-card i {
    font-size: 26px;
    color: #3B82F6;
    min-width: 32px;
}

/* Text */
.audience-card span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Hover Effect */
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Small Devices Fix */
@media (max-width: 576px) {
    
    .section-title h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 800;
        }
    .audience-card {
        padding: 16px;
    }
    .audience-card i {
        font-size: 22px;
    }
    .audience-card span {
        font-size: 15px;
    }
}

        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .footer-logo h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-logo h2 span {
            color: var(--secondary);
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 400px;
        }
        
        .footer-links h4 {
            padding-left: 15px;
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
             padding-left: 15px;
            content: '';
            position: absolute;
            bottom: 0;
            left: 15px;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            padding-left: 15px !important;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover i {
            opacity: 1;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 60px;
            text-align: start;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            color: var(--dark);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            
            .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: start important;
            gap: 10px;
        }
            .cta-title {
                font-size: 2.8rem;
            }
            
            .contact-details {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-item {
                min-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .cta-section {
                padding: 70px 0;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-info {
                padding: 30px;
            }
            
            .footer-content {
                text-align: start;
            }
            
            .footer-links h4::after {
                
            }
            
            .footer-links a {
                justify-content: start;
            }
        }
        
        @media (max-width: 576px) {
            .cta-title {
                font-size: 1.8rem;
            }
            
            .cta-button {
                padding: 15px 35px;
                font-size: 1rem;
            }
            
            .contact-item {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item i {
                margin-bottom: 10px;
            }
        }
        .stats-icon-container {
            width: 96px;
            height: 96px;
            background-color: #d5e2fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }
        
        .stats-icon {
            font-size: 2.5rem;
            color: #3B82F6;
        }
        
        /* Hover effect */
        .stats-item {
            transition: transform 0.3s ease;
        }
        
        .stats-item:hover {
            transform: translateY(-5px);
        }


        /* Faculty Section */
        .faculty-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .main-title {
            color: var(--dark-text);
            font-size: 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        
        .sub-title {
            color: var(--dark-text);
            font-size: 1.25rem;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 1.4;
        }
        
        /* Faculty Cards */
        .faculty-card {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .faculty-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .faculty-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--light-bg);
            overflow:hidden;
        }
        
        .faculty-name {
            color: var(--dark-text);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .faculty-qualification {
            color: var(--medium-text);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }
        
        .faculty-specialty {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            background-color: rgba(13, 90, 126, 0.1);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            display: inline-block;
            margin-top: 0.5rem;
        }
        
        /* Carousel Navigation */
        .carousel-nav-btn {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            border: none;
            transition: all 0.3s ease;
        }
        
        .carousel-nav-btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-nav-btn.prev {
            left: -20px;
        }
        
        .carousel-nav-btn.next {
            right: -20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }
            
            .sub-title {
                font-size: 1rem;
            }
            
            .carousel-nav-btn {
                display: none;
            }
            
            .faculty-img {
                width: 150px;
                height: 150px;
            }
        }
        
        /* Placeholder Images */
        .placeholder-img {
            background: linear-gradient(45deg, var(--light-bg), #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--medium-text);
            font-weight: 500;
        }
        
        /* Faculty Categories */
        .faculty-category {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color);
            border-radius: 4px;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        .carousel-indicators{
            margin-bottom: -35px;
            
        }

        .carousel-indicators button{
            background-color: grey !important;
        }

        .carousel-indicators button:active{
            
        }
        
        
        html{
            scroll-padding-top:60px;
        }
        
        
        /* Divider */
.title-divider {
    width: 60px;
    height: 4px;
    background: #3B82F6;
    border-radius: 10px;
    margin-top: 10px;
}

/* Process Card */
.process-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
}

/* Step Number Circle */
.step-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #3B82F6;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Hover Effect */
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .process-card {
        padding: 25px 18px;
    }
    .step-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

        

       