@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --primary-color: #0B3C5D;
    --secondary-color: #2E7D32;
    --accent-color: #F57C00;
    --trust-icon-color: #F57C00; /* Change this to update Trust Bar icons */
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--trust-icon-color) !important;
}

/* Typography Utilities */
.heading-xl { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; }
.heading-lg { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button System */
.btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(11, 60, 93, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 60, 93, 0.45);
    background: #0d4a73;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e67500 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
    background: linear-gradient(135deg, #e67500 0%, #d46a00 100%);
    color: white !important;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Card System */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.premium-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Form Styles */
.premium-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    transition: var(--transition);
    font-family: inherit;
}

.premium-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(11, 60, 93, 0.1);
}

/* Step UI */
.step-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-scroll-x {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.custom-scroll-x::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: white !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(11, 60, 93, 0.15);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-view-all:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(11, 60, 93, 0.2);
}

.btn-view-all i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: rotate(90deg);
}

/* ================= SHARED COMPONENTS ================= */

/* WhatsApp Button Mini */
.whatsapp-btn-mini {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid #22c35e;
}

.whatsapp-btn-mini:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-service-hero {
    background: var(--accent-color);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    border: none;
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.btn-service-hero:hover {
    background: #e67500;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
    color: white;
}

.btn-service-hero i {
    transition: transform 0.3s;
}

.btn-service-hero:hover i {
    transform: translateX(5px);
}

.college-action-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #082d46 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 60, 93, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.college-action-btn:hover {
    background: linear-gradient(135deg, #0d4a73 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 60, 93, 0.25);
}

.college-action-btn:active {
    transform: translateY(-1px);
}

/* Admission Modal Styling */
.admission-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.admission-modal .modal-header {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border: none;
}

.admission-modal .modal-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.admission-modal .form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.admission-modal .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.1);
}

.btn-submit-admission {
    background: var(--accent-color);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    border: none;
    transition: all 0.3s;
}

.btn-submit-admission:hover {
    background: #e67500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
}

/* Sticky Floating Buttons */
.sticky-floating-controls {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.sticky-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sticky-btn.call {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d4a73 100%);
}

.sticky-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 100%;
    margin-right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.sticky-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation for WhatsApp */
.sticky-btn.whatsapp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .sticky-floating-controls {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
