/* ===== CLEAN & OPTIMIZED CSS FOR PORTFOLIO ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a365d;
    --secondary: #2d3748;
    --accent: #2b6cb0;
    --accent-light: #4299e1;
    --light: #f7fafc;
    --gray: #718096;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

body {
    color: var(--secondary);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 1.05rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 10px;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Special Buttons */
.partner-btn {
    background-color: #e53e3e;
}

.partner-btn:hover {
    background-color: #c53030;
}

.hire-btn {
    background-color: #3182ce;
}

.hire-btn:hover {
    background-color: #2c5282;
}

.download-resume-btn {
    background-color: #38a169;
}

.download-resume-btn:hover {
    background-color: #2f855a;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
    z-index: 1001;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Desktop Navigation */
.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
    white-space: nowrap;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 9999;
    padding: 80px 20px 40px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    height: 50px;
    width: auto;
}

.mobile-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

.mobile-partner-btn-container {
    margin: 20px 0 30px;
    padding: 0 20px;
}

.mobile-partner-btn {
    width: 100%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background-color: var(--light);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-nav-link i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 24px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--accent);
    color: var(--white);
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: var(--white);
}

/* ===== INDEX PAGE STYLES ===== */

/* Hero Slider */
/* ===== HERO SLIDER - TRUE FULL SCREEN ===== */

/* Reset body/html to prevent scrollbars */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hero Slider - Full Viewport */
.hero-slider {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    min-height: 100vh; /* Minimum full height */
    position: relative;
    overflow: hidden;
    margin: 0; /* No margins */
    padding: 0; /* No padding */
    
    /* Positioning */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    /* iOS Safari compatibility */
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
}

/* Swiper container */
.hero-slider .swiper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Individual slides */
.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Slide overlay */
.hero-slider .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(43, 108, 176, 0.75));
    z-index: 1;
}

/* Slide content */
.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}

/* Slide typography */
.hero-slider .slide-content h1 {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slider .slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Buttons container */
.hero-slider .btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Swiper navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

/* Swiper pagination */
.hero-slider .swiper-pagination {
    bottom: 20px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .hero-slider .slide-content h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .hero-slider .slide-content p {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .hero-slider .btn-container .btn {
        font-size: 1rem;
        padding: 14px 35px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .hero-slider .slide-content {
        padding: 0 15px;
    }
    
    .hero-slider .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .hero-slider .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.4;
        padding: 0 15px;
    }
    
    .hero-slider .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-slider .btn-container .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
    }
    
    /* Hide navigation arrows on mobile */
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-slider .slide-content {
        padding: 0 10px;
    }
    
    .hero-slider .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-slider .slide-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-slider .btn-container .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        width: 90%;
    }
}

/* Extra Small Screens (360px and below) */
@media (max-width: 360px) {
    .hero-slider .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-slider .slide-content p {
        font-size: 0.9rem;
    }
    
    .hero-slider .btn-container .btn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* Landscape Mode on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-slider .slide-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-slider .btn-container .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    .hero-slider .slide-content {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(43, 108, 176, 0.75));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 35px;
}

/* About Section - Compact */
.about-section {
    padding: 0px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 0 10px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== ABOUT PAGE STYLES ===== */

.about-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(43, 108, 176, 0.8));
    color: var(--white);
    padding: 100px 0 60px;
    margin-top: 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 50px;
}

.about-hero-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 15px;
    display: block;
}

.info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Professional Summary */
.professional-summary {
    padding: 100px 0;
}

.summary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.summary-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.summary-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.summary-image:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, var(--light) 0%, #edf2f7 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    border-left: 5px solid var(--accent);
}

.highlight-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.highlight-box h3 i {
    color: var(--accent);
}

/* Strengths Section */
.strengths-section {
    padding: 100px 0;
    background: var(--light);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.strength-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

/* Education Section */
.education-section {
    padding: 100px 0;
}

.education-container {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.education-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
}

.education-card.current {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.15);
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.education-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(90deg, rgba(43, 108, 176, 0.05) 0%, rgba(43, 108, 176, 0.02) 100%);
    border-bottom: 1px solid var(--light-gray);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.education-title {
    flex: 1;
}

.education-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.institution {
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
}

.education-year {
    background: var(--light);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--accent);
}

.education-body {
    padding: 25px 30px;
}

.specialization {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
    padding-left: 20px;
    position: relative;
}

.specialization:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.education-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    background: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--secondary);
    font-size: 0.95rem;
    gap: 8px;
}

.detail-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Language Skills */
.language-skills {
    padding: 100px 0;
    background: var(--white);
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.language-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
}

.language-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.language-flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.language-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.language-level {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.language-proficiency {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.proficiency-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
}

.proficiency-dot.active {
    background: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SKILLS PAGE STYLES ===== */

.skills-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    margin-top: 0;
    text-align: center;
}

.skills-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 25px;
}

.skills-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Skills Container */
.skills-container {
    padding: 100px 0;
}

.skills-category {
    margin-bottom: 80px;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
    font-size: 2.2rem;
}

.skills-category h2 i {
    color: var(--accent);
    font-size: 2rem;
}

/* Core Competencies */
.competencies-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.competency-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.competency-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.competency-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.competency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--white);
}

.competency-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.competency-card p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.competency-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.competency-tag {
    background: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.competency-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Professional Skills Grid */
.professional-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.skill-card-enhanced {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 25px;
    border-left: 5px solid var(--accent);
}

.skill-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.skill-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.skill-info {
    flex: 1;
}

.skill-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.skill-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-points p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.skill-points i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Computer Proficiency */
.computer-proficiency-section {
    padding: 100px 0;
    background: var(--light);
}

.software-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.software-category {
    margin-bottom: 60px;
}

.software-category:last-child {
    margin-bottom: 0;
}

.software-category h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 1.6rem;
}

.software-category h3 i {
    color: var(--accent);
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.software-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.software-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.software-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.software-card p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.software-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.software-tags span {
    background: var(--light);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--secondary);
    border: 1px solid var(--light-gray);
}

/* Workshops Section */
.workshops-section {
    padding: 100px 0;
}

.trainings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.training-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--accent);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.training-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.training-header i {
    font-size: 2.2rem;
    color: var(--accent);
}

.training-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.training-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--secondary);
}

.training-list li:last-child {
    border-bottom: none;
}

.training-list i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Skills CTA */
.skills-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.skills-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.skills-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* ===== EXPERIENCE PAGE STYLES ===== */

/* Experience Hero */
.exp-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.exp-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.exp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.exp-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.highlight {
    color: #4fd1c7;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
}

.exp-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.exp-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.exp-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.exp-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.exp-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4fd1c7;
    margin-bottom: 10px;
    line-height: 1;
}

.exp-stat .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Visual Timeline */
.visual-timeline {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        rgba(43, 108, 176, 0.3) 0%,
        var(--accent) 30%,
        var(--accent) 70%,
        rgba(43, 108, 176, 0.3) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.dot-ring {
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    position: absolute;
    animation: pulse 2s infinite;
}

.dot-core {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
}

.timeline-item.current .dot-ring {
    border-color: #4fd1c7;
    animation: pulse 1.5s infinite;
}

.timeline-item.current .dot-core {
    background: #4fd1c7;
    width: 20px;
    height: 20px;
}

.timeline-year {
    width: 120px;
    text-align: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--accent);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-item.current .timeline-year {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.1);
}

.timeline-card {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 0 60px;
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent);
}

.timeline-item.current .timeline-card:before {
    background: linear-gradient(to bottom, #4fd1c7, var(--accent));
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.company-logo-timeline {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    border: 3px solid var(--accent);
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo-timeline img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.company-details h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.company-location {
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-body h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.role-duration {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.role-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--secondary);
}

.highlight-item i {
    color: #4fd1c7;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Key Achievements */
.key-achievements {
    padding: 100px 0;
    background: var(--light);
}

.achievement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.achievement-icon.award {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.achievement-icon.trophy {
    background: linear-gradient(135deg, #10b981, #059669);
}

.achievement-icon.star {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.achievement-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.achievement-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.achievement-date {
    display: inline-block;
    background: var(--light);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Experience CTA */
.exp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.exp-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.exp-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: #4fd1c7;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.primary-btn:hover {
    background: #38b2ac;
    transform: translateY(-3px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== FOOTER STYLES ===== */

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.quick-links-column a {
    position: relative;
    padding-left: 20px;
}

.quick-links-column a:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-light);
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 10px;
}

.contact-info div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.contact-info i {
    color: var(--accent);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info div div {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 1200px) {
    .center-nav {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        margin-top: 20px;
    }
    
    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-right {
        order: 2;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-line {
        left: 120px;
    }
    
    .timeline-dot {
        left: 120px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        width: 100px;
        margin-right: 40px;
    }
    
    .timeline-card {
        margin-left: 80px;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .about-container,
    .summary-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        height: 350px;
        order: 1;
    }
    
    .about-content {
        order: 2;
    }
    
    .summary-image {
        height: 400px;
        order: 1;
    }
    
    .competencies-showcase,
    .professional-skills-grid,
    .strengths-grid,
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skill-card-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .skill-points p {
        text-align: left;
    }
    
    .trainings-grid,
    .achievement-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .center-nav {
        display: none;
    }
    
    .mobile-nav-menu {
        display: block;
    }
    
    .header-right .partner-btn {
        display: none;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-hero,
    .skills-hero,
    .exp-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero h1,
    .skills-hero h1,
    .exp-hero h1 {
        font-size: 2.2rem;
    }
    
    .exp-hero h1 {
        font-size: 2rem;
    }
    
    .highlight {
        display: block;
        margin: 10px 0;
    }
    
    .skills-category h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .skills-category h2 i {
        margin-bottom: 10px;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
        width: 30px;
        height: 30px;
    }
    
    .dot-ring {
        width: 20px;
        height: 20px;
    }
    
    .dot-core {
        width: 12px;
        height: 12px;
    }
    
    .timeline-year {
        width: 80px;
        font-size: 0.9rem;
        margin-right: 20px;
    }
    
    .timeline-card {
        margin-left: 40px;
        padding: 25px;
    }
    
    .company-logo-timeline {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .quick-links-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .download-buttons,
    .cta-buttons,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .about-hero-info,
    .exp-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .competencies-showcase,
    .professional-skills-grid,
    .strengths-grid,
    .language-grid {
        grid-template-columns: 1fr;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .company-logo-timeline {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .education-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .education-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .education-year {
        margin-top: 10px;
    }
    
    .education-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .detail-item {
        width: 100%;
        justify-content: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Tablet Specific */
@media (min-width: 768px) and (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 350px;
    }
}
/* ===== REDESIGNED ABOUT HERO SECTION ===== */

.about-hero-redesigned {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-redesigned:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(43, 108, 176, 0.05) 100%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Left Column - Profile Card */
.hero-profile-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    position: relative;
    z-index: 1;
}

.profile-image-container {
    margin-bottom: 30px;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(43, 108, 176, 0.3);
    animation: pulse 2s infinite;
}

.badge-number {
    font-size: 2rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    line-height: 1.2;
}

.profile-basic-info h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.title-container {
    text-align: center;
    margin-bottom: 25px;
}

.main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.main-title i {
    font-size: 1.2rem;
}

.sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--gray);
}

.current-company {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.company-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.company-info {
    flex: 1;
}

.company-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.company-name {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.contact-info-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 3px;
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Right Column - Stats Section */
.hero-stats-section {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
}

.hero-intro {
    margin-bottom: 35px;
    text-align: center;
}

.hero-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

.hero-intro h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.tagline {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.quick-info {
    margin-bottom: 35px;
}

.quick-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-info h3 i {
    color: var(--accent);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.expertise-tag {
    background: var(--light);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.expertise-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-image {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-redesigned {
        padding: 30px 0 50px;
    }
    
    .profile-basic-info h1 {
        font-size: 1.8rem;
    }
    
    .main-title {
        font-size: 1.1rem;
    }
    
    .sub-title {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-profile-card,
    .hero-stats-section {
        padding: 25px 20px;
    }
    
    .profile-image {
        height: 220px;
    }
    
    .experience-badge {
        padding: 12px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-tags {
        gap: 8px;
    }
    
    .expertise-tag {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(43, 108, 176, 0.85)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.contact-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-details {
    margin-bottom: 25px;
}

.contact-details p {
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-details strong {
    color: var(--primary);
}

/* Phone Items */
.phone-item, .email-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.phone-item:last-child, .email-item:last-child {
    border-bottom: none;
}

.phone-item i, .email-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 24px;
}

.phone-number, .email-address {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.phone-label, .email-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.call-btn, .email-btn {
    background: var(--light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    white-space: nowrap;
}

.call-btn:hover, .email-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.timing-info {
    background: var(--light);
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 3px solid var(--accent);
}

.timing-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.timing-info i {
    color: var(--accent);
}

.website-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 15px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.website-link:hover {
    background: var(--accent);
    color: var(--white);
}

.view-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.view-map:hover {
    background: var(--accent);
    color: var(--white);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-form {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--secondary);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Purpose Options */
.purpose-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.purpose-option {
    position: relative;
}

.purpose-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.purpose-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    gap: 10px;
}

.purpose-option label i {
    font-size: 1.5rem;
    color: var(--accent);
}

.purpose-option label span {
    font-size: 0.95rem;
    font-weight: 600;
}

.purpose-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(66, 153, 225, 0.05));
    border-color: var(--accent);
    color: var(--accent);
}

.purpose-option input[type="radio"]:checked + label i {
    color: var(--accent);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-note i {
    color: var(--accent);
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38a169, #2f855a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
/* Simple fix - align items properly */
.phone-item, .email-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.phone-item:last-child, .email-item:last-child {
    border-bottom: none;
}

.phone-item i, .email-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.phone-item div, .email-item div {
    min-width: 0; /* Allow text to wrap */
}

.call-btn, .email-btn {
    background: var(--light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.call-btn:hover, .email-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
/* ===== REDESIGNED MAP SECTION ===== */

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.map-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.map-header p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    height: 500px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-info-card {
    background: var(--white);
    padding: 35px 30px;
    border-left: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-info-card h4 i {
    color: var(--accent);
    font-size: 1.3rem;
}

.map-info-card p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.map-info-card p i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.map-info-card strong {
    color: var(--primary);
    font-weight: 600;
}

.directions-btn {
    margin-top: 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 14px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
}

.directions-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.directions-btn i {
    font-size: 1.1rem;
}

/* Map Loading State */
.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
    border-radius: 20px;
}

.map-loading i {
    font-size: 3rem;
    color: var(--accent);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-loading p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Alternative Map Placeholder */
.alternative-map {
    display: none;
    background: var(--light);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 30px;
    border: 2px dashed var(--light-gray);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.5;
}

.map-placeholder p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 400px;
}

/* Additional Location Information */
.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.location-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h4 i {
    color: var(--accent);
}

.location-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .map-wrapper {
        grid-template-columns: 1fr;
        height: 600px;
    }
    
    .map-info-card {
        padding: 25px;
        border-left: none;
        border-top: 1px solid var(--light-gray);
    }
    
    .directions-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
    
    .map-wrapper {
        height: 500px;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        height: 400px;
    }
    
    .map-info-card {
        padding: 20px;
    }
    
    .map-info-card h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .directions-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Map Controls Styling */
.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.map-control-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.map-control-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

/* Map Attribution */
.map-attribution {
    text-align: center;
    margin-top: 15px;
    color: var(--gray);
    font-size: 0.85rem;
}

.map-attribution a {
    color: var(--accent);
    text-decoration: none;
}

.map-attribution a:hover {
    text-decoration: underline;
}
/* ===== UPDATED EMAIL CARD STYLES ===== */

/* Email Items - Without Send Button */
.email-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.email-item:last-child {
    border-bottom: none;
}

.email-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
    width: 24px;
}

.email-item > div {
    flex: 1;
    min-width: 0;
}

.email-link {
    display: block;
    text-decoration: none;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.email-address {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.email-link:hover .email-address {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.email-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* For better visual feedback on hover */
.email-item:hover i {
    transform: scale(1.1);
    color: var(--accent-light);
}

/* Alternative styling for email links */
.email-link:hover {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .email-item {
        flex-direction: column;
        gap: 8px;
        padding: 15px 0;
    }
    
    .email-item i {
        align-self: flex-start;
    }
}
/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Hero */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.portfolio-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.portfolio-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.portfolio-hero .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #4fd1c7;
    line-height: 1;
    margin-bottom: 8px;
}

.stat .label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Portfolio Filter */
.portfolio-filter {
    padding: 60px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.filter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.filter-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.5;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--accent-light);
    color: var(--white);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(43, 108, 176, 0.2);
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--light);
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    margin-top: 20px;
}

.active-filter {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.item-count {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--accent);
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 40px 0 80px;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    height: 260px;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-caption {
    padding: 15px;
    border-top: 1px solid var(--light-gray);
    background: var(--white);
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-image-container {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: imageFadeIn 0.3s ease;
}

@keyframes imageFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Lightbox Caption */
.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.lightbox-caption h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4;
}

.lightbox-caption p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
}

.lightbox-counter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-image {
        height: 170px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat .number {
        font-size: 1.8rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 240px;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .gallery-caption {
        padding: 12px;
        min-height: 70px;
    }
    
    .gallery-caption p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .portfolio-hero {
        padding: 80px 0 40px;
    }
    
    .portfolio-hero h1 {
        font-size: 2rem;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .filter-btn i {
        display: none;
    }
    
    .lightbox-image-container {
        height: 60vh;
    }
    
    .lightbox-caption h3 {
        font-size: 1.3rem;
    }
    
    .lightbox-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-caption {
        min-height: 80px;
        padding: 15px;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .stat .number {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 40%;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-image-container {
        height: 50vh;
    }
    
    .lightbox-caption h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-caption p {
        font-size: 0.95rem;
    }
}

/* Animation for gallery items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeIn 0.5s ease forwards;
}

/* Loading animation for images */
.gallery-image {
    position: relative;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.gallery-image.loaded {
    background: transparent;
    animation: none;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Image transition fix */
.lightbox-image-container img {
    transition: opacity 0.3s ease;
}

.lightbox-image-container img.loading {
    opacity: 0;
}

.lightbox-image-container img.loaded {
    opacity: 1;
}
/* ===== AWARDS PAGE STYLES ===== */

/* Awards Hero */
.awards-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.awards-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1665680674724-3a3b3368e036?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.awards-hero .hero-content {
    position: relative;
    z-index: 2;
}

.awards-hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.awards-hero .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Awards Filter */
.awards-filter {
    padding: 60px 0 40px;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

/* Awards Gallery */
.awards-gallery {
    padding: 40px 0 80px;
    background: var(--light);
}

.awards-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.awards-gallery .gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    height: 220px; /* Slightly shorter for awards */
    display: flex;
    flex-direction: column;
    position: relative;
}

.awards-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.category-badge.certification {
    background: linear-gradient(135deg, #4299e1, #2b6cb0);
    color: white;
}

.category-badge.award {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: white;
}

.category-badge.appreciation {
    background: linear-gradient(135deg, #68d391, #38a169);
    color: white;
}

.awards-gallery .gallery-image {
    height: 140px; /* Shorter image area */
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.awards-gallery .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.awards-gallery .gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.awards-gallery .gallery-caption {
    padding: 12px 15px;
    border-top: 1px solid var(--light-gray);
    background: var(--white);
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 60px;
    max-height: 60px;
}

.awards-gallery .gallery-caption p {
    font-size: 0.85rem;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show 2 lines max */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 100%;
}

/* Single line text for awards */
.awards-gallery .gallery-caption.single-line p {
    -webkit-line-clamp: 1; /* Force single line */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Design for Awards */
@media (max-width: 1200px) {
    .awards-gallery .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .awards-gallery .gallery-item {
        height: 210px;
    }
    
    .awards-gallery .gallery-image {
        height: 135px;
    }
}

@media (max-width: 992px) {
    .awards-gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .awards-hero h1 {
        font-size: 2.5rem;
    }
    
    .awards-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .awards-hero .hero-stats {
        gap: 30px;
    }
    
    .awards-hero .stat .number {
        font-size: 1.8rem;
    }
    
    .awards-gallery .gallery-caption p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 768px) {
    .awards-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .awards-gallery .gallery-item {
        height: 200px;
    }
    
    .awards-gallery .gallery-image {
        height: 130px;
    }
    
    .awards-gallery .gallery-caption {
        padding: 10px 12px;
        min-height: 50px;
    }
    
    .awards-gallery .gallery-caption p {
        font-size: 0.75rem;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }
    
    .awards-hero {
        padding: 80px 0 40px;
    }
    
    .awards-hero h1 {
        font-size: 2rem;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .filter-btn i {
        display: none;
    }
}

@media (max-width: 576px) {
    .awards-gallery .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .awards-gallery .gallery-item {
        height: 240px;
    }
    
    .awards-gallery .gallery-image {
        height: 160px;
    }
    
    .awards-gallery .gallery-caption {
        min-height: 60px;
        padding: 12px 15px;
    }
    
    .awards-gallery .gallery-caption p {
        font-size: 0.85rem;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .awards-hero .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .awards-hero .stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .awards-hero .stat .number {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
}

/* Animation for awards items */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.awards-gallery .gallery-item {
    animation: slideUp 0.5s ease forwards;
}

/* Stagger animation for items */
.awards-gallery .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.awards-gallery .gallery-item:nth-child(3) { animation-delay: 0.2s; }
.awards-gallery .gallery-item:nth-child(4) { animation-delay: 0.3s; }
.awards-gallery .gallery-item:nth-child(5) { animation-delay: 0.4s; }
.awards-gallery .gallery-item:nth-child(6) { animation-delay: 0.5s; }

/* Special styling for awards page filter */
.awards-filter .filter-btn[data-filter="certification"]:hover,
.awards-filter .filter-btn[data-filter="certification"].active {
    background: linear-gradient(135deg, #4299e1, #2b6cb0);
    border-color: #2b6cb0;
}

.awards-filter .filter-btn[data-filter="award"]:hover,
.awards-filter .filter-btn[data-filter="award"].active {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    border-color: #ed8936;
}

.awards-filter .filter-btn[data-filter="appreciation"]:hover,
.awards-filter .filter-btn[data-filter="appreciation"].active {
    background: linear-gradient(135deg, #68d391, #38a169);
    border-color: #38a169;
}

/* Lightbox styles */
.lightbox-modal .lightbox-caption h3 {
    color: #ffffff !important;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.4;
}
/* ===== MOBILE SPECIFIC FIXES ===== */

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile menu fixes */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    
    .center-nav {
        display: none;
    }
    
    .mobile-nav-menu {
        display: block;
    }
    
    /* Ensure mobile menu is above everything */
    .mobile-nav-menu.active {
        z-index: 99999;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Mobile touch feedback */
    .mobile-nav-link:active,
    .btn:active,
    button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Fix for iOS Safari 100vh issue */
    .mobile-nav-menu {
        height: -webkit-fill-available;
        height: 100dvh;
    }
    
    /* Swiper fixes for mobile */
    .swiper-slide {
        padding: 20px;
    }
    
    .slide-content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    .slide-content p {
        font-size: 1.1rem !important;
    }
    
    /* Gallery fixes */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .gallery-item {
        height: 200px !important;
    }
    
    .gallery-image {
        height: 130px !important;
    }
    
    .gallery-caption p {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;
    }
    
    /* Lightbox mobile fixes */
    .lightbox-nav {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    .lightbox-close {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        top: 15px !important;
        right: 15px !important;
    }
    
    .lightbox-image-container {
        height: 50vh !important;
    }
    
    /* Form mobile fixes */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .contact-card {
        padding: 25px 20px !important;
    }
    
    /* Header mobile fixes */
    .header-right .partner-btn {
        display: none;
    }
    
    .header-container {
        padding: 10px 15px !important;
    }
    
    .logo-img {
        height: 45px !important;
    }
    
    .logo-text {
        font-size: 1.2rem !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-item {
        height: 220px !important;
    }
    
    .gallery-image {
        height: 150px !important;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.6rem !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* Single column for hero stats */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .stat .number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

/* Fix for tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .mobile-nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 767px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Fix for iOS button active state */
button {
    -webkit-tap-highlight-color: transparent;
}

/* Improve touch targets */
.btn, 
button, 
.mobile-nav-link, 
.filter-btn, 
.gallery-item {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent text selection on interactive elements */
.btn, 
button, 
.mobile-nav-link, 
.filter-btn {
    user-select: none;
    -webkit-user-select: none;
}

/* Smooth scrolling for iOS */
html {
    -webkit-overflow-scrolling: touch;
}

/* Loading animation */
@keyframes fadeInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to mobile elements */
@media (max-width: 768px) {
    .gallery-item,
    .skill-card,
    .achievement-card,
    .timeline-card {
        animation: fadeInMobile 0.5s ease forwards;
    }
}

/* Ensure images don't overflow on mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for fixed header on mobile iOS */
@supports (-webkit-touch-callout: none) {
    header {
        position: -webkit-sticky;
    }
}
/* ===== URGENT MOBILE FIXES ===== */

/* 1. Force mobile menu to work */
@media (max-width: 768px) {
    /* Ensure mobile menu is visible when active */
    .mobile-nav-menu.active {
        transform: translateX(0) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Force mobile menu button to show */
    .mobile-menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10001 !important;
    }
    
    /* Hide desktop menu on mobile */
    .center-nav {
        display: none !important;
    }
    
    /* Make sure mobile menu is on top */
    .mobile-nav-menu {
        z-index: 99999 !important;
    }
    
    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* 2. Touch device fixes */
button, 
a.btn, 
.mobile-nav-link,
.filter-btn {
    -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
}

/* 3. Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
}

/* 4. Fix for iOS Safari 100vh issue */
.mobile-nav-menu {
    height: 100vh !important;
    height: -webkit-fill-available !important;
}

/* 5. Make sure all clickable elements are tappable */
@media (max-width: 768px) {
    .btn, 
    button, 
    .mobile-nav-link, 
    .filter-btn, 
    .gallery-item {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    /* Increase tap area for mobile menu button */
    .mobile-menu-btn {
        padding: 15px !important;
        width: 60px !important;
        height: 60px !important;
    }
}

/* 6. Fix for image galleries on mobile */
@media (max-width: 768px) {
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* 7. Emergency override for any hidden elements */
[style*="display: none"] {
    display: none !important;
}

.mobile-nav-menu:not(.active) {
    display: none !important;
}
/* ===== HERO SLIDER - MOBILE RESPONSIVE FIX ===== */

.hero-slider {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px; /* Add padding for mobile */
}

.swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(43, 108, 176, 0.75));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    width: 100%; /* Ensure full width */
}

/* Desktop styles */
.slide-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.slide-content .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    margin: 0 10px;
    display: inline-block;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .slide-content p {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .slide-content .btn {
        font-size: 1rem;
        padding: 14px 35px;
    }
}

/* Mobile styles (768px and below) */
@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .swiper-slide {
        padding: 15px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem !important; /* Force override */
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .slide-content p {
        font-size: 1.1rem !important; /* Force override */
        margin-bottom: 25px;
        line-height: 1.4;
        padding: 0 15px;
    }
    
    .slide-content .btn {
        font-size: 0.95rem;
        padding: 12px 25px;
        margin: 5px;
        display: block;
        width: 80%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Stack buttons vertically on mobile */
    .slide-content .btn + .btn {
        margin-top: 10px;
    }
}

/* Small mobile styles (480px and below) */
@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .swiper-slide {
        padding: 10px;
    }
    
    .slide-content {
        padding: 0 10px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 12px;
        line-height: 1.2;
        padding: 0;
    }
    
    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 20px;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .slide-content .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
        width: 90%;
    }
    
    /* Hide navigation arrows on very small screens */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
    .hero-slider {
        height: 380px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem !important;
    }
    
    .slide-content p {
        font-size: 0.9rem !important;
    }
    
    .slide-content .btn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 15px;
    }
    
    .slide-content .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Ensure text doesn't overflow on small screens */
.slide-content h1,
.slide-content p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero-slider {
        height: -webkit-fill-available;
        max-height: 600px;
    }
    
    .swiper-slide {
        padding: env(safe-area-inset-top) env(safe-area-inset-right) 
                env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
}

/* Swiper navigation buttons mobile fix */
.swiper-button-next,
.swiper-button-prev {
    width: 44px !important;
    height: 44px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    color: white !important;
    font-weight: bold;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px !important;
    }
}

/* Swiper pagination mobile fix */
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.3) !important;
}

@media (max-width: 768px) {
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Button container for better mobile layout */
.btn-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .btn-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn-container .btn {
        width: 100%;
        max-width: 280px;
    }
}
/* ===== CONTACT FORM MOBILE FIXES ===== */

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background: var(--white);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
}

@media (max-width: 768px) {
    .form-container {
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 20px 15px;
        margin: 0 10px;
    }
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .form-header h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.6rem;
    }
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .form-header p {
        font-size: 0.9rem;
    }
}

/* Contact Form */
.contact-form {
    margin-bottom: 20px;
}

/* Form Row - Stack on mobile */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .form-group label {
        font-size: 0.95rem;
        gap: 8px;
        margin-bottom: 6px;
    }
}

.form-group label i {
    color: var(--accent);
    font-size: 0.9em;
}

/* Form Inputs */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--secondary);
    transition: all 0.3s ease;
    background: var(--white);
    font-family: inherit;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 16px;
        font-size: 16px; /* Prevents iOS zoom */
        border-radius: 8px;
    }
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

/* Textarea specific */
.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .form-group textarea {
        min-height: 120px;
    }
}

/* Purpose Options - Stack on mobile */
.purpose-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .purpose-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .purpose-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.purpose-option {
    position: relative;
}

.purpose-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.purpose-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    background: var(--light);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    gap: 10px;
    min-height: 80px;
}

@media (max-width: 768px) {
    .purpose-option label {
        padding: 15px 10px;
        min-height: 70px;
    }
}

.purpose-option label i {
    font-size: 1.5rem;
    color: var(--accent);
}

.purpose-option label span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .purpose-option label span {
        font-size: 0.85rem;
    }
}

.purpose-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(66, 153, 225, 0.05));
    border-color: var(--accent);
    color: var(--accent);
}

.purpose-option input[type="radio"]:checked + label i {
    color: var(--accent);
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .form-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 15px;
        margin-top: 20px;
    }
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

@media (max-width: 768px) {
    .submit-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 1rem;
        order: 2; /* Move button below note on mobile */
    }
}

@media (max-width: 480px) {
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn i {
    font-size: 1.1em;
}

/* Form Note */
.form-note {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 300px;
}

@media (max-width: 768px) {
    .form-note {
        order: 1; /* Move note above button on mobile */
        justify-content: center;
        text-align: center;
        max-width: 100%;
        margin-bottom: 10px;
    }
}

.form-note i {
    color: var(--accent);
    font-size: 1.1em;
    flex-shrink: 0;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

@media (max-width: 768px) {
    .form-success {
        padding: 30px 15px;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38a169, #2f855a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .form-success h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

.form-success p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .form-success p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Error Messages */
.field-error {
    color: #e53e3e !important;
    font-size: 0.85rem !important;
    margin-top: 5px !important;
    display: block !important;
}

/* Contact Info Cards Mobile Fix */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Fix for contact items layout */
    .phone-item, 
    .email-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }
    
    .phone-item i, 
    .email-item i {
        align-self: flex-start;
    }
    
    .call-btn, 
    .email-btn {
        align-self: flex-start;
        margin-top: 5px;
    }
}

/* Contact Hero Mobile Fix */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero .lead {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Map Section Mobile Fix */
@media (max-width: 768px) {
    .map-wrapper {
        grid-template-columns: 1fr;
        height: 400px;
    }
    
    .map-info-card {
        padding: 20px;
    }
    
    .map-info-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .directions-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Prevent iOS zoom on input focus */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Loading state for form submission */
.form-loading {
    position: relative;
    opacity: 0.7;
    pointer-events: none;
}

.form-loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Accessibility improvements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.purpose-option input[type="radio"]:focus + label {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Required field indicator */
.form-group label.required:after {
    content: " *";
    color: #e53e3e;
}

