/* Color Palette from Logo */
:root {
    --primary-navy: #1a1a1a;
    --accman-red: #a12c2f;
    --accman-blue: #005689;
    --white: #ffffff;
    --grey: #f4f4f4;
    --speed: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--grey);
}

/* Logic: Hide the checkbox */
.nav-checkbox { display: none; }

/* Header UI */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 100;
}

.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px; /* Size for the ACCMAN logo */
    object-fit: contain;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-admission {
    background: var(--accman-blue);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-admission:hover { background: var(--accman-red); }

/* Hamburger UI */
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background: var(--primary-navy);
    transition: var(--speed);
}

/* Side Panel UI */
.side-panel {
    position: fixed;
    top: 0;
    right: -450px; /* Start hidden */
    width: 450px;
    max-width: 95%;
    height: 100%;
    background: var(--primary-navy);
    color: white;
    z-index: 1000;
    transition: var(--speed);
    padding: 60px 40px;
    box-sizing: border-box;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: var(--accman-red);
    cursor: pointer;
}

.panel-heading {
    font-size: 28px;
    border-left: 4px solid var(--accman-red);
    padding-left: 15px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-card i {
    font-size: 24px;
    color: var(--accman-red);
}

.contact-card span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.panel-links {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.panel-links a:hover {
    color: var(--accman-red);
    transform: translateX(10px);
}

/* Active State Logic */
.nav-checkbox:checked ~ .side-panel {
    right: 0;
}

.nav-checkbox:checked ~ .backdrop {
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--speed);
    z-index: 500;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .btn-admission { display: none; }
    .side-panel { width: 100%; }
}
/* --- HERO WITH FORM ON RIGHT --- */
.hero-admission {
    padding: 120px 5% 80px;
    background: linear-gradient(to right, #ffffff 60%, #f4f4f4 40%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Form takes the right 45% */
    gap: 50px;
    align-items: flex-start;
}

/* Left side typography */
.admission-badge {
    background: #a12c2f; /* ACCMAN Red */
    color: white;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-info h1 {
    font-size: 3.5rem;
    color: #003366; /* ACCMAN Navy */
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight { color: #a12c2f; }

.hero-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.trust-icons {
    display: flex;
    gap: 20px;
}

.t-item {
    font-weight: 600;
    color: #003366;
    font-size: 14px;
}

.t-item i { color: #a12c2f; margin-right: 5px; }

/* Right side Form Container */
.hero-form-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 5px solid #a12c2f;
}

.form-box h3 {
    color: #003366;
    margin-bottom: 5px;
    font-size: 22px;
}

.form-box p {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* Form ID Placeholder styling */
#ee-form-1 {
    min-height: 400px; /* Space for the widget to load */
    width: 100%;
}

/* RESPONSIVE: Stack on Mobile */
@media (max-width: 992px) {
    .hero-admission {
        background: #ffffff;
        padding-top: 100px;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-info {
        text-align: center;
        margin-bottom: 40px;
    }
    .trust-icons {
        justify-content: center;
    }
}
/* Container for centering */
.button-wrapper {
    padding-bottom: 40px;
    align-items: left !important;
    display: flex;
    justify-content: left;
    background: #ffffff; /* Contrast against white or light grey */
}

/* Base Button Styling */
.btn-glossy-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: #eb3535; /* Primary Brand Red */
    color: #ffffff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    
    /* The Glow - Primary shadow */
    box-shadow: 0 10px 20px rgba(235, 53, 53, 0.3), 
                0 0 0 1px rgba(235, 53, 53, 0.1);
    
    /* Pulse animation for the glow */
    animation: btnPulse 2s infinite;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: left;
    gap: 12px;
}

/* The Glossy Reflection Layer */
.reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: all 0.6s;
    z-index: 1;
}

/* Interactive Hover Effects */
.btn-glossy-glow:hover {
    transform: translateY(-5px) scale(1.03);
    background: #d42b2b; /* Darker red on hover */
    box-shadow: 0 15px 30px rgba(235, 53, 53, 0.5), 
                0 0 20px rgba(235, 53, 53, 0.4);
}

.btn-glossy-glow:hover .reflection {
    left: 100%; /* Shimmer effect moves across the button */
}

/* Glass Surface Overlay */
.btn-glossy-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
    border-radius: 50px 50px 0 0;
}

/* Glowing Pulse Animation */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(235, 53, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(235, 53, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(235, 53, 53, 0);
    }
}
/* --- TRENDING ADMISSION STEPS --- */
.trending-steps-section {
    padding: 100px 5%;
    background: #ffffff;
    font-family: 'Outfit', sans-serif;
}

.steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.step-tag {
    color: #eb3535;
    background: rgba(235, 53, 53, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.steps-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin: 20px 0;
    font-weight: 800;
}

.text-red { color: #eb3535; }

.steps-flex-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

/* THE CARD DESIGN */
.trending-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.trending-card:hover {
    transform: translateY(-10px);
    border-color: #eb3535;
    box-shadow: 0 20px 40px rgba(235, 53, 53, 0.1);
}

/* Large Faded Background Number */
.card-number-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 51, 102, 0.04); /* Very light navy */
    line-height: 1;
    z-index: 0;
    transition: 0.4s ease;
}

.trending-card:hover .card-number-bg {
    color: rgba(235, 53, 53, 0.08); /* Fades to light red on hover */
    transform: scale(1.1);
}

.card-inner {
    position: relative;
    z-index: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #003366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.trending-card:hover .icon-box {
    background: #eb3535;
    transform: rotateY(180deg);
}

.card-inner h3 {
    color: #003366;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-inner p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* --- PURE CSS SCROLL ANIMATION --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.trending-card {
    view-timeline-name: --cardReveal;
    view-timeline-axis: block;
    animation: fadeInUp linear both;
    animation-timeline: --cardReveal;
    animation-range: entry 10% cover 30%;
}
.accm-premium-split {
    display: flex;
    height: 100vh;
    background: #ffffff;
    overflow: hidden;
}

/* LEFT SIDE: Glossy Glassmorphism */
.accm-side-brand {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.accm-bg-img {
    opacity: 80% !important;
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}
.accm-bg-overlay{
 background: #e70a0a !important;
}
.accm-glass-card {
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.169);
    backdrop-filter: blur(8px); /* Glossy effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.accm-glass-card te{
    background: #a12c2f;
    color: #fff !important;
    padding: 5px;
    margin-bottom: 20px !important;
    border-radius: 15px !important;
}

.accm-brand-title {
    line-height: 60px !important;
    font-size: 50px !important;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 10px 0;
}

.accm-brand-title .red { 
    line-height: 60px;
    color: #eb3535; 
    -webkit-text-stroke: #f0f0f0 1px;
}

/* RIGHT SIDE: Vertical Snap */
.accm-scroll-logic {
    width: 60%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    position: relative;
    cursor: none; /* Custom Glossy Cursor used */
}

.accm-scroll-logic::-webkit-scrollbar { display: none; }

.accm-step {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    scroll-snap-align: center;
}

.accm-step span {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.accm-step.active span { opacity: 3; transform: scale(1.05); }
.accm-step .red { color: #eb3535; }

/* GLOSSY CURSOR */
#accm-glossy-cursor {
    position: fixed;
    width: 110px;
    height: 110px;
    background: rgba(243, 9, 9, 0.546);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 40px rgba(235, 54, 53, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
    pointer-events: none;
    z-index: 1000;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.accm-resend-footer {
    background: #000;
    color: #fff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* THE BACKGROUND WATERMARK */
.accm-footer-bg-text {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    pointer-events: none;
    letter-spacing: -10px;
    z-index: 1;
}

.accm-footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

/* LOGO IMAGE STYLING */
.accm-footer-img-logo {
    height: 60px; /* Adjust based on logo proportions */
    width: auto;
    margin-bottom: 25px;
   }

.accm-address {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

.accm-status-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 25px;
}

.accm-status-pill .dot {
    width: 8px; height: 8px;
    background: #34d399; /* Admission Active Green */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #34d399;
}

/* LINKS GRID */
.accm-footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.accm-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.accm-footer-col h4 {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accm-footer-col ul { list-style: none; padding: 0; }
.accm-footer-col ul li { margin-bottom: 12px; }

.accm-footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.accm-footer-col ul li a:hover { color: #fff; }

.accm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 0.85rem;
}

.accm-socials { display: flex; gap: 20px; }
.accm-socials a { color: #444; text-decoration: none; transition: color 0.3s; }
.accm-socials a:hover { color: #fff; }