/* ════════════════════════════════════════════════════════════════
   ADMISSIONCELL.IN - ORANGE THEME STYLESHEET
   ════════════════════════════════════════════════════════════════ */

:root {
    --primary: #ff7a00;           /* Vibrant Orange */
    --primary-dark: #e66500;       /* Dark Orange */
    --primary-light: #ffb366;      /* Light Orange */
    --secondary: #ff9933;          /* Lighter Orange */
    --accent: #ff5722;             /* Deep Orange */
    --success: #51cf66;            /* Green for success */
    --warning: #ffa94d;            /* Warm orange warning */
    --light: #fff8f0;              /* Off-white orange tinted */
    --dark: #1a1a1a;               /* Dark gray */
    --gray: #6c757d;               /* Medium gray */
    --border: #ffe0d0;             /* Light orange border */
    --shadow: 0 2px 15px rgba(255, 122, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(255, 122, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */

.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:not(.btn-admin):hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.btn-admin {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 4px 0;
    transition: 0.3s;
}

/* ════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* ════════════════════════════════════════════════════════════════
   CATEGORY TABS
   ════════════════════════════════════════════════════════════════ */

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.tab-btn i {
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: white;
    color: var(--primary);
    border-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.hero-search {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.hero-search select {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    flex: 1;
    outline: none;
    color: #333;
}

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-image i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.2);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* ════════════════════════════════════════════════════════════════
   COLLEGES SECTION
   ════════════════════════════════════════════════════════════════ */

.colleges {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
}

.colleges h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(255, 122, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-light);
    background: white;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.colleges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.college-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.college-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.college-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.college-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.college-header > * {
    position: relative;
    z-index: 1;
}

.college-rank {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.college-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.college-city {
    font-size: 0.9rem;
    opacity: 0.9;
}

.college-body {
    padding: 2rem;
}

.college-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.meta-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.college-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.college-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #ffe8d6 0%, #ffd9b3 100%);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-light);
}

.college-footer {
    display: flex;
    gap: 1rem;
}

.btn-view {
    flex: 1;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-enquire {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-enquire:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

/* ════════════════════════════════════════════════════════════════
   RANKINGS SECTION
   ════════════════════════════════════════════════════════════════ */

.rankings {
    padding: 5rem 0;
    background: white;
}

.rankings h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.rank-tab {
    padding: 0.7rem 2.5rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.rank-tab:hover,
.rank-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.accreditation {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.rankings-table {
    overflow-x: auto;
    box-shadow: var(--shadow);
    border-radius: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

table tbody tr {
    transition: all 0.3s;
}

table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 122, 0, 0.05), transparent);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* ════════════════════════════════════════════════════════════════
   ENQUIRY SECTION
   ════════════════════════════════════════════════════════════════ */

.enquiry {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
}

.enquiry h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.enquiry-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.enquiry-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.benefit-item span {
    font-weight: 500;
    color: #333;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.stat h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════════
   ENQUIRY FORM
   ════════════════════════════════════════════════════════════════ */

.enquiry-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary);
}

.enquiry-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
    border-color: var(--primary);
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   SUCCESS MESSAGE
   ════════════════════════════════════════════════════════════════ */

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2000;
    transition: transform 0.3s;
    max-width: 400px;
    border-left: 5px solid var(--success);
}

.success-message.show {
    transform: translate(-50%, -50%) scale(1);
}

.success-message i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.success-message h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.success-message button {
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.success-message button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 5px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid var(--primary);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* ── NAVBAR ── */
    .nav-links {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        z-index: 9999;
        padding: 0.25rem 0 0.75rem;
        border-top: 3px solid var(--primary);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
        color: #333;
    }

    .nav-links a.btn-admin {
        margin: 0.75rem 1rem 0;
        text-align: center;
        border-radius: 25px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ── LOGO — always visible ── */
    .logo {
        font-size: 1.1rem !important;
        gap: 0.4rem;
    }

    .logo span {
        display: inline !important;
        font-size: 1rem !important;
        white-space: nowrap;
        color: var(--primary) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo i {
        font-size: 1.5rem;
    }

    /* ── HERO — stack vertically, center text ── */
    .hero {
        padding: 2.5rem 1rem;
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        display: none !important;
    }

    .hero-search {
        flex-direction: column;
        width: 100%;
        border-radius: 16px;
        max-width: 100%;
        padding: 0.75rem;
    }

    .hero-search select {
        width: 100%;
        border-radius: 10px;
        padding: 0.6rem 0.75rem;
    }

    .btn-search {
        border-radius: 10px;
        justify-content: center;
        width: 100%;
    }

    .category-tabs {
        justify-content: center;
    }

    /* ── GRIDS ── */
    .colleges-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── TABLE ── */
    table {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 0.75rem;
    }

    .rankings-table {
        overflow-x: auto;
    }
}

/* ════════════════════════════════════════════════════════════════
   WHATSAPP FLOATING WIDGET
   ════════════════════════════════════════════════════════════════ */

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 2;
}

.whatsapp-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: waPulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.9); opacity: 0; }
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-options.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.wa-chat {
    background: #25d366;
}

.wa-call {
    background: var(--primary);
}

.wa-btn i {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 18px;
    }
    .whatsapp-main-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .whatsapp-pulse {
        width: 52px;
        height: 52px;
    }
}

    /* ── MISC ── */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .colleges {
        padding: 3rem 0;
    }

    .filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.95rem !important;
    }

    .logo span {
        display: inline !important;
        font-size: 0.88rem !important;
        white-space: nowrap;
        color: var(--primary) !important;
        visibility: visible !important;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .colleges-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 12px;
    }
}

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════════ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow);
    }
    50% {
        box-shadow: var(--shadow-lg);
    }
}

.college-card {
    animation: slideInUp 0.5s ease-out;
}

.success-message {
    animation: fadeIn 0.3s ease-out;
}

.btn-submit:active {
    animation: glow 0.6s ease-in-out;
}

/* ════════════════════════════════════════════════════════════════
   ORANGE THEME SPECIFIC ENHANCEMENTS
   ════════════════════════════════════════════════════════════════ */

/* Gradient text for headings */
h1, h2, h3 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero headings must stay white on orange background */
.hero-content h1,
.hero-content h2,
.hero-content h3 {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
    color: white;
}

/* Orange accent lines */
.college-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Hover effects for interactive elements */
a, button {
    position: relative;
}

a::before, button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.2), transparent);
    transition: left 0.3s;
    z-index: -1;
}

a:hover::before, button:hover::before {
    left: 100%;
}

/* Custom scrollbar for orange theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
