/* ========================================
   MODERN COMMUNITY MEDICINE WEBSITE - CSS
   Madha Medical College & Research Institute
   ======================================== */

/* CSS Variables for Easy Theme Management */
:root {
    --primary-color: #1a3a52;
    --secondary-color: #6b9bc3;
    --accent-color: #e8943f;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   HEADER STYLES
   ======================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.college-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.madha-logo {
    height: 85px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.madha-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(41, 128, 185, 0.3));
}

.college-name h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.college-name h3:hover {
    color: #e3f2fd;
}

.college-name p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    color: #e3f2fd;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.2rem;
}

.contact-item span {
    font-size: 0.9rem;
}

/* Main Navigation */
.main-nav {
    background: var(--bg-white);
    padding: 15px 0;
    border-top: 3px solid var(--secondary-color);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dept-shield {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.dept-shield:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(41, 128, 185, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu a {
    padding: 12px 18px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 150px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.9) 0%, rgba(107, 155, 195, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s backwards;
    min-width: 200px;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: visible;
    word-break: keep-all;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 50px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.9), transparent);
    padding: 30px;
    color: white;
}

.image-overlay h3 {
    font-size: 1.5rem;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Video Showcase */
.video-showcase {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(41, 128, 185, 0.1);
}

.video-showcase .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-showcase .section-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.video-showcase .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    position: relative;
}

.department-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover::after {
    opacity: 1;
}

/* ========================================
   FACULTY SECTION
   ======================================== */

.faculty-section {
    background: var(--bg-white);
}

/* Faculty Group Photos */
.faculty-group-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.group-photo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.group-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.group-photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
}

/* Faculty Organogram */
.faculty-organogram {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 50px 0;
    box-shadow: var(--shadow-lg);
}

.organogram-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
}

/* Organogram Levels */
.org-level {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    position: relative;
}

/* Organogram Box */
.org-box {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: var(--transition);
    text-align: center;
    min-width: 220px;
    border: 3px solid var(--secondary-color);
}

.org-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
}

/* HOD Box - Special Styling */
.hod-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 3px solid var(--accent-color);
    min-width: 280px;
    padding: 30px 35px;
    box-shadow: 0 8px 20px rgba(26, 58, 82, 0.3);
}

.hod-box .org-designation {
    color: rgba(255, 255, 255, 0.95);
}

.hod-box .org-name {
    color: white;
}

.hod-box .org-qualification {
    color: rgba(255, 255, 255, 0.9);
}

/* Organogram Text */
.org-designation {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.org-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.org-qualification {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.org-special {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 8px;
    padding: 5px 10px;
    background: rgba(232, 148, 63, 0.1);
    border-radius: 5px;
    display: inline-block;
}

/* Connecting Lines */
.org-connector-vertical {
    width: 3px;
    height: 40px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.org-connector-horizontal {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--secondary-color);
}

.org-connector-horizontal-wide {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 3px;
    background: var(--secondary-color);
}

/* Organogram Row for Multiple Items */
.org-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Level-Specific Styling */
.hod-level {
    margin-bottom: 40px;
}

.professor-level,
.statistician-level {
    margin: 35px 0;
}

.associate-level {
    position: relative;
    padding-top: 30px;
}

.assistant-level {
    position: relative;
    padding-top: 30px;
}

.resident-level {
    position: relative;
    padding-top: 30px;
    margin-top: 35px;
}

/* Faculty Quote Section */
.faculty-quote-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.faculty-quote {
    position: relative;
    color: white;
    text-align: center;
}

.faculty-quote .fa-quote-left {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.faculty-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.faculty-quote footer {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ========================================
   ACADEMICS SECTION
   ======================================== */

.academics-section {
    background: var(--bg-light);
}

.program-tabs {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tab-buttons {
    display: flex;
    background: var(--primary-color);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Curriculum Phases */
.curriculum-phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.phase-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.phase-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.phase-card p, .phase-card ul {
    color: var(--text-dark);
    line-height: 1.8;
}

.phase-card ul {
    list-style: none;
    padding-left: 0;
}

.phase-card li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.phase-card li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* MD Program */
.md-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.md-info, .md-research {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.md-info h4, .md-research h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.md-info ul, .md-research ul {
    list-style: none;
    padding: 0;
}

.md-info li, .md-research li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-dark);
}

.md-info li:before, .md-research li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
}

/* Teaching Methods */
.teaching-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.method-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.method-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.method-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.method-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Innovations Grid */
.innovations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.innovation-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.innovation-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.innovation-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.innovation-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ========================================
   RESEARCH SECTION
   ======================================== */

.research-section {
    background: var(--bg-white);
}

.research-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.research-stat {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.research-stat:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.research-stat:hover .stat-icon i {
    color: white;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.research-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.research-stat:hover .stat-number {
    color: white;
}

.research-stat .stat-label {
    font-size: 1rem;
    color: var(--text-dark);
}

.research-stat:hover .stat-label {
    color: white;
    opacity: 0.95;
}

/* Flagship Projects */
.subsection-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.project-card h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Student Research */
.student-research {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.research-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0 20px;
}

/* Collaborations */
.collaborations {
    text-align: center;
}

.collab-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.collab-item {
    text-align: center;
}

.collab-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.collab-item p {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   HEALTH SERVICES SECTION
   ======================================== */

.health-services-section {
    background: var(--bg-light);
}

.services-tabs {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-tab-buttons {
    display: flex;
    background: var(--primary-color);
    flex-wrap: wrap;
}

.service-tab-btn {
    flex: 1;
    min-width: 200px;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.service-tab-btn.active {
    background: white;
    color: var(--primary-color);
}

.service-tab-content {
    display: none;
    padding: 40px;
}

.service-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.service-header {
    margin-bottom: 30px;
    text-align: center;
}

.service-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Camps Stats */
.camps-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.camp-stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 10px;
}

.camp-stat h4 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.camp-stat p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Camp Types */
.camp-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.camp-type-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.camp-type-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.camp-type-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.camp-type-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Family Adoption */
.family-adoption-overview {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 30px 0;
}

.adoption-impact {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-number {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.impact-text {
    font-size: 1.2rem;
    opacity: 0.95;
}

.adoption-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.adoption-details h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.adoption-details ul {
    list-style: none;
    padding: 0;
}

.adoption-details li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.adoption-details li:before {
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Adoption Outcomes */
.adoption-outcomes h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 30px;
    text-align: center;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.outcome-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.outcome-percentage {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 15px;
}

.outcome-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* ========================================
   EVENTS SECTION
   ======================================== */

.events-section {
    background: var(--bg-white);
}

.events-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.showcase-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.showcase-event:nth-child(even) {
    direction: rtl;
}

.showcase-event:nth-child(even) .event-details {
    direction: ltr;
}

.showcase-event:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-event:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-date {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.event-date i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.event-desc {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-tag {
    padding: 8px 15px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   WHAT'S NEW SECTION (Interactive Scrollable)
   ======================================== */

.whats-new-section {
    background: var(--bg-light);
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-color: transparent;
}

.news-scroll-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 20px;
}

.news-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.news-scroll-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.news-scroll-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.news-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    opacity: 0.9;
    margin: 5px 0;
}

.date-year {
    font-size: 0.9rem;
    opacity: 0.8;
}

.news-content {
    padding: 20px;
    flex: 1;
}

.news-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.download-btn i {
    font-size: 0.9rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    background: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 58, 82, 0.95), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.college-branding {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-logo {
    width: 120px;
    margin: 0 auto 20px;
}

.college-branding h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.college-branding p {
    color: var(--text-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-text a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    margin-top: 30px;
    text-align: center;
}

.social-links h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    background: white;
    padding: 0 5px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-credit {
    font-size: 0.9rem;
}

.footer-credit i {
    color: var(--danger-color);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .curriculum-phases {
        grid-template-columns: 1fr;
    }
    
    .teaching-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .research-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hod-card {
        grid-template-columns: 1fr;
    }
    
    /* Faculty Organogram Responsive */
    .faculty-group-photos {
        grid-template-columns: 1fr;
    }
    
    .faculty-organogram {
        padding: 30px 15px;
    }
    
    .organogram-title {
        font-size: 1.8rem;
    }
    
    .org-box {
        min-width: 180px;
        padding: 20px 15px;
    }
    
    .hod-box {
        min-width: 220px;
    }
    
    .org-name {
        font-size: 1.1rem;
    }
    
    .org-designation {
        font-size: 0.75rem;
    }
    
    .org-qualification {
        font-size: 0.85rem;
    }
    
    .org-row {
        gap: 15px;
    }
    
    .org-connector-horizontal,
    .org-connector-horizontal-wide {
        width: 90%;
    }
    
    .faculty-quote p {
        font-size: 1.1rem;
    }
    
    .teaching-methods,
    .services-grid,
    .camp-types {
        grid-template-columns: 1fr;
    }
    
    .showcase-event {
        grid-template-columns: 1fr;
    }
    
    .showcase-event:nth-child(even) {
        direction: ltr;
    }
    
    .news-scroll-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .research-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .family-adoption-overview {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .video-showcase {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .video-showcase .section-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Faculty Organogram for Small Screens */
    .organogram-title {
        font-size: 1.5rem;
    }
    
    .org-box {
        min-width: 150px;
        padding: 15px 10px;
    }
    
    .hod-box {
        min-width: 180px;
        padding: 20px 15px;
    }
    
    .org-name {
        font-size: 1rem;
    }
    
    .org-designation {
        font-size: 0.7rem;
    }
    
    .org-qualification {
        font-size: 0.8rem;
    }
    
    .org-special {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .org-row {
        flex-direction: column;
        align-items: center;
    }
    
    .faculty-quote p {
        font-size: 1rem;
    }
    
    .faculty-quote .fa-quote-left {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade-in Animation Class */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* Smooth Scroll */
html {
    scroll-padding-top: 150px;
}
