/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    display: block; /* Fixed: was flex center which breaks scrolling */
    background-color: #fff;
}





/* =========================================
   HEADER STYLES (Use this for ALL pages)
   ========================================= */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo img { height: 70px; width: auto; display: block; }

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li { position: relative; }

.nav-links a {
    text-decoration: none;
    color: #0A192F; /* Deep Navy */
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a:hover { color: #00509E; }

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
    border-top: 3px solid #00509E;
}

.dropdown-content li { display: block; width: 100%; }
.dropdown-content a {
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
}
.dropdown:hover .dropdown-content { display: block; }

/* Header Button */
.btn-header {
    background-color: #00509E;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}
.btn-header:hover { background-color: #003E7E; }

/* Hamburger (Mobile) */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.bar { width: 25px; height: 3px; background-color: #333; transition: 0.4s; }

/* Mobile View */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links {
        max-width: 100%;
        position: fixed; top: 0; left: 100%; width: 100%; height: 100vh;
        background-color: white; flex-direction: column; align-items: center;
        padding: 80px 20px; box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: 0.4s;
        overflow-y: auto;
    }
    .nav-links.active { left: 0; }
    .nav-links a { width: 100%; padding: 10px 0; border-bottom: 1px solid #eee; }
    .dropdown:hover .dropdown-content { display: none; }
    .dropdown.active .dropdown-content { display: block; position: static; box-shadow: none; border-top: none; background: #f9f9f9; }
    .btn-header { display: block; text-align: center; margin-top: 20px; }
}

/* --- FOOTER STYLES --- */
.site-footer {
    background-color: #1a1a1a; /* Dark background */
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #E64A19;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #E64A19;
    padding-left: 5px; /* Slight movement on hover */
}

/* Social Icons Placeholder */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #E64A19;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
}

/* --- RESPONSIVE HEADER & FOOTER --- */
@media (max-width: 900px) {
    /* Mobile Navigation */
    .hamburger { display: flex; }

    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    /* Stack Footer Columns */
    .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
        text-align: center;
    }
    
    .footer-col h3 {
        display: inline-block;
    }

    .social-links {
        justify-content: center;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    

}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    padding-top: 50px;
    margin: 0 auto;
    gap: 50px;
}

/* Left Column Styling */
.left-content {
    flex: 1;
    max-width: 500px;
}

.left-content h1 {
    font-size: 2.8rem;
    color: #222;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: capitalize;
    transition: opacity 0.2s;
    
    /* --- NEW ADDITIONS FOR LINKS --- */
    text-decoration: none; /* Removes the underline link style */
    text-align: center;    /* Centers the text inside the button */
    display: block;        /* Ensures the link fills the grid cell */
}

/* Keep the rest of your CSS the same */
.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.btn:hover { opacity: 0.9; }
.btn-skilled { background-color: #388e3c; }
.btn-study   { background-color: #e53935; }
.btn-work    { background-color: #000000; }
.btn-visit   { background-color: #90a4ae; }
/* Counselling Text */
.counselling-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.counselling-box .text p.small-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.counselling-box .text a.link-text {
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

/* Right Column (Image) Styling */
.right-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    max-width: 600px;
}

/* FIXED: Changed selector from .image-col to .image-wrapper to match HTML */
.image-wrapper img {
    width: 100%;
    max-width: 800px;
    height: 450px; /* Fixed height for consistency */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Green Vertical Bar */
.green-accent {
    position: absolute;
    left: -12px;
    top: 20%;
    bottom: 40%;
    width: 12px;
    background-color: #388e3c;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 2;
}

/* --- MOBILE FIXES --- */
@media (max-width: 900px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-container {
        flex-direction: column-reverse; /* Stacks Image on TOP, Text BELOW */
        text-align: center;
        width: 100%;
        padding-top: 20px;
        gap: 30px;
    }

    /* Left Content (Text Area) */
    .left-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .left-content h1 {
        font-size: 2rem; /* Smaller font for mobile */
        margin-bottom: 20px;
    }

    /* Keep 2x2 Grid for buttons */
    .button-grid {
        gap: 10px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 0; /* Slightly smaller buttons */
        font-size: 0.95rem;
    }

    /* Image Adjustments */
    .right-content {
        justify-content: center;
        width: 100%;
    }

    .image-wrapper {
        width: 90%; /* Image isn't full edge-to-edge */
        max-width: 400px;
    }

    .image-wrapper img {
        height: 250px; /* Shorter height for mobile */
    }

    /* Hide Green Bar on Mobile */
    .green-accent {
        display: none;
    }

    /* Align Counselling Box */
    .counselling-box {
        justify-content: center; /* Centers it horizontally */
        text-align: left; /* Keep text aligned left relative to icon */
    }
}

/* --- CONTACT FORM SECTION --- */
.contact-section {
    
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-container {
    width: 100%;
    background-color: #F2F9F2; 
    padding: 40px;
    border-radius: 20px;
    max-width: 1200px;
}

.form-header { margin-bottom: 30px; }
.form-header h2 { font-size: 2rem; color: #1a1a1a; margin-bottom: 10px; font-weight: 700; }
.form-header p { color: #555; font-size: 1rem; }

/* Form Layout */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    gap: 20px;
}

.three-col, .mixed-col {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

/* Inputs & Selects */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    height: 45px;
}

/* Phone Input */
.phone-input-group {
    display: flex;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    height: 45px;
}

/* Force the phone input container to stretch fully */
.iti {
    width: 100%;
    display: block;
}

/* Ensure the input field inside it also stretches */
.iti__tel-input {
    width: 100% !important;
    box-sizing: border-box; /* Includes padding in the width calculation */
}
.country-code {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 0 10px;
    border-right: 1px solid #ddd;
    gap: 5px;
    font-size: 0.9rem;
    color: #333;
}

.phone-input-group input {
    border: none;
    height: 100%;
}


/* Checkbox & Recaptcha */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
}

.recaptcha-box {
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    width: 300px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.submit-btn {
    background-color: #388E3C;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    margin-top: 10px;
}

.submit-btn:hover { background-color: #2E7D32; }

/* --- RESPONSIVE MOBILE FIXES --- */
@media (max-width: 900px) {
    
    /* Hero Section Adjustments (Keeping your existing fixes) */
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px 10px;
    }

    .right-content { justify-content: center; }
    
    .green-accent { display: none; }

    .button-grid {
        max-width: 100%;
        margin: 20px auto;
    }

    /* --- CONTACT FORM FIXES --- */
    .contact-section {
        padding: 40px 15px; /* Reduce outer padding */
    }

    .contact-container {
        padding: 25px; /* Reduce inner padding for more space */
        width: 100%;
    }

    .form-header h2 {
        font-size: 1.6rem; /* Smaller heading */
        text-align: center;
    }

    .form-header p {
        text-align: center;
    }

    /* Stack all columns vertically */
    .three-col, .mixed-col {
        grid-template-columns: 1fr; 
        gap: 15px; /* Smaller gap between inputs */
    }

    /* Make inputs taller for easier tapping */
    input[type="text"], 
    input[type="email"], 
    input[type="tel"], 
    select {
        height: 50px;
        font-size: 16px; /* Prevents zooming on iPhone */
    }

    .phone-input-group {
        height: 50px;
    }

    /* Fix Recaptcha overflowing */
    .recaptcha-box {
        width: 100%; /* Full width */
        max-width: 300px; /* But don't get huge */
        margin: 0 auto; /* Center it */
    }

    /* Full Width Submit Button */
    .submit-btn {
        width: 100%;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Adjust checkbox alignment */
    .terms-checkbox {
        justify-content: flex-start; /* Align left */
        margin-top: 5px;
    }
}


/* =========================================
   2. POPUP VISIBILITY FIX
   ========================================= */
/* This is crucial for the popup to show */
.cred-modal-overlay.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

/* =========================================
   3. MAIN FORM SUCCESS MESSAGE
   ========================================= */
.success-message {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    animation: fadeIn 0.5s;
}

.success-icon {
    font-size: 4rem;
    color: #388E3C;
    margin-bottom: 20px;
}

.wa-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    margin: 20px 0;
    transition: 0.3s;
}

.wa-chat-btn:hover { background-color: #128c7e; transform: scale(1.05); }

.newsletter-box {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #00509E;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.newsletter-form input { height: 40px; }
.newsletter-form button { height: 40px; padding: 0 20px; background: #00509E; color: white; border: none; border-radius: 4px; cursor: pointer; }

@media (max-width: 600px) {
    .newsletter-form { flex-direction: column; }
}

/* =========================================
   4. WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 30px; right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   POPUP WHATSAPP BUTTON (High Visibility)
   ========================================= */

.wa-popup-btn {
    display: inline-flex;       /* Align icon and text perfectly */
    align-items: center;
    justify-content: center;
    gap: 10px;                  /* Space between icon and text */
    
    background-color: #25d366;  /* Official WhatsApp Green */
    color: white !important;    /* Force text to be white */
    
    padding: 12px 30px;         /* Comfortable padding */
    border-radius: 50px;        /* Rounded pill shape */
    
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;      /* Remove underline */
    
    margin: 20px 0;             /* Space above and below */
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); /* Green Glow */
    transition: all 0.3s ease;
}

/* Hover Effect */
.wa-popup-btn:hover {
    background-color: #128c7e;  /* Darker green on hover */
    transform: translateY(-3px); /* Lifts up slightly */
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); /* Stronger glow */
}

/* Icon Size Adjustment */
.wa-popup-btn i {
    font-size: 1.3rem;
}


/* --- SERVICES SECTION --- */
.services-section {
    padding: 80px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 60px; /* Space between the grid and the text */
}

/* Left Column: Grid System */
.services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, 1fr);    /* 2 rows */
    gap: 15px;
}

.service-box {
    background-color: #90A4AE; /* Default Grey */
    border-radius: 8px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    min-height: 140px; /* Ensures boxes are square-ish */
}

/* Icon Styling */
.service-box .icon svg {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
    stroke: white;
}

/* Text Styling inside boxes */
.service-box h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* The Active Green Box */
.service-box.active {
    background-color: #388E3C; /* Match brand green */
}

.service-box:hover {
    opacity: 0.9;
}

/* Right Column: Text Content */
.services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content h2 {
    font-size: 2.2rem;
    color: #000;
    font-weight: 500;
    margin-bottom: 25px;
}

.services-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 160px;
    padding: 12px 20px;
    border: 1px solid #E64A19; /* Orange Border */
    color: #E64A19;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-read-more .arrow {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn-read-more:hover {
    background-color: #E64A19;
    color: white;
}

.btn-read-more:hover .arrow {
    transform: translateX(5px); /* Arrow moves right on hover */
}

/* Responsive Design */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column; /* Stack grid on top of text */
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns even on mobile for this layout */
        gap: 10px;
    }
    
    .service-box {
        padding: 15px;
        min-height: 120px;
    }
    
    .service-box h3 {
        font-size: 0.9rem;
    }
}

/* --- RELIABLE CONSULTANT SECTION --- */
.reliable-section {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.reliable-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden; /* Ensures the image and red box corners match */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Left Text Column (Red Box) */
.reliable-text-box {
    flex: 1;
    background-color: #E64A19; /* Deep Orange/Red to match image */
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease; /* Smooth transition when resizing */
}

.reliable-text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 600;
}

.reliable-text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Hidden Content Styles */
.hidden-content {
    display: none; /* Hidden by default */
}

.hidden-content.show {
    display: block;
    animation: fadeIn 0.5s;
}

/* Toggle Link (+ Show More) */
.toggle-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 1rem;
}

.toggle-link:hover {
    text-decoration: underline;
}

/* Call Me Back Button */
.btn-call-back {
    background-color: white;
    color: #E64A19;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    transition: background 0.3s;
}

.btn-call-back:hover {
    background-color: #f1f1f1;
}

.phone-icon {
    transform: rotate(90deg); /* Rotate standard phone HTML symbol */
    font-size: 1.2rem;
}

/* Right Image Column */
.reliable-image-box {
    flex: 1;
    position: relative;
    min-height: 100%; /* Ensures it stretches if text grows */
    flex: 0 0 50%;  /* Forces exactly 50% width */
    max-width: 50%; /* Prevents it from exceeding 50% */
}

.reliable-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Simple Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- RESPONSIVE FIX FOR RELIABLE SECTION --- */
@media (max-width: 900px) {
    .reliable-container {
        /* Stack vertically: Image on TOP, Text on BOTTOM */
        flex-direction: column-reverse; 
        height: auto; /* Allow container to grow */
    }

    /* FORCE both columns to take full width */
    .reliable-text-box, 
    .reliable-image-box {
        flex: none;      /* Disable the 50% flex setting */
        width: 100%;     /* Force 100% width */
        max-width: 100%; /* Remove the 50% limit */
        min-height: auto;
    }

    /* Adjust Image */
    .reliable-image-box {
        height: 300px; /* Give the image a fixed height on mobile */
    }

    /* Adjust Text Box */
    .reliable-text-box {
        padding: 30px 20px; /* Comfortable padding */
        text-align: left; /* Keep text aligned left or center if preferred */
    }

    .reliable-text-box h2 {
        font-size: 1.8rem;
    }
}

/* --- GUIDE SECTION (Blue) --- */
.guide-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.guide-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Left Image Column - FIXED to 50% */
.guide-image-box {
    flex: 0 0 50%;  /* Forces exactly 50% width */
    max-width: 50%; /* Prevents it from exceeding 50% */
    position: relative;
    min-height: 100%;
}

.guide-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Text Column - FIXED to 50% */
.guide-text-box {
    flex: 0 0 50%;  /* Forces exactly 50% width */
    max-width: 50%; /* Prevents it from exceeding 50% */
    background-color: #000080; /* Dark Navy Blue */
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.guide-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.guide-text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Toggle Link Styling */
.guide-toggle-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 1rem;
}

.guide-toggle-link:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE FIX FOR GUIDE SECTION --- */
@media (max-width: 900px) {
    .guide-container {
        /* Stack vertically: Image Top, Text Bottom */
        flex-direction: column; 
        height: auto;
    }

    /* FORCE full width and reset flex properties */
    .guide-image-box, 
    .guide-text-box {
        flex: none;       /* Disable flex scaling */
        width: 100%;      /* Force 100% width */
        max-width: 100%;  /* Remove the 50% limit */
        min-height: auto; /* Reset desktop height constraint */
    }
    
    /* Adjust Image */
    .guide-image-box {
        height: 250px; /* Fixed height for the image on mobile */
    }
    
    /* Adjust Text Box */
    .guide-text-box {
        padding: 30px 20px; /* Adjust padding for mobile screen */
    }

    .guide-text-box h2 {
        font-size: 1.8rem;
    }
}


/* --- GOVERNMENT APPROVED SECTION (Green) --- */
.gov-section {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.gov-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Left Text Column (Green Box) */
.gov-text-box {
    flex: 1;
    background-color: #388E3C; /* Green to match brand */
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.gov-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.gov-text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Custom Checkbox List Styling */
.check-list {
    list-style: none;
    margin-top: 15px;
    margin-bottom: 20px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✔'; /* Checkmark symbol */
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: white;
    color: #388E3C;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

/* Toggle Link Styling */
.gov-toggle-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 1rem;
}

.gov-toggle-link:hover {
    text-decoration: underline;
}

/* Right Image Column */
.gov-image-box {
    flex: 1;
    position: relative;
    min-height: 100%;
    flex: 0 0 50%;  /* Forces exactly 50% width */
    max-width: 50%; /* Prevents it from exceeding 50% */
}

.gov-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- RESPONSIVE FIX FOR GOVERNMENT SECTION --- */
@media (max-width: 900px) {
    .gov-container {
        /* Stack vertically: Image on TOP, Text on BOTTOM */
        flex-direction: column-reverse;
    }
    
    /* FORCE both columns to take full width */
    .gov-image-box, 
    .gov-text-box {
        flex: none;       /* Disable flex scaling */
        width: 100%;      /* Force 100% width */
        max-width: 100%;  /* Remove the 50% limit */
        min-height: auto; /* Reset desktop height constraint */
    }
    
    .gov-image-box {
        height: 300px; /* Fixed height for image on mobile */
    }
    
    .gov-text-box {
        padding: 30px 20px; /* Adjust padding for mobile screens */
    }

    .gov-text-box h2 {
        font-size: 1.8rem; /* Slightly smaller heading */
    }
}


/* --- AFFORDABLE SERVICES SECTION --- */
.affordable-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.affordable-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Left Image Column - FIXED to 50% */
.affordable-image-box {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    min-height: 100%;
}

.affordable-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Text Column - FIXED to 50% (Red) */
.affordable-text-box {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #E64A19; /* Match previous Red/Orange */
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.affordable-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.affordable-text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Toggle Link Styling */
.affordable-toggle-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 1rem;
}

.affordable-toggle-link:hover {
    text-decoration: underline;
}

/* Button Grid Styling */
.affordable-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 15px;
    margin-top: 10px;
}

.grid-btn {
    border: 1px solid white;
    color: white;
    text-decoration: none;
    padding: 12px 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.grid-btn:hover {
    background-color: white;
    color: #E64A19;
}

/* --- RESPONSIVE FIX FOR AFFORDABLE SECTION --- */
@media (max-width: 900px) {
    .affordable-container {
        flex-direction: column; /* Stack vertically: Image Top, Text Bottom */
    }
    
    /* Force full width and disable the 50% split */
    .affordable-image-box, 
    .affordable-text-box {
        flex: none;       /* Important: stops flex scaling */
        width: 100%;      /* Forces full width */
        max-width: 100%;  /* Removes the 50% limit */
        min-height: auto; /* Reset desktop height constraint */
    }
    
    .affordable-image-box {
        height: 250px; /* Fixed height for image */
    }
    
    .affordable-text-box {
        padding: 30px 20px; /* Reduce padding for mobile */
    }

    .affordable-text-box h2 {
        font-size: 1.8rem;
    }
}

/* Separate Media Query for very small screens (Phone) */
@media (max-width: 500px) {
    .affordable-btn-grid {
        grid-template-columns: 1fr; /* Stack buttons in 1 column */
    }
}

/* --- OFFER SECTION (Dark Grey) --- */
.offer-section {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.offer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Left Text Column - FIXED 50% */
.offer-text-box {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #2c2c2c; /* Dark Grey / Almost Black */
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.offer-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.offer-text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Toggle Link Styling */
.offer-toggle-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 1rem;
}

.offer-toggle-link:hover {
    text-decoration: underline;
}

/* The Grid for Service Buttons */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 15px;
    margin-top: 10px;
}

.service-link {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px; /* Ensures boxes are uniform height */
    line-height: 1.3;
}

.service-link:hover {
    background-color: white;
    color: #2c2c2c;
    border-color: white;
}

/* Right Image Column - FIXED 50% */
.offer-image-box {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    min-height: 100%;
}

.offer-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- RESPONSIVE FIX FOR OFFER SECTION --- */
@media (max-width: 900px) {
    .offer-container {
        /* Stack vertically: Image on TOP, Text on BOTTOM */
        flex-direction: column-reverse;
    }
    
    /* FORCE both columns to take full width */
    .offer-text-box, 
    .offer-image-box {
        flex: none;       /* Disable the 50% flex setting completely */
        width: 100%;      /* Force 100% width */
        max-width: 100%;  /* Remove the 50% limit */
        min-height: auto;
    }
    
    .offer-image-box {
        height: 300px; /* Fixed height for image */
    }
    
    .offer-text-box {
        padding: 40px 20px; /* Adjusted padding for mobile */
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
    
}


/* --- BEST AGENCY SECTION (Green) --- */
.best-agency-section {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.best-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Left Image Column - FIXED 50% */
.best-image-box {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    min-height: 100%;
}

.best-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Text Column - FIXED 50% */
.best-text-box {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #388E3C; /* Brand Green */
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.best-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.best-text-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Toggle Link Styling */
.best-toggle-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 1rem;
}

.best-toggle-link:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE FIX FOR BEST AGENCY SECTION --- */
@media (max-width: 900px) {
    .best-container {
        flex-direction: column; /* Stacks vertically: Image Top, Text Bottom */
    }
    
    /* FORCE both columns to take full width */
    .best-image-box, 
    .best-text-box {
        flex: none;       /* Disable the 50% flex setting completely */
        width: 100%;      /* Force 100% width */
        max-width: 100%;  /* Remove the 50% limit */
        min-height: auto;
    }
    
    .best-image-box {
        height: 300px; /* Fixed height for image so it doesn't disappear */
    }
    
    .best-text-box {
        padding: 40px 20px; /* Comfortable padding for mobile reading */
    }

    .best-text-box h2 {
        font-size: 1.8rem; /* Slightly smaller heading */
    }
}


/* --- FAQ SECTION --- */
.faq-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 40px;
    background-color: #fff;
}

.faq-container h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Individual FAQ Item */
.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question Styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    margin: 0;
}

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
}

/* Active State (Open) */
.faq-item.active .faq-question h3 {
    color: #E64A19; /* Orange Color when open */
}

.faq-item.active .faq-question .icon {
    color: #E64A19;
}

/* Answer Styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Arbitrary height to allow expansion */
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-container {
        padding: 20px;
    }
    
    .faq-container h2 {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
}


/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-section {
    padding: 80px 20px;
    background-color: #f9fbfd; /* Very light blue tint */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0A192F;
    margin-bottom: 15px;
}

.section-header .sub-heading {
    display: block;
    color: #00509E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.header-divider {
    width: 60px;
    height: 4px;
    background: #FFA726; /* Orange accent */
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 5px solid #00509E; /* Brand Blue Border */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Quote Icon */
.quote-icon {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.feedback-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 80px; /* Aligns cards if text length varies */
}

/* Client Info Area */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background-color: #00509E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.client-details h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2px;
}

.visa-type {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.stars {
    color: #FFD700; /* Gold */
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
    }
}

/* --- NEWS & BLOGS SECTION --- */
.news-section {
    padding: 60px 20px;
    background-color: #fcfcfc; /* Very light grey background */
}

/* Header Styling */
.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-header .sub-heading {
    color: #388E3C; /* Brand Green */
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.news-header h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.news-header .header-divider {
    width: 60px;
    height: 3px;
    background-color: #FFA000; /* Orange/Yellow accent */
    margin: 0 auto;
}

/* Container Layout */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

/* Shared Card Shadow */
.card-shadow {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.card-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* --- Left Column: Featured Article --- */
.featured-article {
    flex: 1; /* Takes roughly 50% */
    display: flex;
    flex-direction: column;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 25px;
}

.featured-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #222;
}

.featured-content .post-date {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.featured-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Right Column: News List --- */
.news-list {
    flex: 1; /* Takes roughly 50% */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    align-items: center; /* Vertically center content */
    height: 100%; /* Fill available height in flex gap */
}

.news-item .item-image {
    flex: 0 0 150px; /* Fixed width for thumbnail */
    height: 100%;
}

.news-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-content {
    padding: 15px 20px;
}

.item-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #222;
    /* Limit title to 2 lines */
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    /* Limit text to 2 lines */
    display: -webkit-box;
    
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 900px) {
    .news-container {
        flex-direction: column;
    }

    .news-item {
        flex-direction: row;
        height: auto;
    }
    
    .news-item .item-image {
        height: 120px; /* Fixed height for mobile thumbnails */
    }
}

@media (max-width: 480px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-item .item-image {
        width: 100%;
        flex: 0 0 150px;
    }
}


/* --- ABOUT PAGE STYLES --- */

/* --- CREATIVE HERO SECTION --- */
.about-hero {
    position: relative;
    /* Sky Blue Gradient */
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    padding: 30px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Keeps animated clouds inside */
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 10; /* Keeps content above clouds */
}

/* --- Left Text Styling --- */
.about-text-content {
    flex: 1;
    animation: slideUp 1s ease-out;
}

.glass-tagline {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    color: #004e92;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 78, 146, 0.2);
    margin-bottom: 20px;
}

.highlight-text {
    color: #004e92; /* Deep Blue Accent */
    position: relative;
}

/* Creative Underline for "US" */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
    transform: rotate(-2deg);
}

.hero-desc {
    font-size: 1.1rem;
    color: #fff;
    max-width: 450px;
    line-height: 1.6;
    font-weight: 500;
}

/* --- Right Form Styling (Glassmorphism) --- */
.about-form-wrapper {
    flex: 1;
    max-width: 550px;
    animation: slideUp 1s ease-out 0.2s backwards; /* 0.2s delay */
}

.glass-form {
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
    backdrop-filter: blur(12px); /* Blur effect */
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.glass-form h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Floating Input Fields */
.glass-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.glass-input:focus {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #66a6ff;
}

.textarea-box {
    margin-bottom: 20px;
    resize: none;
}

/* Glowing Submit Button */
.glow-submit-btn {
    width: 100%;
    padding: 15px;
    background: #004e92;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 78, 146, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.glow-submit-btn:hover {
    background: #003366;
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 78, 146, 0.6);
}

.arrow {
    transition: transform 0.3s;
}

.glow-submit-btn:hover .arrow {
    transform: translateX(5px);
}

/* --- ANIMATED BACKGROUND ELEMENTS --- */
.sky-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Mouse clicks pass through */
}

.cloud {
    position: absolute;
    font-size: 6rem;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.8);
    animation: floatCloud 25s linear infinite;
}

.cloud-1 { top: 10%; left: -10%; animation-duration: 35s; }
.cloud-2 { top: 50%; left: -20%; animation-duration: 45s; font-size: 4rem; opacity: 0.4; }
.cloud-3 { top: 20%; left: -15%; animation-duration: 28s; font-size: 8rem; opacity: 0.2; }

.airplane {
    position: absolute;
    top: 30%;
    font-size: 3rem;
    animation: flyPlane 20s linear infinite;
    z-index: 1;
    transform: rotate(15deg);
}

@keyframes floatCloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(110vw); } /* Move across screen */
}

@keyframes flyPlane {
    0% { left: -10%; top: 40%; transform: rotate(15deg); }
    50% { top: 20%; }
    100% { left: 110%; top: 10%; transform: rotate(15deg); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text-content {
        margin-bottom: 30px;
    }

    .hero-title { font-size: 3.5rem; }
    
    .glass-form { padding: 25px; }
}

@media (max-width: 600px) {
    .input-group {
        grid-template-columns: 1fr; /* Stack inputs */
    }
}

/* --- MOST RELIABLE CONSULTANCY SECTION --- */
.most-reliable-section {
    padding: 80px 20px;
    background-color: #fff; /* Clean white background */
    display: flex;
    justify-content: center;
}

.most-reliable-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center; /* Vertically center the content */
    gap: 60px; /* Space between text and image */
}

/* Left Text Column */
.most-reliable-text {
    flex: 1; /* Takes 50% width */
}

.most-reliable-text h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.most-reliable-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Button Styling */
.btn-counselling {
    display: inline-block;
    background-color: #E64A19; /* Brand Red/Orange */
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-counselling:hover {
    background-color: #D84315; /* Darker shade on hover */
}

/* Right Image Column */
.most-reliable-image {
    flex: 1; /* Takes 50% width */
    position: relative;
}

.most-reliable-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* Slight rounded corners */
    /* Optional: Add shadow if you want it to pop like previous sections */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 900px) {
    .most-reliable-container {
        flex-direction: column-reverse; /* Puts image on top on mobile */
        gap: 30px;
    }
    
    .most-reliable-text h2 {
        font-size: 2rem;
    }
    
    .btn-counselling {
        width: 100%; /* Full width button on mobile */
        text-align: center;
    }
}

/* --- REASONS TO CHOOSE US SECTION --- */
.choose-us-section {
    padding: 80px 20px;
    /* Light pink background with subtle dot pattern */
    background-color: #fff5f7; 
    background-image: radial-gradient(#eecfd6 1px, transparent 1px);
    background-size: 20px 20px; /* Dot spacing */
    overflow: hidden; /* Prevents scrollbar during animation */
}

.choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content */
.choose-content {
    flex: 1;
}

.sub-title {
    color: #388E3C; /* Green Accent */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Reason Cards */
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start; /* Aligns icon to top of text */
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #3f681d; /* Dark Green Icon bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(63, 104, 29, 0.3);
}

.text-box h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222;
    font-weight: 600;
}

.text-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Right Image */
.choose-image {
    flex: 1;
    position: relative;
}

.choose-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1); /* Shadow offset effect */
    display: block;
}

/* --- ANIMATION CLASSES --- */

/* Initial State: Hidden and shifted */
.hidden-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.hidden-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

/* Active State: Visible (Added by JS) */
.show-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delays for cards */
.delay-100 { transition-delay: 0.2s; }
.delay-200 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
    .choose-container {
        flex-direction: column;
    }

    .hidden-left, .hidden-right {
        transform: translateY(30px); /* Animate Up on mobile */
    }
}

/* --- CONTACT PAGE STYLES --- */

/* 1. Hero Section with Gradient Animation */
.contact-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(-45deg, #003366, #388E3C, #2c3e50, #4ca1af);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-bottom: 50px; /* Space for overlapping cards */
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-hero .highlight {
    color: #FFA000; /* Yellow Accent */
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 2. Floating Cards Section */
.contact-cards-section {
    position: relative;
    margin-top: -80px; /* Pulls section UP to overlap hero */
    z-index: 10;
    padding: 0 20px;
}

.cards-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Make the center card pop out more */
.center-card {
    transform: scale(1.05);
    border-bottom: 5px solid #388E3C;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: #f0fdf4;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: transform 0.4s;
}

.contact-card:hover .icon-box {
    transform: rotateY(360deg); /* 3D Spin effect on hover */
    background: #388E3C;
    color: white; /* Icon turns white */
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* 3. Main Form Section */
.contact-main-section {
    padding: 100px 20px 60px 20px; /* Top padding accounts for overlap */
    background-color: #fafafa;
}

.main-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-wrapper {
    flex: 1;
    padding: 50px;
}

.form-header h2 {
    color: #333;
    margin-bottom: 5px;
}

.form-header .line {
    width: 50px;
    height: 3px;
    background: #388E3C;
    margin-bottom: 30px;
}

/* Creative Input Fields (Animated Underline) */
.input-group {
    position: relative;
    margin-bottom: 35px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.input-group textarea {
    resize: none;
    height: 40px; /* Initial height */
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Move label up when input is focused or has valid text */
.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -15px;
    font-size: 0.85rem;
    color: #388E3C;
    font-weight: 600;
}

/* Animated Border Line */
.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #388E3C;
    transition: 0.4s;
}

.input-group input:focus ~ .focus-border,
.input-group textarea:focus ~ .focus-border {
    width: 100%;
}

/* Send Button */
.btn-send {
    background: #333;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-send:hover {
    background: #388E3C;
    padding-right: 40px; /* Extends button slightly */
}

.plane-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.btn-send:hover .plane-icon {
    transform: translateX(5px) translateY(-5px); /* Plane flies up-right */
}

/* Map Wrapper */
.map-wrapper {
    flex: 1;
    min-height: 500px;
}

/* Responsive */
@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: 1fr; /* Stack cards */
        gap: 20px;
    }
    
    .contact-cards-section {
        margin-top: -40px;
    }

    .main-container {
        flex-direction: column-reverse; /* Map on top, Form below */
    }

    .map-wrapper {
        min-height: 300px;
    }

    .form-wrapper {
        padding: 30px;
    }
}


/* =========================================
   CREDIBLE IMMIGRATION - BRAND STYLES
   ========================================= */

:root {
    /* BRAND COLORS FROM LOGO */
    --cred-primary: #00509E;   /* The Globe Blue */
    --cred-dark: #0A192F;      /* Deep Navy/Black for text */
    --cred-light: #F0F4F8;     /* Light Blue-Grey Background */
    --cred-accent: #FFA726;    /* Gold/Orange for CTA Buttons (High Contrast) */
    --cred-glass: rgba(0, 80, 158, 0.85); /* Blue Glass Effect */
}

/* GLOBAL RESET */
/* h1, h2, h3, h4 { font-weight: 800; color: var(--cred-dark); margin-bottom: 1rem; letter-spacing: -0.5px; } */

.cred-container { max-width: 1280px; margin: 0 auto; padding: 0 25px; }
.cred-section { padding: 100px 0; position: relative; overflow: hidden; }
.cred-bg-light { background: var(--cred-light); }
.cred-bg-white { background: #fff; }
.cred-text-center { text-align: center; }

/* --- 1. ANIMATIONS --- */
.cred-reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.cred-reveal.active { opacity: 1; transform: translateY(0); }

/* --- 2. HERO SECTIONS --- */
.cred-hero-xl {
    height: 85vh; min-height: 600px;
    background-attachment: fixed; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.cred-hero-hub { background-image: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1600'); }
.cred-hero-can { background-image: linear-gradient(rgba(0, 80, 158, 0.5), rgba(0, 80, 158, 0.5)), url('https://images.unsplash.com/photo-1517935706615-2717063c2225?q=80&w=1600'); }
.cred-hero-aus { background-image: linear-gradient(rgba(0, 80, 158, 0.5), rgba(0, 80, 158, 0.5)), url('images/australia.webp'); }

.cred-hero-glass {
    text-align: center; color: white; max-width: 900px; padding: 60px;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.2); 
    border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.cred-hero-glass h1 { font-size: 2.5rem; margin-bottom: 20px; color: white; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.cred-hero-glass p { font-size: 1.2rem; font-weight: 300; opacity: 0.95; }

/* --- 3. CREATIVE POPUP (BLUE BOARDING PASS) --- */
/* =========================================
   7. PREMIUM BOARDING PASS MODAL
   ========================================= */

.cred-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.85); /* Dark Navy tint */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    z-index: 10000;
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}

.cred-modal-overlay.open { display: flex; opacity: 1; }

.cred-boarding-pass {
    background: white;
    width: 95%; max-width: 900px;
    display: flex;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: translateY(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.cred-modal-overlay.open .cred-boarding-pass {
    transform: translateY(0) scale(1);
}

/* --- LEFT SIDE (FORM) --- */
.cred-pass-left {
    flex: 1.6;
    padding: 50px 40px;
    position: relative;
    border-right: 2px dashed #dbeafe; /* Perforated line effect */
    background: #fff;
}

/* Ticket Cutouts (The "Notches") */
.cred-pass-left::before, .cred-pass-left::after {
    content: ''; position: absolute; right: -15px; width: 30px; height: 30px;
    background-color: #0A192F; /* Matches overlay color */
    border-radius: 50%; z-index: 2;
}
.cred-pass-left::before { top: -15px; }
.cred-pass-left::after { bottom: -15px; }

/* Typography */
.cred-pass-left h3 {
    font-size: 1.8rem; color: var(--cred-primary);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 10px; font-weight: 800;
}

.cred-pass-left p {
    color: #666; font-size: 0.95rem; margin-bottom: 30px;
}

/* Close Button */
.cred-close-btn {
    position: absolute; top: 20px; left: 20px;
    font-size: 1.8rem; color: #ccc; cursor: pointer;
    transition: 0.3s; line-height: 1;
}
.cred-close-btn:hover { color: var(--cred-accent); transform: rotate(90deg); }

/* Stylized Inputs */
.cred-input {
    width: 100%; padding: 15px;
    border: 2px solid #f0f4f8;
    background: #f8fafc;
    border-radius: 8px; margin-bottom: 20px;
    font-size: 1rem; color: #333;
    transition: 0.3s;
    font-weight: 500;
}

.cred-input::placeholder { color: #aaa; font-weight: 400; }

.cred-input:focus {
    border-color: var(--cred-primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 80, 158, 0.1);
    outline: none;
}

/* Submit Button */
.cred-submit-btn {
    width: 100%; padding: 16px;
    background: var(--cred-dark);
    color: white; font-weight: bold; font-size: 1.1rem;
    border: none; border-radius: 8px; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cred-submit-btn:hover {
    background: var(--cred-accent);
    color: var(--cred-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 167, 38, 0.3);
}

/* --- RIGHT SIDE (BRANDING) --- */
.cred-pass-right {
    flex: 1;
    background: linear-gradient(135deg, #00509E 0%, #002b5e 100%);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Pattern Overlay (World Map Vibe) */
.cred-pass-right::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5; z-index: -1;
}

.cred-pass-right i {
    font-size: 5rem; margin-bottom: 25px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: floatPlane 3s ease-in-out infinite;
}

.cred-pass-right h2 {
    color: white; font-size: 2rem; margin-bottom: 10px;
}

.cred-pass-right p {
    font-size: 1rem; opacity: 0.8; letter-spacing: 1px; text-transform: uppercase;
}

/* Plane Animation */
@keyframes floatPlane {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .cred-boarding-pass {
        flex-direction: column-reverse; /* Form on bottom, Brand on top */
        width: 90%;
        max-height: 90vh; /* Prevent overflow */
        overflow-y: auto; /* Scrollable if needed */
    }

    /* Adjust Right Side (Top on Mobile) */
    .cred-pass-right {
        padding: 30px;
        flex: 0 0 auto;
    }
    .cred-pass-right i { font-size: 3rem; margin-bottom: 10px; }
    .cred-pass-right h2 { font-size: 1.5rem; }

    /* Adjust Left Side (Form) */
    .cred-pass-left {
        border-right: none;
        border-top: 2px dashed #dbeafe;
        padding: 30px 20px;
    }

    /* Move Cutouts to Horizontal Axis */
    .cred-pass-left::before, .cred-pass-left::after {
        top: -15px; width: 30px; height: 30px;
    }
    .cred-pass-left::before { left: -15px; right: auto; }
    .cred-pass-left::after { right: -15px; left: auto; }

    .cred-close-btn { color: white; top: 15px; right: 15px; left: auto; }
}

/* --- 4. ZIG-ZAG LAYOUTS --- */
.cred-zig-zag { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.cred-zig-reverse { flex-direction: row-reverse; }
.cred-zig-img {
    flex: 1; height: 500px; border-radius: 20px;
    background-size: cover; background-position: center;
    box-shadow: 20px 20px 0px var(--cred-primary); /* Blue Offset Shadow */
}
.cred-zig-text { flex: 1; }
.cred-zig-text h2 { font-size: 3rem; margin-bottom: 25px; color: var(--cred-primary); }

/* --- 5. SERVICE CARDS --- */
.cred-service-card {
    background: white; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 50px;
    border-top: 6px solid var(--cred-primary); transition: 0.3s;
}
.cred-service-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(0,0,0,0.1); }
.cred-card-flex { display: flex; align-items: stretch; }
.cred-card-visual { width: 350px; background-size: cover; background-position: center; flex-shrink: 0; }
.cred-card-data { padding: 40px; flex: 1; }
.cred-card-data h3 { color: var(--cred-primary); font-size: 2rem; margin-bottom: 15px; }

/* =========================================
   INFO GRID - SOLID COLOR HIGHLIGHT
   ========================================= */

.cred-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cred-info-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    cursor: default;
    z-index: 1;
    overflow: hidden;
}

/* --- HOVER EFFECT: The "Highlight" --- */
.cred-info-box:hover {
    background: var(--cred-primary); /* Fills with Blue */
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 80, 158, 0.4);
    border-color: var(--cred-primary);
}

/* --- ICON STYLING --- */
.cred-info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 80px; height: 80px;
    display: inline-flex;
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    
    /* Default: Blue Icon on Light BG */
    background: #e3f2fd; 
    color: var(--cred-primary);
    transition: all 0.4s ease;
}

/* Icon changes on Hover */
.cred-info-box:hover .cred-info-icon {
    background: rgba(255,255,255,0.2); /* Semi-transparent white */
    color: #ffffff;
    transform: scale(1.1) rotateY(180deg);
}

/* --- TEXT STYLING --- */

/* The Number Value */
.cred-info-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    color: var(--cred-primary); /* Default Blue */
    transition: color 0.3s ease;
}

.cred-info-box:hover .cred-info-value {
    color: #ffffff; /* Turns White */
}

/* The Title */
.cred-info-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.cred-info-box:hover h4 {
    color: #ffffff; /* Turns White */
}

/* The Description */
.cred-info-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.cred-info-box:hover p {
    color: rgba(255, 255, 255, 0.9); /* Turns Soft White */
}
/* --- 6. BUTTONS --- */
.cred-btn-cta {
    padding: 15px 40px; background: var(--cred-accent); color: white;
    font-weight: bold; border-radius: 5px; text-decoration: none;
    margin-top: 20px;
    display: inline-block; cursor: pointer; border: none; font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.4); transition: 0.3s;
}
.cred-btn-cta:hover { background: #EF6C00; transform: translateY(-2px); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .cred-zig-zag { flex-direction: column; }
    .cred-card-flex { flex-direction: column; }
    .cred-card-visual { width: 100%; height: 250px; }
    .cred-boarding-pass { flex-direction: column; width: 95%; }
    .cred-pass-left::after, .cred-pass-left::before { display: none; }
    .cred-info-grid { grid-template-columns: 1fr; }
    .cred-hero-glass h1 { font-size: 2.8rem; }
}



/* --- VISITOR PAGE ADDITIONS --- */

/* 1. TIMELINE (Roadmap) */
.cred-timeline-section { padding: 100px 0; background: white; }
.cred-timeline {
    display: flex; justify-content: space-between; position: relative; margin-top: 60px;
}
.cred-timeline::before {
    content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 4px;
    background: #e0e0e0; z-index: 0;
}
.cred-step {
    position: relative; z-index: 1; text-align: center; flex: 1; padding: 0 15px;
    opacity: 0; transform: translateY(20px); transition: 0.5s all ease;
}
.cred-step.active { opacity: 1; transform: translateY(0); }

.cred-step-icon {
    width: 80px; height: 80px; background: var(--cred-primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 20px; border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: 0.3s;
}
.cred-step:hover .cred-step-icon { transform: scale(1.1); background: var(--cred-accent); color: var(--cred-dark); }
.cred-step h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--cred-dark); }
.cred-step p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* 2. DOCUMENT CHECKLIST GRID */
.cred-doc-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px;
}
.cred-doc-card {
    background: white; padding: 30px; border-radius: 15px; text-align: center;
    border: 1px solid #eee; transition: 0.3s; position: relative; overflow: hidden;
}
.cred-doc-card:hover {
    border-color: var(--cred-primary); transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.cred-doc-card i { font-size: 2.5rem; color: var(--cred-primary); margin-bottom: 15px; }
.cred-doc-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--cred-accent); transform: scaleX(0); transition: 0.3s;
}
.cred-doc-card:hover::after { transform: scaleX(1); }

/* 3. REFUSAL SECTION (Dark Theme) */
.cred-dark-section { background: var(--cred-dark); color: white; padding: 100px 0; }
.cred-dark-section h2 { color: white; }
.cred-dark-section p { color: #ccc; }
.cred-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 50px; }
.cred-solution-box {
    background: rgba(255,255,255,0.05); padding: 40px; border-radius: 15px;
    border-left: 5px solid var(--cred-accent);
}
.cred-solution-box h3 { color: var(--cred-accent); margin-bottom: 15px; }

/* 4. FAQ ACCORDION */
.cred-faq-container { max-width: 900px; margin: 0 auto; }
.cred-accordion-item { border-bottom: 1px solid #ddd; margin-bottom: 10px; }
.cred-accordion-btn {
    width: 100%; padding: 20px; text-align: left; background: white; border: none;
    font-size: 1.1rem; font-weight: bold; color: var(--cred-dark); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; transition: 0.3s;
}
.cred-accordion-btn:hover { color: var(--cred-primary); }
.cred-accordion-btn::after { content: '+'; font-size: 1.5rem; }
.cred-accordion-btn.active::after { content: '-'; color: var(--cred-primary); }
.cred-accordion-content {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
    background: #f9f9f9; padding: 0 20px;
}
.cred-accordion-content p { padding: 20px 0; color: #555; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .cred-timeline { flex-direction: column; gap: 40px; }
    .cred-timeline::before { left: 40px; width: 4px; height: 100%; top: 0; }
    .cred-step { display: flex; text-align: left; gap: 20px; }
    .cred-doc-grid { grid-template-columns: 1fr 1fr; }
    .cred-solution-grid { grid-template-columns: 1fr; }
}


/* --- STUDY PAGE ADDITIONS --- */

/* 1. COURSE CARDS */
.cred-course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 50px; }
.cred-course-card {
    background: white; padding: 30px; border-radius: 15px; text-align: center;
    border: 1px solid #eee; transition: 0.3s; position: relative;
}
.cred-course-card:hover {
    transform: translateY(-5px); border-color: var(--cred-primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.cred-course-icon {
    width: 60px; height: 60px; background: #e3f2fd; color: var(--cred-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px;
}
.cred-course-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.cred-course-card p { font-size: 0.9rem; color: #666; }

/* 2. TESTIMONIALS (Blue Theme) */
.cred-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cred-testi-card {
    background: white; padding: 40px; border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); border-bottom: 5px solid var(--cred-accent);
}
.cred-testi-text { font-style: italic; color: #555; margin-bottom: 20px; font-size: 1.05rem; }
.cred-user { display: flex; align-items: center; gap: 15px; }
.cred-avatar {
    width: 50px; height: 50px; border-radius: 50%; background: #ddd;
    background-size: cover; background-position: center;
}
.cred-user-info h5 { margin: 0; font-size: 1.1rem; color: var(--cred-dark); }
.cred-user-info span { font-size: 0.85rem; color: var(--cred-primary); font-weight: bold; }

/* RESPONSIVE */
@media (max-width: 1000px) {
    .cred-course-grid { grid-template-columns: 1fr 1fr; }
    .cred-testi-grid { grid-template-columns: 1fr; }
}


/* --- VISITOR PAGE SPECIFIC --- */
.cred-hero-visitor {
    background-image: linear-gradient(rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.6)), url('images/newyork.jpg');
}

/* --- STUDY PAGE HERO --- */
.cred-hero-study {
    background-image: linear-gradient(rgba(0, 80, 158, 0.6), rgba(0, 80, 158, 0.6)), url('images/usa.jpg');
}


/* --- FAMILY PAGE HERO --- */
.cred-hero-family {
    background-image: linear-gradient(rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.5)), url('https://images.unsplash.com/photo-1542037104857-ffbb0b9155fb?q=80&w=1600');
}



/* --- TRAINING PAGE ADDITIONS --- */

/* 1. Hero Image */
.cred-hero-train {
    background-image: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600');
}

/* 2. Creative Score Badges for the Info Grid */
.cred-score-badge {
    display: inline-block;
    background: var(--cred-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Ensure testimonials use the blue theme */
.cred-testi-card {
     border-bottom: 5px solid var(--cred-primary);
}
.cred-user-info span {
    color: var(--cred-accent); /* Gold color for scores in testimonials */
}


/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10000; /* Stays on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulseBtn 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Darker Green on Hover */
    transform: scale(1.1);
}

/* Pulse Animation to grab attention */
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Adjustment (Move it slightly to avoid covering content) */
@media (max-width: 900px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}



/* =========================================
   ENQUIRY PAGE STYLES
   ========================================= */

/* Page Header */
.page-header {
    background-color: #0A192F; /* Brand Dark Blue */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Form Container */
.enquiry-section {
    padding: 60px 20px;
    background-color: #f4f6f8;
}

.enquiry-container {
    max-width: 800px; /* Wider for detailed form */
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required { color: red; }

/* Inputs & Selects */
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form textarea,
.enquiry-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff;
}

.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
    border-color: #00509E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 80, 158, 0.1);
}

/* 2-Column Grid for Desktop */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- RESUME UPLOAD BOX --- */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    opacity: 0; /* Hidden but clickable */
    cursor: pointer;
    z-index: 2;
}

.file-upload-box {
    border: 2px dashed #ccc;
    background: #fafafa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.file-upload-box:hover {
    border-color: #00509E;
    background: #f0f8ff;
}

.file-upload-box i {
    font-size: 2.5rem;
    color: #00509E;
    margin-bottom: 10px;
}

.file-note {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.file-name-display {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Submit Button */
.full-width {
    width: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .two-col { grid-template-columns: 1fr; }
    .enquiry-container { padding: 25px; }
}