 /* Modern Reset and Variables */
        :root {
            --primary-color: #004b8d; /* Deep Blue - Academic/Professional */
            --secondary-color: #DAA520; /* Golden Accent */
            --tertiary-color: var(--secondary-color); /* Bright Blue for link-rows */
            --light-bg: #f8f9fa; /* Light Gray Background */
            --dark-text: #343a40; /* Dark Text */
            --border-color: #e9ecef;
            --container-width: 1200px;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
        }

        .container {
            max-width: var(--container-width);
            margin: auto;
            padding: 0 20px;
        }

        /* --- Header and Navigation --- */
        .header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease-in-out; 
        }
        
        /* Class added by JavaScript on scroll to condense header */
        .header.shrink {
            padding: 5px 0; 
        }
        
        .header-content {
            display: flex;
            align-items: stretch;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
            flex-direction: column;
        }
        
        .header-logo-and-text {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }

        .logo-section {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--primary-color);
        }

        .logo-section img {
            /* Placeholder path - replace with your actual logo */
            width: 175px; 
            transition: width 0.3s ease-in-out;
        }
        
        /* Shrink logo on scroll */
        .header.shrink .logo-section img {
            width: 100px; 
        }

        .header-text-details {
            display: flex;
            flex-direction: column;
            margin-left: 20px;
            
            /* Properties for smooth hide/show of extra text */
            opacity: 1;
            max-height: 200px; 
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }
        .header-title-details {
            margin-left: 20px;
            text-transform: uppercase;
        }
        .header-title-details h3{
            font-size:20px;
            font-weight:700;
            
        }
        /* Hide extra header text on scroll */
        .header.shrink .header-text-details {
            opacity: 0;
            max-height: 0; 
            margin-left: 10px;
        }
        
        .header-text-details h3 {
            color: var(--primary-color);
            margin: 0;
            padding-left: 5px;
            font-weight: 500;
            font-size: 1em; 
            line-height: 1.2;
            text-align: left;
        }

        .header-text-details h3 > span {
            font-size: 1.4em;
            text-transform: uppercase;
            font-weight: 700;
            
        }
        
        .navbar {
            display: flex;
            gap: 15px;
            margin-left: 2%;
        }

        .navbar a {
            color: var(--dark-text);
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s;
            font-weight: 500;
        }

        .navbar a:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* --- Hero Section --- */
        .hero {
            background-color: var(--light-bg);
            padding: 60px 0 80px 0; /* Adjusted padding to look better with slider */
        }
        
        /* --- The 70/30 Split Layout --- */
        .hero-split {
            display: flex;
            gap: 30px; 
            align-items: stretch; 
        }
        
        /* --- LEFT 70% Area: The Slider Container --- */
        .slider-area {
            width: 70%; 
            height: 400px; /* Reduced height slightly for better balance */
            position: relative;
            overflow: hidden; 
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
        }
        
        /* --- SLIDER STYLING (The 4 Slides) --- */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start; /* Align text to the left */
            text-align: left;
            padding: 40px;
            opacity: 0; 
            transition: opacity 1s ease-in-out;
        }
        
        /* The active slide is visible */
        .slide.active {
            opacity: 1;
        }
        
        /* Dark overlay for better text readability */
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
            z-index: 1;
            border-radius: 8px;
        }
        
        .slide h2, .slide p, .slide .cta-button {
            position: relative; 
            z-index: 2;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }
        
        .slide h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .slide p {
            font-size: 1.1rem;
            max-width: 80%;
            margin-bottom: 25px;
        }

        /* --- RIGHT 30% Area: The Links --- */
        .links-area {
            width: 30%; 
            display: flex;
            flex-direction: column;
            justify-content: space-between; 
            gap: 15px; /* Added gap to prevent links from stretching too much */
        }
        
        .link-row {
            display: flex;
            flex-direction: column; /* Stack icon and text for better vertical alignment */
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-grow: 1; /* Ensures they share the available vertical space */
            padding: 15px;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            text-decoration: none;
            color: var(--primary-color);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .link-row:hover {
            background-color: var(--primary-color); 
            transform: translateY(-3px);
            color: white; 
            border-color: var(--primary-color);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        /* Icon styling */
        .link-row i {
            font-size: 2.2rem;
            margin-bottom: 8px;
            color: var(--secondary-color); /* Golden Accent for initial state */
            transition: color 0.3s;
        }

        .link-row:hover i {
            color: white; /* White icon on hover */
        }

        /* Button style (CTA) */
        .cta-button {
            background-color: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            border: 2px solid transparent;
        }

        .cta-button:hover {
            background-color: #e06223;
            border-color: white;
        }

        /* --- Section Styling (Kept as provided) --- */
        section {
            background-color: white;
            padding: 50px;
            margin-bottom: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        h2 {
            color: var(--primary-color);
            font-size: 2em;
            margin-bottom: 10px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--secondary-color);
            font-weight: 700;
        }

        h3 {
            color: var(--primary-color);
            margin-top: 30px;
            border-left: 5px solid var(--secondary-color);
            padding-left: 10px;
            font-weight: 600;
        }

        .key-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .feature-card {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .icon-placeholder {
            font-size: 2em;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        /* --- Tables (Fees) Styling --- */
        .fee-table-container {
            overflow-x: auto; 
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            min-width: 600px;
        }

        th, td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }

        th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }

        tr:nth-child(even) {
            background-color: #f2f6fa;
        }

        .callout {
            background-color: #fff3cd; 
            border-left: 6px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            font-weight: 500;
            color: #856404;
            border-radius: 4px;
        }

        /* --- Footer --- */
       /* --- Footer (Updated for new structure) --- */
        .footer {
            background-color: var(--dark-text);
            color: white;
            padding: 30px 0;
            margin-top: 30px;
            font-size: 0.9em;
        }
        
        .footer .container {
            text-align: center;
        }

        .footer p {
            margin: 10px 0;
            line-height: 1.5;
        }

        .footer a {
            color: var(--secondary-color); /* Golden color for contrast */
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: #fff;
        }
        
        .disclaimer {
            background-color: #495057;
            padding: 15px;
            border-radius: 4px;
            margin: 20px auto;
            max-width: 900px;
            text-align: left;
            font-size: 0.85em;
        }
        
        .disclaimer strong {
            color: var(--secondary-color);
            display: block;
            margin-bottom: 5px;
            font-size: 1em;
        }
        
        .footer-nav {
            margin: 20px 0;
            padding: 0 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        
        .footer-nav a {
            padding: 0 10px;
            border-right: 1px solid rgba(255, 255, 255, 0.4);
            font-weight: 500;
            white-space: nowrap; /* Prevent breaking policy links */
        }
        
        .footer-nav a:last-child {
            border-right: none;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
            margin-top: 15px;
        }
        
        .developer a {
            color: #ccc;
        }

        /* --- Responsive Design (Media Queries) --- */
       
            /* ---------------------------------------------------- */
            /* 1. STYLES FOR THE 'WHY PUBLISH' SECTION (NEW BLOCK) */
            /* ---------------------------------------------------- */
            #why-publish {
                padding: 40px 20px;
                max-width: 1200px;
                margin: 40px auto; /* More margin to separate from other content */
                background-color: #e9f5ff; /* Light, contrasting blue background */
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                font-family: 'Arial', sans-serif;
                color: #333;
            }
        
            #why-publish h2 {
                text-align: center;
                color: #1a4f78;
                font-size: 2.5em;
                margin-bottom: 30px;
                border-bottom: 3px solid var(--secondary-color);
                padding-bottom: 10px;
                font-weight: 700;
            }
        
            .reason-box {
                display: flex;
                align-items: flex-start;
                margin-bottom: 25px;
                padding: 20px;
                background-color: #ffffff;
                border-left: 5px solid var(--secondary-color);
                border-radius: 8px;
                transition: box-shadow 0.3s;
            }
        
            .reason-box:hover {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
        
            .reason-icon {
                color: var(--secondary-color);
                font-size: 1.8em;
                margin-right: 20px;
                flex-shrink: 0;
                padding-top: 5px;
            }
        
            .reason-content h3 {
                color: #1a4f78;
                margin-top: 0;
                font-size: 1.4em;
            }
        
            .reason-content p {
                margin: 0;
                line-height: 1.6;
            }
        
            .note-box {
                margin-top: 40px;
                padding: 20px;
                background-color: #fff3cd; /* Warning color */
                color: #856404;
                border: 1px solid #ffeeba;
                border-radius: 8px;
                font-weight: bold;
            }
    /* 1. Base Styles for the Section */
    #subjects-list {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 20px auto;
        background-color: #fff; /* Light background */
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        font-family: 'Arial', sans-serif;
    }

    /* 2. Heading Style */
    #subjects-list h2 {
        text-align: center;
        color: #1a4f78; /* A professional blue */
        font-size: 2.5em;
        margin-bottom: 40px;
        font-weight: 700;
    }

    /* 3. Container for Columns (using Flexbox for responsiveness) */
    .subjects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
        gap: 20px;
        padding: 0;
        list-style: none;
    }

    /* 4. Individual Subject Card Style */
    .subject-item {
        background-color: #ffffff;
        padding: 15px 20px;
        border-left: 5px solid var(--secondary-color); /* Accent color */
        border-radius: 8px;
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        align-items: center;
        font-size: 1.1em;
        color: #333;
    }

    /* 5. Hover Effect for Interaction */
    .subject-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        border-left-color: #ffaa00; /* Subtle color change on hover */
    }

    /* 6. Icon Style */
    .subject-icon {
        color: var(--secondary-color);
        margin-right: 15px;
        font-size: 1.2em;
        width: 25px; /* Fixed width to align text */
        text-align: center;
    }
    
     /* --- AUTHOR PAGE SPECIFIC STYLES --- */
        .guidelines-section h3 {
            margin-top: 35px;
            padding: 10px 15px;
            background-color: var(--light-bg);
            border-radius: 4px;
            border-left-color: var(--tertiary-color); /* Bright Blue for separation */
        }
        
        .guidelines-section ul {
            list-style: none;
            padding-left: 0;
        }

        .guidelines-section ul li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 25px;
        }
        
        .guidelines-section ul li::before {
            content: "\f00c"; /* Font Awesome Check Mark */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            top: 0;
        }
        
        .structure-list {
            list-style: decimal;
            padding-left: 30px;
            font-weight: 500;
        }
        
        .structure-list li {
            margin-bottom: 5px;
            position: static;
            padding-left: 0;
        }
        
        .structure-list li::before {
            content: none;
        }
        
        .citation-details {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .citation-example {
            margin-top: 15px;
            padding: 15px;
            background-color: #e9ecef;
            border-left: 4px solid var(--primary-color);
            font-family: monospace;
            white-space: pre-wrap;
            line-height: 1.4;
        }

        /* --- FEES PAGE SPECIFIC STYLES --- */
        .fees-section h3 {
            margin-top: 40px;
            padding: 10px 15px;
            background-color: var(--light-bg);
            border-radius: 4px;
            border-left-color: var(--tertiary-color);
        }
        
        .fees-list {
            list-style: none;
            padding-left: 0;
            margin-top: 20px;
        }

        .fees-list li {
            position: relative;
            margin-bottom: 10px;
            padding-left: 30px;
        }
        
        .fees-list li .fas {
            color: var(--tertiary-color);
            position: absolute;
            left: 0;
            top: 0;
            width: 20px; /* Ensures text alignment */
            text-align: center;
        }

        /* Table Styling */
        .fees-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .fees-table th, .fees-table td {
            padding: 15px;
            text-align: left;
            border: 1px solid var(--border-color);
        }

        .fees-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
        }

        .fees-table tbody tr:nth-child(even) {
            background-color: #f3f9ff;
        }

        .fees-table tbody tr:hover {
            background-color: #e6f2ff;
        }

        .fees-table td strong {
            color: var(--primary-color);
        }
        
        
         /* --- CONTACT PAGE SPECIFIC STYLES --- */
        .contact-content {
            display: flex;
            gap: 40px;
            margin-top: 40px;
        }
        
        .contact-form-area, .contact-details-area {
            flex: 1;
        }
        
        /* Form Styling */
        .contact-form-area form {
            background-color: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-text);
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            box-sizing: border-box; /* Includes padding in width */
            font-size: 1em;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--tertiary-color);
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: 700;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #003366;
        }
        
        /* Details Styling */
        .contact-details-area h3 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            color: var(--dark-text);
            font-size: 1.6em;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            background-color: var(--light-bg);
            border-radius: 6px;
        }
        
        .detail-item .fas {
            font-size: 1.5em;
            color: var(--secondary-color);
            margin-right: 15px;
            padding-top: 3px;
        }
        
        .detail-item strong {
            display: block;
            font-size: 1.1em;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .detail-item a {
            color: var(--dark-text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .detail-item a:hover {
            color: var(--tertiary-color);
        }
        
          /* --- SUBMISSION FORM SPECIFIC STYLES --- */
        .submission-form-container {
            max-width: 800px;
            margin: 40px auto;
        }

        .submission-form {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.1em;
        }
        
        .form-group input[type="text"], 
        .form-group input[type="email"], 
        .form-group input[type="tel"] {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            box-sizing: border-box; 
            font-size: 1em;
            transition: border-color 0.3s;
        }

        .form-group input[type="file"] {
            display: block;
            width: 100%;
            padding: 10px;
            border: 2px dashed var(--secondary-color);
            border-radius: 4px;
            background-color: #fff;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--tertiary-color);
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            margin-top: 30px;
            margin-bottom: 30px;
            font-size: 1em;
            padding: 15px;
            border: 1px solid #f9da94;
            background-color: #fffaf0;
            border-radius: 4px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-right: 15px;
            transform: scale(1.5);
            accent-color: var(--primary-color);
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.2em;
            font-weight: 700;
            width: 100%;
            transition: background-color 0.3s, transform 0.1s;
        }
        
        .submit-btn:hover {
            background-color: #003366;
            transform: translateY(-2px);
        }

        /* Required Asterisk Style */
        .required-label::after {
            content: ' *';
            color: red;
            font-weight: 700;
            
        }
        
           /* --- FORM SPECIFIC STYLES --- */
        .form-container {
            max-width: 900px;
            margin: 40px auto;
        }

        .review-board-form {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 25px;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: white;
        }

        .form-group-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.1em;
        }
        
        .form-group input[type="text"], 
        .form-group input[type="email"], 
        .form-group input[type="tel"],
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            box-sizing: border-box; 
            font-size: 1em;
            transition: border-color 0.3s;
            margin-top: 5px;
        }
        
        .form-group input[type="radio"],
        .form-group input[type="checkbox"] {
            margin-right: 8px;
            transform: scale(1.1);
            accent-color: var(--primary-color);
        }
        
        .radio-options label {
            display: inline-block;
            margin-right: 25px;
            font-weight: 500;
            color: var(--dark-text);
            font-size: 1em;
            cursor: pointer;
        }

        .select-group-small {
            flex-basis: 48%; /* Adjust for 2 columns on larger screens */
        }
        
        .form-group input[type="file"] {
            display: block;
            width: 100%;
            padding: 10px;
            border: 2px dashed var(--secondary-color);
            border-radius: 4px;
            background-color: #fff;
            margin-top: 5px;
        }
        
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--tertiary-color);
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
        }
        
        .declaration-group {
            background-color: #fffaf0;
            padding: 20px;
            border: 1px solid #f9da94;
            border-radius: 4px;
        }

        .declaration-group label {
                display: flex;
                align-items: flex-start;
                font-weight: 500;
                color: var(--dark-text);
                flex-direction: column;
        }
        
        .declaration-group input[type="checkbox"] {
            flex-shrink: 0;
            margin-top: 5px;
            transform: scale(1.2);
            accent-color: var(--primary-color);
        }
        
        /* --- New Testimonial Section Styles --- */
        #testimonials {
            padding: 50px 20px;
            background-color: var(--light-bg); /* Use the light background color */
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
        }
        #testimonials h2 {
            text-align: center;
            border-bottom: 3px solid var(--secondary-color);
            margin-bottom: 40px;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--primary-color);
            transition: transform 0.3s;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .testimonial-quote {
            font-style: italic;
            color: var(--dark-text);
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        .testimonial-quote::before {
            content: "\f10d"; /* Font Awesome quote-left icon */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--secondary-color);
            font-size: 1.2em;
        }
        .testimonial-author {
            margin-top: 10px;
            border-top: 1px dashed var(--border-color);
            padding-top: 10px;
        }
        .testimonial-author strong {
            display: block;
            color: var(--primary-color);
            font-weight: 600;
        }
        .testimonial-author span {
            font-size: 0.9em;
            color: #6c757d;
        }
        /* General Rating stars style */
        .star-rating {
            color: var(--secondary-color);
            font-size: 1.1em;
            margin-bottom: 10px;
        }
        
        /* --- New Footer Layout and Components Styles --- */
        .footer {
            background-color: var(--dark-text);
            color: white;
            padding: 40px 0 20px 0; /* More padding for content */
            margin-top: 30px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-col {
            flex-basis: 30%;
            margin-bottom: 20px;
            padding: 10px;
        }
        .footer-col h4 {
            color: var(--secondary-color);
            font-size: 1.1em;
            margin-bottom: 15px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 5px;
        }
        
        /* Newsletter Styles */
        .newsletter-form input[type="email"] {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 4px;
            margin-bottom: 10px;
            box-sizing: border-box;
        }
        .newsletter-form button {
            width: 100%;
            padding: 10px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .newsletter-form button:hover {
            background-color: #e06223;
        }
        
        /* Rating/Stats Styles */
        .rating-section {
            text-align: center;
        }
        .rating-section .star-rating {
            font-size: 1.5em;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        .rating-section p {
            margin: 0;
            font-size: 0.9em;
            color: #ccc;
        }
        .rating-stats {
            margin-top: 15px;
        }
        .rating-stats div {
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        .rating-stats strong {
            display: block;
            font-size: 1.4em;
            color: var(--secondary-color);
        }
        .copyright-section {
            text-align: center;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
            margin-top: 15px;
            font-size: 0.85em;
        }
        
        @media (max-width: 768px) {
            .footer-col {
                flex-basis: 100%;
            }
        }
        
          /* Mobile Menu Button - Hidden by default */
        .menu-button {
            display: none; 
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            color: var(--primary-color);
        }

        /* Mobile Sidebar Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%; /* Takes 80% of the screen width */
            max-width: 300px;
            height: 100%;
            background-color: var(--primary-color);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            transform: translateX(100%); /* Start off-screen */
            transition: transform 0.3s ease-in-out;
            padding: 20px;
            z-index: 1002; /* Above the header */
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.active {
            transform: translateX(0); /* Slide in */
        }
        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        
        .mobile-nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        
        .mobile-nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .close-button {
            align-self: flex-end;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
        }
        
        /* Overlay for when menu is open */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: none;
        }
        
         @media (max-width: 1100px) {
            .header-text-details {
                font-size: 0.9em; 
            }
        }
        
        @media (max-width: 900px) {
            
            /* Header adjustments */
            .header-content {
                   flex-direction: column-reverse;
                    align-items: flex-end;
            }
            .header-logo-and-text {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            .header-text-details {
                text-align: center;
                margin-left: 20px;
            }
            .header-title-details h3 {
                font-size: 15px;
              
            }
            .navbar {
                width: 100%;
                justify-content: center;
                gap: 15px;
                margin-left: 0;
            }
            .header.shrink .header-logo-and-text {
                justify-content: flex-start;
            }
            .contact-content {
                flex-direction: column;
                gap: 30px;
            }
            .footer-nav {
                flex-direction: column;
                gap: 5px;
             }
             .footer-nav a {
                border-right: none;
                display: block;
                padding: 5px 0;
             }
              .submission-form-container {
                max-width: 100%;
                padding: 0;
            }
            .submission-form {
                padding: 30px 20px;
            }
            .form-container {
                max-width: 100%;
                padding: 0;
            }
            .review-board-form {
                padding: 30px 20px;
            }
            .form-group-inline {
                flex-direction: column;
                gap: 0;
            }
            .select-group-small {
                flex-basis: 100%;
            }
            
             /* Hide the desktop inline navigation */
            .navbar {
                display: none;
            }

            /* Show the mobile menu button */
            .menu-button {
                display: block;
            }
            
            /* Ensure the header content is vertically aligned correctly after hiding the nav */
            .header-content {
                justify-content: space-between;
            }
            section > h2 {
                font-size: 20px !important;
            }
        }

        @media (max-width: 768px) {
            /* HERO SECTION STACKING FOR MOBILE/TABLET */
            .hero {
                padding: 40px 0;
            }
            .hero-split {
                flex-direction: column; /* Stack the 70% and 30% areas vertically */
                gap: 30px;
            }
            .slider-area, .links-area {
                width: 100%; /* Full width for stacked elements */
                height: auto;
            }
            .slider-area {
                height: 300px; /* Shorter slider on mobile */
            }
            .links-area {
                /* Ensures links still look good when stacked */
                flex-direction: row; 
                flex-wrap: wrap;
                justify-content: space-around;
                gap: 10px;
            }
            .link-row {
                flex-basis: 45%; /* Two links per row */
                padding: 10px;
            }
            .link-row i {
                font-size: 1.8rem;
            }
            .link-row span {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 600px) {
            .navbar {
                flex-wrap: wrap;
                gap: 10px;
            }
            .navbar a {
                padding: 6px 10px;
                font-size: 0.85em;
            }
            .link-row {
                flex-basis: 100%; /* Single column links on very small screens */
            }
            .contact-form-area form {
                padding: 20px;
            }
            
            .header-logo-and-text {
   
                flex-direction: column;
            }
        }
        