/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ffff;
    --secondary: #ff00ff;
    --accent: #00ff00;
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 20px var(--primary), 0 0 40px var(--primary), 0 0 60px var(--primary);
    --secondary-glow: 0 0 20px var(--secondary), 0 0 40px var(--secondary);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    box-shadow: var(--neon-glow);
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px var(--primary), 0 0 50px var(--primary);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.nav-link.login-btn {
    background: var(--primary);
    color: var(--darker);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    box-shadow: 0 0 15px var(--primary);
}

.nav-link.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

/* ===== HERO SLIDER ===== */
.hero {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    flex: 1;
    z-index: 2;
    transform: translateX(-100px);
    animation: slideIn 1s forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.slide-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
}

.slide-image {
    flex: 1;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) translateX(50px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--neon-glow);
    transition: var(--transition);
}

.slide-image:hover {
    transform: perspective(1000px) rotateY(-5deg) translateX(50px);
}

.slide-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(0, 255, 255, 0.2);
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    color: var(--darker);
    box-shadow: var(--neon-glow);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
    transform: translateY(0);
    box-shadow: var(--box-shadow);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--primary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    color: #ccc;
}

/* ===== FEATURES SECTION ===== */
.why-us {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: perspective(1000px) rotateX(5deg);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: 0 0 20px var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: #ccc;
    line-height: 1.8;
}

/* ===== ACADEMIC STRUCTURE ===== */
.academic-structure {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.05) 100%);
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.academic-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
    transform: translateY(0) scale(1);
    box-shadow: var(--box-shadow);
}

.academic-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.academic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.academic-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.academic-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.academic-list {
    list-style: none;
}

.academic-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #ccc;
}

.academic-list li i {
    color: var(--accent);
    margin-right: 10px;
    margin-top: 5px;
    text-shadow: 0 0 10px var(--accent);
}

/* ===== BRANCHES ===== */
.branches {
    padding: 100px 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.branch-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: var(--box-shadow);
}

.branch-card:hover {
    transform: perspective(1000px) rotateY(10deg);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.branch-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.branch-card:hover .branch-overlay {
    opacity: 1;
}

.branch-content {
    padding: 25px;
}

.branch-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.branch-content p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.branch-content p i {
    color: var(--primary);
    margin-right: 10px;
}

/* ===== DIGITAL SYSTEM ===== */
.digital-system {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 255, 0.05) 100%);
}

.digital-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.digital-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.digital-text p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.digital-features {
    list-style: none;
    margin-bottom: 30px;
}

.digital-features li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.digital-features li i {
    color: var(--accent);
    margin-right: 10px;
    text-shadow: 0 0 10px var(--accent);
}

.digital-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--secondary-glow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.digital-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.digital-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* ===== NOTICE SECTION ===== */
.notice-section {
    padding: 100px 0;
}

.notice-board {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.notice-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    margin: 0;
}

.notice-header h3 i {
    margin-right: 10px;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.view-all:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

.view-all i {
    margin-left: 5px;
    transition: var(--transition);
}

.view-all:hover i {
    transform: translateX(5px);
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notice-item {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.notice-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.notice-date {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.date-day {
    font-size: 2rem;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
}

.notice-content h4 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.notice-content p {
    color: #aaa;
    line-height: 1.6;
}

/* ===== RESULTS ===== */
.results {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.05) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    transform: translateY(0);
    box-shadow: var(--box-shadow);
}

.result-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent), 0 0 50px rgba(0, 255, 0, 0.3);
}

.result-image {
    height: 250px;
    overflow: hidden;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.result-card:hover .result-image img {
    transform: scale(1.1);
}

.result-content {
    padding: 25px;
}

.result-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.result-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.result-year {
    display: inline-block;
    background: rgba(0, 255, 255, 0.2);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== ADMISSION CTA ===== */
.admission-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.admission-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.cta-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    margin: 0 10px 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--neon-glow);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-details p {
    color: #ccc;
    line-height: 1.6;
}

.contact-form {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-col p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▶';
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px 0 0 50px;
    color: var(--light);
    font-family: 'Hind Siliguri', sans-serif;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--darker);
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    filter: brightness(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--darker);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, var(--primary), #00ccff);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #00ff00);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--light);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px var(--primary); }
    50% { box-shadow: 0 0 25px var(--primary); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00ccff, #ff00cc);
}