  /* Custom Variables and Global Styles */
        :root {
            --primary: #cc242c; /* Deep red */
            --secondary: #f6a823; /* dark orange/Lime */
            --light: #d4af58 /* Light Gray/Beige */
            --dark: #f6a823; /* Dark Charcoal */
            --font-family: 'Inter', sans-serif;
            
        }
         .bg-primary-color { background-color: var(--primary) !important; }
        .bg-secondary-color { background-color: var(--secondary) !important; }
        .text-primary-color { color: var(--primary) !important; }
        .text-secondary-color { color: var(--secondary) !important; }


        body {
            font-family: var(--font-family);
            background-color: #f7f7f7;
            
        }

        .bg-primary-color { background-color: var(--primary) !important; }
        .bg-secondary-color { background-color: var(--secondary) !important; }
        .text-primary-color { color: var(--primary) !important; }
        .text-secondary-color { color: var(--secondary) !important; }

        /* Navigation Bar Styling */
        .navbar-brand {
            font-weight: 800;
            color: var(--primary) !important;
        }
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            transition: color 0.3s, background-color 0.3s;
            border-radius: 0.5rem;
            padding: 0.5rem 0.5rem;
            font-size:0.80rem;
        }
        .nav-link:hover {
            color: white !important;
            background-color: var(--secondary);
        }
          .school-name-main {
        font-size: 0.6rem;
        color: var(--primary);
    }
    
    @media (max-width: 1199px) {
        .school-name-main {
            font-size: 0.6rem;
        }
    }
    
    @media (max-width: 991px) {
        .logo-text {
            display: none;
        }
    }

        /* Dropdown Menu Styling */
        .dropdown-menu {
            border-radius: 0.5rem;
            border: 1px solid var(--light);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
            font-size:0.80rem;
        }

        .dropdown-item {
            color: var(--dark); /* Use dark color for text */
            padding: 0.5rem 0.5rem;
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background-color: var(--light); /* Subtle hover background */
            color: var(--primary); /* Primary color on hover */
        }

        /* Hero Section Custom Styling (Now a Carousel Container) */
        .hero-section {
            padding: 0; 
            overflow: hidden;
        }

        .carousel-item {
            height: 85vh; /* Responsive height for a high-impact visual */
            min-height: 450px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* Dark overlay for text readability on images */
        .carousel-item::before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: rgba(53, 54, 58, 0.5); /* Dark Charcoal with 50% transparency */
        }
        
        .carousel-caption {
            z-index: 10;
            padding-bottom: 5rem;
        }

        .carousel-caption-content {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 1rem;
            backdrop-filter: blur(5px); /* Creative blur effect */
        }

        .carousel-caption h1 {
            font-size: 3rem; 
            color: white; 
        }

        .carousel-caption p.lead {
            color: var(--light);
        }
        
        /* Carousel Indicator Styling */
        .carousel-indicators button {
            background-color: var(--secondary) !important; 
            height: 5px;
            width: 30px;
            border-radius: 5px;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .carousel-indicators .active {
            opacity: 1;
        }


        /* Card and Button Styling (retained) */
        .card {
            border: none;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-radius: 1rem;
        }

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

        .btn-primary-custom {
            background-color: var(--secondary);
            border-color: var(--dark);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.75rem;
            transition: background-color 0.3s, transform 0.2s;
        }
        .btn-primary-custom:hover {
            background-color: var(--dark);
            border-color: var(--secondary);
            transform: translateY(-2px);
            color: white;
        }

        .btn-secondary-custom {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--dark);
            padding: 0.75rem 2rem;
            border-radius: 0.75rem;
            transition: background-color 0.3s, transform 0.2s;
        }
        .btn-secondary-custom:hover {
            background-color: #7AA228; /* Slightly darker secondary */
            border-color: #7AA228;
            transform: translateY(-2px);
            color: var(--dark);
        }

        /* Event Item Styling */
        .event-item {
            border-left: 5px solid var(--secondary);
            border-radius: 0.5rem;
            transition: background-color 0.3s;
        }
        .event-item:hover {
            background-color: var(--light);
        }

        /* Footer Styling */
        footer {
            background-color: var(--primary);
            color: var(--dark);
            padding: 3rem 0;
        }
        footer a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        /*Contact us*/
         /* Contact Page Header */
        .contact-header {
            background: linear-gradient(rgba(53, 54, 58, 0.8), rgba(53, 54, 58, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            color: white;
            margin-bottom: 3rem;
        }

        /* Map Container */
        .map-container {
            border: 3px solid var(--primary);
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(160, 204, 59, 0.2);
            overflow: hidden;
            background-color: white;
            height: 100%;
            min-height: 400px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(160, 204, 59, 0.3);
        }

        /* Address Container */
        .address-container {
            border: 3px solid var(--primary);
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(160, 204, 59, 0.2);
            padding: 2.5rem;
            background-color: white;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .address-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(160, 204, 59, 0.3);
        }

        /* Contact Info Styling */
        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            color: var(--primary);
            font-size: 1.5rem;
            border: 2px solid var(--primary);
            transition: all 0.3s;
        }

        .contact-item:hover .contact-icon {
            background-color: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .contact-info h5 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-divider {
            border-top: 2px solid var(--light);
            margin: 2rem 0;
            opacity: 0.5;
        }

        /* Business Hours */
        .business-hours {
            background-color: rgba(160, 204, 59, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-top: 2rem;
            border: 1px solid rgba(160, 204, 59, 0.2);
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(202, 194, 192, 0.3);
        }

        .hours-item:last-child {
            border-bottom: none;
        }

        /* Social Media Icons Styling */
        .social-media-section {
            background-color: var(--light);
            border-radius: 1rem;
            padding: 2.5rem;
            margin-top: 3rem;
            border: 2px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .social-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1.5rem;
            border-radius: 1rem;
            background-color: var(--light);
            transition: all 0.3s;
            text-decoration: none;
            color: var(--dark);
            border: 2px solid transparent;
        }

        .social-icon:hover {
            transform: translateY(-10px);
            text-decoration: none;
            color: white;
        }

        .social-icon i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s;
        }

        .social-icon span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* Individual Social Media Colors */
        .facebook:hover {
            background-color: #1877F2;
            border-color: var(--light);
        }

        .twitter:hover {
            background-color: #1DA1F2;
            border-color: var(--light);
        }

        .instagram:hover {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            border-color: var(--light);
        }

        .linkedin:hover {
            background-color: #0077B5;
            border-color: var(--light);
        }

        .youtube:hover {
            background-color: #FF0000;
            border-color: var(--light);
        }

        .whatsapp:hover {
            background-color: #25D366;
            border-color: var(--light);
        }

        /* Contact Form */
        .contact-form {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            margin-top: 3rem;
            border: 2px solid var(--primary);
        }

        .form-control, .form-select {
            border: 2px solid var(--light);
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.25rem rgba(160, 204, 59, 0.25);
        }

        .btn-primary-custom {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.75rem;
            transition: background-color 0.3s, transform 0.2s;
            font-weight: 600;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--dark);
            border-color: var(--dark);
            transform: translateY(-2px);
            color: white;
        }

        .btn-secondary-custom {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--dark);
            padding: 0.75rem 2rem;
            border-radius: 0.75rem;
            transition: background-color 0.3s, transform 0.2s;
            font-weight: 600;
        }
        
        .btn-secondary-custom:hover {
            background-color: #7AA228; /* Slightly darker secondary */
            border-color: #7AA228;
            transform: translateY(-2px);
            color: var(--dark);
        }

        /* Emergency Alert */
        .emergency-alert {
            background-color: rgba(160, 204, 59, 0.15);
            border: 2px solid var(--secondary);
            border-radius: 1rem;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .map-container, .address-container {
                margin-bottom: 2rem;
            }
            
            .contact-form, .social-media-section {
                padding: 1.5rem;
            }
            
            .contact-header {
                padding: 3rem 0;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                margin-right: 1rem;
            }
        }

        /* Section Headers */
        .section-header {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
/*Top bar */
 

 /* Custom styles for the top contact bar */
    .top-contact-bar {
        background-color:  var(--secondary); /* Dark blue color */
        font-size: 0.9rem;
    }
    
    .school-name {
        color: var(--primary);
    }
    
    .social-icons a {
        transition: opacity 0.3s ease;
    }
    
    .social-icons a:hover {
        opacity: 0.8;
    }
    
    .user-icon a {
        transition: transform 0.3s ease;
    }
    
    .user-icon a:hover {
        transform: scale(1.1);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .top-contact-bar {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        
        .school-name h1 {
            font-size: 1rem !important;
        }
        
        .social-icons {
            margin-right: 1rem !important;
        }
        
        .social-icons a {
            margin-right: 0.75rem !important;
        }
    }
    
    @media (max-width: 576px) {
        .top-contact-bar .container-fluid {
            padding-left: 10px;
            padding-right: 10px;
        }
        
        .school-name h1 {
            font-size: 0.9rem !important;
        }
        
        .social-icons a {
            margin-right: 0.5rem !important;
        }
        
        .navbar-brand-mobile {
            font-size: 0.9rem;
        }
    }
    
    /* Ensure proper spacing on extra small screens */
    @media (max-width: 400px) {
        .social-icons {
            margin-right: 0.5rem !important;
        }
        
        .social-icons a {
            margin-right: 0.4rem !important;
            font-size: 0.8rem !important;
        }
        
        .user-icon i {
            font-size: 1rem !important;
        }
    }
    
    /* Custom button styles (ensure these are defined) */
    .btn-primary-custom {
        background-color:#6F4D41;
        border: none;
    }
    
    .btn-primary-custom:hover {
        background-color: #2980b9;
    }
    
    .btn-secondary-custom {
        background-color: #95a5a6;
        border: none;
    }
    
    .btn-secondary-custom:hover {
        background-color: #7f8c8d;
    }
    /*Page */
     .academic-container {
            border: 3px solid var(--primary); /* Primary color border */
            border-radius: 8px;
            box-shadow: 0 4px 15px var(--light); /* Light shadow */
            padding: 20px;
            background-color: #fff;
            margin-top: 20px;
        }
        
        .academic-heading {
            color: var(--secondary); /* Secondary color for headings */
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .program-section {
            margin-bottom: 25px;
        }
        
        .program-title {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
    /*Chairmna's DEsk*/
       /* Chairman Page Header */
        .chairman-header {
            background: linear-gradient(rgba(53, 54, 58, 0.85), rgba(53, 54, 58, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            color: white;
            margin-bottom: 3rem;
        }
        
        /* Chairman Container */
        .chairman-container {
            border: 3px solid var(--primary);
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            background-color: white;
            margin-top: -4rem;
            position: relative;
            z-index: 10;
        }
        
        /* Chairman Photo */
        .chairman-photo {
            border: 5px solid var(--secondary);
            border-radius: 50%;
            width: 200px;
            height: 200px;
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
         .director-container {
            border: 3px solid var(--primary);
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            background-color: white;
            margin-top: -4rem;
            position: relative;
            z-index: 10;
        }
        
        /* Chairman Photo */
        .director-photo {
            border: 5px solid var(--secondary);
            border-radius: 50%;
            width: 200px;
            height: 200px;
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        /* Message Items */
        .message-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--light);
        }
        
        .message-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .message-icon {
            background-color: var(--light);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            border: 2px solid var(--primary);
        }
        
        .message-content h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        /* Signature */
        .signature {
            border-top: 2px solid var(--secondary);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-style: italic;
        }
        
       
        
        /* Responsive */
        @media (max-width: 768px) {
            .chairman-container {
                padding: 1.5rem;
                margin-top: -2rem;
            }
            
            .message-item {
                flex-direction: column;
            }
            
            .message-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .chairman-photo {
                width: 150px;
                height: 150px;
            }
            
            .chairman-header {
                padding: 3rem 0;
            }
        }
        /*Director*/
           
        
        /* Director Page Header */
        .director-header {
            background: linear-gradient(rgba(53, 54, 58, 0.85), rgba(53, 54, 58, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            color: white;
            margin-bottom: 3rem;
        }
        
        /* Director Container */
        .director-container {
            border: 3px solid var(--primary);
            border-radius: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            background-color: white;
            margin-top: -4rem;
            position: relative;
            z-index: 10;
        }
        
        /* Director Photo */
        .director-photo {
            border: 5px solid var(--secondary);
            border-radius: 50%;
            width: 200px;
            height: 200px;
            object-fit: cover;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
    /* Quote Box */
        .quote-box {
            background-color: rgba(111, 77, 65, 0.1);
            border-left: 5px solid var(--secondary);
            padding: 2rem;
            border-radius: 0.5rem;
            margin: 2rem 0;
            font-style: italic;
            position: relative;
        }
        .quote-box:before {
            content: "\201C";
            font-size: 4rem;
            color: var(--secondary);
            position: absolute;
            top: -1rem;
            left: 1rem;
            font-family: Georgia, serif;
        }
        
        /* Philosophy Section */
        .philosophy-section {
            background-color: rgba(160, 204, 59, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid var(--secondary);
        }
        
        /* Core Values */
        .core-values {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .value-card {
            flex: 1;
            min-width: 200px;
            background-color: white;
            border: 2px solid var(--light);
            border-radius: 0.75rem;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            background-color: var(--light);
            color: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .director-container {
                padding: 1.5rem;
                margin-top: -2rem;
            }
            
            .message-item {
                flex-direction: column;
            }
            
            .message-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .director-photo {
                width: 150px;
                height: 150px;
            }
            
            .director-header {
                padding: 3rem 0;
            }
            
            .value-card {
                min-width: 100%;
            }
        }
/*Admissions*/
 
        
        /* Admissions Header */
        .admissions-header {
            background: linear-gradient(rgba(53, 54, 58, 0.85), rgba(53, 54, 58, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            color: white;
            margin-bottom: 3rem;
        }
        
        /* Timeline Process */
        .process-timeline {
            position: relative;
            max-width: 1200px;
            margin: 4rem auto;
        }
        
        .process-timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--secondary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -12px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            border-radius: 1rem;
            border: 2px solid var(--light);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-step {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Process Cards */
        .process-card {
            border: 3px solid var(--primary);
            border-radius: 1rem;
            background-color: white;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .process-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
            border: 2px solid var(--primary);
        }
        
        /* Documents Checklist */
        .documents-list {
            list-style: none;
            padding-left: 0;
        }
        
        .documents-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--light);
            position: relative;
            padding-left: 2.5rem;
        }
        
        .documents-list li:last-child {
            border-bottom: none;
        }
        
        .documents-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 25px;
            height: 25px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* Important Note Box */
        .important-note {
            background-color: rgba(160, 204, 59, 0.15);
            border: 2px solid var(--secondary);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        /* Fee Structure Box */
        .fee-box {
            background-color: white;
            border: 3px solid var(--primary);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            margin: 2rem auto;
            max-width: 500px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .fee-amount {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin: 1rem 0;
        }
        
        /* Responsive Timeline */
        @media (max-width: 768px) {
            .process-timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item::after {
                left: 18px;
                right: auto;
            }
            
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 18px;
            }
        }