/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a6e73;
    --primary-dark: #0e4a4f;
    --primary-light: #23888f;
    --secondary: #ffde59;
    --secondary-light: #ffe782;
    --secondary-dark: #e5c43c;
    --white: #ffffff;
    --black: #1e293b;
    --gray: #64748b;
    --light-gray: #f8fafc;
    --border: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #1a6e73, #0e4a4f);
    --gradient-secondary: linear-gradient(135deg, #ffde59, #e5c43c);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 222, 89, 0.3);
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.top-bar-item i {
    color: var(--secondary);
    font-size: 16px;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--secondary);
}

.social {
    display: flex;
    gap: 15px;
}

.social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social a:hover i {
    color: var(--primary);
}

.social i {
    color: var(--white);
    font-size: 16px;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(26, 110, 115, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 80px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

/* ===== HERO SLIDER WITH CINEMATIC ZOOM ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(26, 110, 115, 0.9) 0%, rgba(26, 110, 115, 0.6) 40%, transparent 80%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    display: block;
    line-height: 1.2;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 0 15px var(--secondary);
}

/* ===== PROGRAMS GRID ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin: 40px 0 60px;
}

.program-item {
    background: var(--white);
    padding: 20px 10px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 110, 115, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 110, 115, 0.2);
}

.program-item:hover::before {
    opacity: 1;
}

.program-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.program-item:hover .program-icon {
    color: var(--white);
    transform: scale(1.1);
}

.program-name {
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.program-item:hover .program-name {
    color: var(--white);
}

/* ===== FEATURED PROGRAMS - PROFESSIONAL REDESIGN ===== */
.featured-programs {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(26, 110, 115, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.programs-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0.03;
    animation: floatCircle 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.02;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(0, -100px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -50px) scale(1.05);
    }
}

.programs-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.premium-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 110, 115, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(26, 110, 115, 0.1);
    cursor: pointer;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 110, 115, 0.15);
    border-color: var(--primary);
}

.card-media {
    position: relative;
    padding: 30px 25px 20px;
    background: linear-gradient(135deg, rgba(26, 110, 115, 0.02), rgba(255, 222, 89, 0.02));
    border-bottom: 1px solid rgba(26, 110, 115, 0.1);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.card-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.card-trending {
    position: absolute;
    top: 25px;
    right: 25px;
}

.trending-badge {
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 222, 89, 0.3);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.card-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--gray);
}

.feature-item i {
    color: var(--primary);
    font-size: 1rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px dashed rgba(26, 110, 115, 0.2);
    border-bottom: 1px dashed rgba(26, 110, 115, 0.2);
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.rating span {
    margin-left: 5px;
    font-size: 0.85rem;
    color: var(--gray);
}

.duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--gray);
}

.duration i {
    color: var(--primary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.premium-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-btn i {
    transition: transform 0.3s ease;
}

.premium-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.premium-btn:hover i {
    transform: translateX(5px);
}


.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card {
    position: relative;
    transition: box-shadow 0.3s ease;
    border: 2px solid transparent; /* Reserve space for border */
}

.premium-card:hover {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    transition: border-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.premium-card:hover .card-hover-overlay {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.card-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 10;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/*Map code*/
/* ===== HERITAGE ADDRESS SECTION WITH THREE.JS ===== */
.heritage-address {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Three.js Background */
.three-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.heritage-address .container {
    position: relative;
    z-index: 2;
}

.address-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

/* ===== LEFT SIDE - MAP ===== */
.address-map {
    flex: 0 0 60%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 110, 115, 0.15);
    height: 550px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.address-map:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(26, 110, 115, 0.2);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) saturate(1.1);
    transition: filter 0.5s ease;
}

.address-map:hover iframe {
    filter: brightness(1) saturate(1.2);
}

/* Professional Tools Overlay */
.map-tools {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: slideInRight 0.8s ease-out;
}

.tool-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-icon:hover {
    background: #1a6e73;
    transform: translateY(-5px);
}

.tool-icon:hover i {
    color: #ffd700;
}

.tool-icon:hover span {
    color: #ffffff;
}

.tool-icon i {
    font-size: 1.3rem;
    color: #1a6e73;
    margin-bottom: 3px;
    transition: color 0.3s;
}

.tool-icon span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
}

/* Floating Profiles */
.floating-profiles {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
    z-index: 5;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: scale(1.05) translateY(-5px);
    background: #1a6e73;
    border-color: #ffd700;
}

.profile-card:hover i,
.profile-card:hover .profile-info strong,
.profile-card:hover .profile-info span {
    color: #ffffff;
}

.profile-card.doctor { animation-delay: 0s; }
.profile-card.engineer { animation-delay: 0.5s; }
.profile-card.topper { animation-delay: 1s; }

.profile-card i {
    font-size: 1.8rem;
    color: #1a6e73;
    transition: color 0.3s;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-info strong {
    font-size: 0.9rem;
    color: #333;
    transition: color 0.3s;
}

.profile-info span {
    font-size: 0.7rem;
    color: #666;
    transition: color 0.3s;
}

/* ===== RIGHT SIDE - CONTACT INFO ===== */
.address-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Main Contact Card */
.contact-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(26, 110, 115, 0.1);
    border: 1px solid rgba(26, 110, 115, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ffd700, #1a6e73);
    transition: width 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(26, 110, 115, 0.15);
}

.contact-card:hover::before {
    width: 6px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-header i {
    font-size: 2.5rem;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .card-header i {
    background: #1a6e73;
    color: #ffd700;
    transform: rotateY(180deg);
}

.card-header h3 {
    font-size: 2rem;
    color: #1a6e73;
    font-weight: 700;
}

.tagline {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 70px;
    font-style: italic;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    padding: 5px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.primary-info {
    background: linear-gradient(135deg, rgba(26, 110, 115, 0.02), rgba(255, 215, 0, 0.02));
    border: 1px dashed rgba(26, 110, 115, 0.2);
}

.call-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(26, 110, 115, 0.05));
    border: 2px solid #ffd700;
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    font-size: 1.5rem;
    color: #1a6e73;
    min-width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-row:hover i {
    background: #1a6e73;
    color: #ffd700;
    transform: scale(1.1);
}

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-text .label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-text .value {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.info-text .value a {
    color: #1a6e73;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.info-text .value a:hover {
    color: #ffd700;
}

.call-row {
    margin-bottom: 15px;
}

.phone-number {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

.call-cta {
    text-align: center;
    margin-top: 4px;
}

.call-cta span {
    background: #1a6e73;
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.achievement-item {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(26, 110, 115, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.achievement-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.achievement-item i {
    font-size: 2rem;
    color: #1a6e73;
    margin-bottom: 10px;
}

.achievement-item:hover i {
    color: #ffd700;
}

.achievement-text .count {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a6e73;
    display: block;
}

.achievement-text .label {
    font-size: 0.8rem;
    color: #666;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a6e73;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 110, 115, 0.1);
    text-decoration: none;
}

.social-btn:hover {
    background: #1a6e73;
    color: #ffd700;
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .address-wrapper {
        gap: 30px;
    }
    
    .card-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .address-wrapper {
        flex-direction: column;
    }
    
    .address-map,
    .address-info {
        flex: 0 0 100%;
    }
    
    .address-map {
        height: 450px;
    }
    
    .map-tools {
        top: 10px;
        right: 10px;
        padding: 10px;
    }
    
    .tool-icon {
        padding: 5px 8px;
    }
    
    .tool-icon i {
        font-size: 1rem;
    }
    
    .tool-icon span {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .heritage-address {
        padding: 60px 0;
    }
    
    .address-map {
        height: 400px;
    }
    
    .floating-profiles {
        flex-wrap: wrap;
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .profile-card {
        padding: 8px 12px;
    }
    
    .profile-card i {
        font-size: 1.3rem;
    }
    
    .profile-info strong {
        font-size: 0.8rem;
    }
    
    .profile-info span {
        font-size: 0.6rem;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .address-map {
        height: 350px;
    }
    
    .map-tools {
        flex-wrap: wrap;
        border-radius: 20px;
        width: calc(100% - 20px);
        justify-content: center;
    }
    
    .info-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-row i {
        width: 100%;
        height: 40px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tagline {
        text-align: center;
        padding-left: 0;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}
/*map ends*/
.view-all-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 110, 115, 0.2);
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* ===== OUR SERVICES WITH GSAP ===== */
/* ===== OUR SERVICES WITH GSAP - FIXED ===== */
.our-services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.our-services .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important; /* Force 3 columns */
    gap: 30px;
    margin: 50px 0 0;
    width: 100%;
}

.service-card {
    height: 400px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 110, 115, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(26, 110, 115, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a6e73, #0e4a4f);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #1e293b;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-inner {
    color: #ffffff;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #ffde59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #1a6e73;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: #ffffff;
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: inherit;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: inherit;
    opacity: 0.9;
    flex-grow: 1;
    max-width: 280px;
}

.service-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    width: 100%;
}

.service-stats .stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-stats .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffde59;
    display: block;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-stats .stat-label {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
    
    .service-card {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .our-services {
        padding: 60px 0;
    }
    
    .services-showcase {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        height: 360px;
    }
    
    .service-card-inner {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .service-card {
        height: auto;
        min-height: 340px;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .service-stats {
        gap: 25px;
    }
    
    .service-stats .stat-value {
        font-size: 1.8rem;
    }
    
    .service-stats .stat-label {
        font-size: 0.8rem;
    }
}

/* Fix for any conflicting styles */
.our-services .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.our-services .section-title .highlight {
    color: #ffde59;
}

.our-services .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1a6e73;
    border-radius: 2px;
}
/* ===== EXPERT FACULTY SECTION ===== */
.expert-faculty {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.expert-faculty .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2b4c;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,215,0,0.1);
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.faculty-header {
    background: linear-gradient(135deg, #1a2b4c, #2a3b5c);
    padding: 30px 20px 20px;
    text-align: center;
    position: relative;
}

.faculty-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.faculty-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-name {
    color: white;
    font-size: 1.3rem;
    margin: 10px 0 5px;
    font-weight: 600;
}

.faculty-subject {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.faculty-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #1a2b4c;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.faculty-content {
    padding: 20px;
}

.info-section {
    margin-bottom: 15px;
}

.info-section h4 {
    color: #1a2b4c;
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-section h4 i {
    color: #ffd700;
    font-size: 1rem;
}

.info-section ul {
    list-style: none;
    padding-left: 25px;
}

.info-section ul li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
}

.info-section ul li::before {
    content: "•";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2b4c, #2a3b5c);
    position: relative;
    overflow: hidden;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23ffd700" stroke-width="1"/></svg>');
    pointer-events: none;
}

.enquiry-wrapper {
    background: white;
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 40px;
}

.enquiry-header h2 {
    font-size: 2rem;
    color: #1a2b4c;
    margin-bottom: 10px;
}

.enquiry-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a2b4c;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label i {
    color: #ffd700;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    outline: none;
    background: white;
    box-shadow: 0 5px 15px rgba(255,215,0,0.1);
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.submit-btn {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a2b4c;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,215,0,0.4);
}

.submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.success-message {
    text-align: center;
    padding: 30px;
    background: #d4edda;
    border-radius: 15px;
    margin-top: 20px;
    display: none;
}

.success-message i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 10px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fff9e6;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a2b4c;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #1a2b4c;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #ffd700;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.location-map {
    height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    padding: 40px;
}

.location-info h3 {
    font-size: 2rem;
    color: #1a2b4c;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a2b4c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.info-item h4 {
    color: #1a2b4c;
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}

.info-item a:hover {
    color: #ffd700;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a2b4c;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffaa00, #ffd700);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.about-col p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ffd700;
    color: #1a2b4c;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form button {
    width: 50px;
    background: #ffd700;
    border: none;
    border-radius: 0 25px 25px 0;
    color: #1a2b4c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffaa00;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expert-faculty {
        padding: 60px 0;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .enquiry-wrapper {
        padding: 30px;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 300px;
    }
    
    .location-info {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .expert-faculty .section-title {
        font-size: 2rem;
    }
    
    .faculty-header {
        padding: 20px 15px 15px;
    }
    
    .faculty-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .enquiry-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}
/* ===== EXPERT FACULTY ===== */
.expert-faculty {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.faculty-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 110, 115, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 110, 115, 0.2);
}

.faculty-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 40px 25px 30px;
    text-align: center;
    position: relative;
}

.faculty-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.faculty-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    background: var(--white);
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-image img {
    transform: scale(1.1);
}

.faculty-name {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.faculty-subject {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.faculty-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faculty-content {
    padding: 25px;
}

.info-section {
    margin-bottom: 20px;
}

.info-section h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.info-section h4 i {
    color: var(--secondary);
}

.info-section ul {
    list-style: none;
}

.info-section li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 6px 0 6px 20px;
    position: relative;
}

.info-section li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* ===== ENQUIRY FORM ===== */
.enquiry-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.enquiry-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(26, 110, 115, 0.1);
    border: 1px solid var(--border);
}

.enquiry-header {
    text-align: center;
    margin-bottom: 40px;
}

.enquiry-header h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.enquiry-header p {
    color: var(--gray);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 110, 115, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4444;
}

.char-count {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: right;
}

.char-count.warning {
    color: var(--secondary);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 110, 115, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: var(--white);
    border-radius: 16px;
    margin-top: 20px;
}

.success-message i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ===== FAQ SECTION - FIXED ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
    display: block;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 5px 20px rgba(26, 110, 115, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(26, 110, 115, 0.15);
    border-color: var(--primary);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    color: var(--gray);
    line-height: 1.7;
    display: block;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px 25px;
}

/* ===== LOCATION SECTION - FIXED ===== */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a6e73 0%, #0e4a4f 100%);
    position: relative;
    z-index: 2;
    display: block;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 30px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.location-map {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location-info {
    padding: 40px 30px;
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    color: var(--gray);
    text-decoration: none;
    line-height: 1.5;
}

.info-item a:hover {
    color: var(--primary);
}

/* ===== ELEGANT FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.about-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.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;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin: 20px 0 30px;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--white);
    transform: scale(1.05);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--secondary);
}

/* ===== LIGHTBOX ===== */
/* ===== LIGHTBOX ===== */
#lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#lightboxOverlay.active {
    opacity: 1;
    visibility: visible;
}

.lightboxContent {
    position: relative;
    width: 90vw;
    max-width: 780px;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

#lightboxOverlay.active .lightboxContent {
    transform: scale(1);
    opacity: 1;
}

.lightboxContent img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    /* Removed border property completely */
}

.lightboxClose {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.lightboxClose:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1) rotate(90deg);
    border-color: var(--primary);
}

/* Optional: Add zoom out animation for closing */
.lightboxContent.zoom-out {
    transform: scale(0.5) !important;
    opacity: 0 !important;
}
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .programs-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 2px solid var(--primary);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-item.address {
        display: none;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .enquiry-wrapper {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-programs {
        padding: 60px 0;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .programs-premium-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .premium-btn {
        width: 100%;
        justify-content: center;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .program-item {
        padding: 15px 5px;
    }
    
    .program-icon {
        font-size: 1.5rem;
    }
    
    .program-name {
        font-size: 0.8rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .location-info {
        padding: 30px 20px;
    }
    
    .location-info h3 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .card-media {
        padding: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-icon {
        font-size: 1.2rem;
    }
    
    .program-name {
        font-size: 0.7rem;
    }
}