/* ========== ABOUT PAGE CSS - FULLY RESPONSIVE - RED THEME ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #2C3E50;
    overflow-x: hidden;
}

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-wa, .floating-call {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-wa { background: #25D366; color: white; }
.floating-call { background: #007bff; color: white; }
.floating-wa i, .floating-call i { font-size: 24px; }

/* ========== NAVBAR ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 0.75rem;
    font-weight: 800;
    color: #0A2B3E;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.55rem;
    color: #C0392B;
    font-weight: 600;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    list-style: none;
}

.nav-links.show {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #0A2B3E;
    padding: 10px 0;
    display: block;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #C0392B;
}

.hamburger {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #0A2B3E;
}

/* ========== HERO SECTION ========== */
/* ========== HERO SECTION WITH BACKGROUND IMAGE & OVERLAY ========== */
.about-hero {
    min-height: 400px;
    position: relative;
    background: url('../assests/aboutpage_1.jfif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

/* Dark Overlay for better text readability */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,43,62,0.85) 0%, rgba(10,43,62,0.65) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.about-hero-content h1 span {
    color: #C0392B;
}

.about-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.breadcrumb {
    margin-top: 15px;
    color: white;
}

.breadcrumb a {
    color: #C0392B;
    text-decoration: none;
}

.breadcrumb i {
    font-size: 12px;
    margin: 0 8px;
}
/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== SECTION TITLE ========== */
.section-tag {
    color: #C0392B;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.6rem;
    margin: 10px 0 20px;
}

h2 span {
    color: #C0392B;
}

/* ========== ABOUT INSTITUTION ========== */
.about-institution {
    padding: 50px 0;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.recognition-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.recognition-list span {
    background: #FDE8E6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recognition-list i {
    color: #C0392B;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #C0392B;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.experience-badge p {
    font-size: 0.7rem;
    color: #FFFFFF;
}

/* ========== HISTORY SECTION ========== */
.history-section {
    padding: 50px 0;
    background: #F8F9FA;
}

.history-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.history-image {
    position: relative;
}

.history-image img {
    width: 100%;
    border-radius: 20px;
}

.history-quote {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10,43,62,0.9);
    padding: 15px;
    border-radius: 15px;
    color: white;
}

.history-quote i {
    color: #C0392B;
    margin-right: 10px;
}

.legacy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.legacy-point {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.legacy-point i {
    font-size: 1.5rem;
    color: #C0392B;
}

.legacy-point h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.legacy-point p {
    font-size: 0.75rem;
    color: #666;
}

/* ========== VISION MISSION ========== */
.vision-mission {
    padding: 50px 0;
}

.vm-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vm-card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: #FDE8E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon i {
    font-size: 1.8rem;
    color: #C0392B;
}

.vm-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.vm-card ul {
    list-style: none;
}

.vm-card li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.vm-card li i {
    color: #C0392B;
}

/* ========== OBJECTIVES ========== */
.objectives {
    padding: 50px 0;
    background: #0A2B3E;
    color: white;
    text-align: center;
}

.objectives h2 {
    color: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.objective {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.objective:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.objective i {
    font-size: 2rem;
    color: #C0392B;
    margin-bottom: 10px;
    display: block;
}

.objective p {
    font-size: 0.8rem;
}

/* ========== LEADERSHIP MESSAGES ========== */
.leadership-messages {
    padding: 50px 0;
}

.messages-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.message-card {
    background: #F8F9FA;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.message-img {
    position: relative;
}

.message-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: #C0392B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.message-text {
    padding: 25px;
}

.message-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.message-text span {
    color: #C0392B;
    font-size: 0.8rem;
}

.quote-icon {
    margin: 15px 0;
}

.quote-icon i {
    font-size: 1.5rem;
    color: #C0392B;
    opacity: 0.5;
}

.message-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #4a5568;
}

.signature {
    font-family: cursive;
    color: #C0392B;
    margin-top: 10px;
}

/* ========== INFRASTRUCTURE ========== */
.infrastructure {
    padding: 50px 0;
    background: #F8F9FA;
}

.infra-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infra-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 200px;
}

.infra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.infra-card:hover img {
    transform: scale(1.05);
}

.infra-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
}

.infra-overlay h4 {
    color: white;
}

.campus-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.feature {
    background: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature i {
    color: #C0392B;
    margin-right: 8px;
}

/* ========== FACILITIES TABS ========== */
.facilities-about {
    padding: 50px 0;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: #F8F9FA;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #FDE8E6;
}

.tab-btn.active {
    background: #C0392B;
    color: #FFFFFF;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.facilities-grid-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facility-about {
    text-align: center;
    transition: all 0.3s ease;
}

.facility-about:hover {
    transform: translateY(-5px);
}

.facility-about img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.facility-about h4 {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ========== CORE VALUES ========== */
.core-values {
    padding: 50px 0;
    background: #FDE8E6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.value {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value i {
    font-size: 1.8rem;
    color: #C0392B;
    margin-bottom: 10px;
}

.value h4 {
    font-size: 0.8rem;
}

/* ========== WHY CHOOSE ========== */
.why-choose-about {
    padding: 50px 0;
}

.why-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.why-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.why-list i {
    color: #C0392B;
}

.btn-admission {
    background: #C0392B;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.btn-admission:hover {
    background: #A93226;
    transform: translateY(-3px);
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
}

.stats-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: white;
    display: flex;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat {
    flex: 1;
    padding: 12px;
    text-align: center;
}

.stat span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #C0392B;
}

.stat p {
    font-size: 0.7rem;
}

/* ========== SERVICES ========== */
.services {
    padding: 50px 0;
    background: #F8F9FA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.service {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service i {
    font-size: 1.8rem;
    color: #C0392B;
    margin-bottom: 10px;
}

.service h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.service p {
    font-size: 0.7rem;
    color: #666;
}
/* ========== ADVISORY COMMITTEE SECTION ========== */
.advisory-committee {
    padding: 60px 0;
    background: #F8F9FA;
}

.advisory-committee .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1rem;
}

.committee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.committee-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.committee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.committee-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.committee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.committee-card:hover .committee-image img {
    transform: scale(1.05);
}

.committee-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: all 0.3s ease;
}

.committee-card:hover .committee-social {
    bottom: 0;
}

.committee-social a {
    width: 35px;
    height: 35px;
    background: #C0392B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.committee-social a:hover {
    background: #A93226;
    transform: scale(1.1);
}

.committee-info {
    padding: 25px;
    text-align: center;
}

.committee-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0A2B3E;
}

.committee-info .designation {
    color: #C0392B;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 12px;
    background: #FDE8E6;
    border-radius: 20px;
}

.committee-desc p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.committee-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.committee-contact a {
    width: 35px;
    height: 35px;
    background: #FDE8E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C0392B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.committee-contact a:hover {
    background: #C0392B;
    color: white;
    transform: translateY(-3px);
}

/* Responsive for Advisory Committee */
@media (min-width: 768px) {
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .committee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .committee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ========== CAMPUS GALLERY ========== */
.campus-gallery {
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    height: 150px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0A2B3E, #1B4F72);
    color: white;
    text-align: center;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary, .cta-btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #C0392B;
    color: #FFFFFF;
}

.cta-btn-primary:hover {
    background: #A93226;
    transform: translateY(-3px);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #0A2B3E;
}
/* ========== FOOTER - PROFESSIONAL DESIGN ========== */
footer {
    background: #0A2B3E;
    color: white;
    padding: 50px 0 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.footer-about {
    text-align: center;
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.footer-about h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #C0392B;
}

.footer-about p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ccc;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 5px;
    line-height: 35px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #C0392B;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: #C0392B;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C0392B;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #C0392B;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #C0392B;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item p, .contact-item a {
    color: #ccc;
    font-size: 0.8rem;
    text-decoration: none;
    line-height: 1.4;
}

.contact-item a:hover {
    color: #C0392B;
}

.footer-newsletter p {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 0.8rem;
    outline: none;
}

.newsletter-form button {
    background: #C0392B;
    border: none;
    padding: 0 15px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #A93226;
}

.footer-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hours i {
    color: #C0392B;
}

.footer-hours p {
    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-left p {
    font-size: 0.7rem;
    color: #888;
}

.footer-bottom-right {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: #888;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-bottom-right a:hover {
    color: #C0392B;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .footer-about {
        flex: 2;
        text-align: left;
    }
    
    .footer-links {
        flex: 1;
    }
    
    .footer-contact {
        flex: 2;
    }
    
    .footer-newsletter {
        flex: 2;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-bottom-right {
        justify-content: flex-end;
    }
}
/* ========== FOOTER ========== */
footer {
    background: #0A2B3E;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.footer-col h4 {
    color: #C0392B;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 8px 0;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #C0392B;
}

.social-icons a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #C0392B;
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    max-width: 250px;
    margin: 10px auto 0;
}

.newsletter input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.newsletter button {
    background: #C0392B;
    border: none;
    padding: 8px 12px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: #A93226;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
}

/* ========== MODAL ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    width: 85%;
    max-width: 320px;
}

.modal-content i {
    color: #C0392B;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #C0392B;
}

/* ========== RESPONSIVE - TABLET & DESKTOP ========== */
@media (min-width: 768px) {
    .hamburger { display: none; }
    
    .nav-links {
        display: flex !important;
        position: static;
        width: auto;
        flex-direction: row;
        padding: 0;
        gap: 25px;
        box-shadow: none;
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 15px 30px;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h2 {
        font-size: 0.9rem;
    }
    
    .about-hero-content h1 { font-size: 3rem; }
    
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .history-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .vm-grid {
        flex-direction: row;
    }
    
    .messages-grid {
        flex-direction: row;
    }
    
    .infra-grid {
        flex-direction: row;
    }
    
    .facilities-grid-about {
        flex-direction: row;
    }
    
    .facility-about { flex: 1; }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-wrapper {
        flex-direction: row;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .newsletter { margin: 0; }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(6, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item { height: 200px; }
}