/* css/about.css */

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --black: #0A0A0A;
    --light-black: #1A1A1A;
    --spa-green: #2F4F4F;
    --light-spa: #E8F4F4;
    --white: #ffffff;
    --gray-100: #f8f8f8;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* ========== BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-100);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
  user-select: none;
}

.about-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========== UTILITY CLASSES ========== */
.gold-text {
    color: var(--gold) !important;
}

.gold-bg {
    background-color: var(--gold) !important;
}

.black-bg {
    background-color: var(--black);
}

.spa-bg {
    background-color: var(--spa-green);
}

.spa-light-bg {
    background-color: var(--light-spa);
}

.border-gold {
    border-color: var(--gold) !important;
}

.spa-gradient {
    background: linear-gradient(135deg, var(--spa-green) 0%, var(--black) 100%);
}


/* ========== HERO SECTION ========== */
.about-hero-modern {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(47, 79, 79, 0.85) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/banner-about.png') center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: 0.4;
    animation: bgPan 20s ease-in-out infinite alternate;
}

@keyframes bgPan {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.floating-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    opacity: 0.1;
    filter: blur(60px);
    animation: float 15s ease-in-out infinite;
}

.floating-shape.shape-1 {
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
    background: linear-gradient(45deg, var(--spa-green), var(--dark-gold));
    width: 400px;
    height: 400px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
}

.hero-left, .hero-right {
    width: 100%;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--gold) 30%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    line-height: 1.6;
}

.hero-divider {
    /*width: 120px;*/
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 2rem auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Philosophy Card */
.philosophy-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
}

.philosophy-heading {
    color: var(--white);
}

.philosophy-text {
    font-style: italic;
    line-height: 1.6;
}

.philosophy-author {
    font-size: 1.1rem;
}

.philosophy-features {
    display: grid;
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(212, 175, 55, 0.1);
}

.feature-text {
    color: var(--gray-300);
    padding-left: 12px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.hero-stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-text {
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.indicator-text {
    color: var(--gold);
}

.indicator-icon {
    color: var(--gold);
}

/* ========== MAIN CONTENT ========== */
.about-content {
    padding: 4rem 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--gold);
}

/*.section-heading::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 80px;*/
/*    height: 4px;*/
/*    background-color: var(--gold);*/
/*    border-radius: 2px;*/
/*}*/

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    margin-bottom: 5rem;
}

.story-image, .story-text {
    width: 100%;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.badge-number {
    font-size: 2rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.story-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.story-paragraph {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--gold);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Mission Section */
.mission-section {
    background-color: var(--light-spa);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin-bottom: 5rem;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .mission-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--black);
    font-size: 2rem;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Values Container */
.values-container {
    margin-top: 3rem;
}

.values-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.value-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    background: linear-gradient(45deg, var(--spa-green) 0%, var(--black) 100%);
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.value-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    margin-bottom: 5rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--dark-gold));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    top: 20px;
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--gold);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid var(--gold);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin-bottom: 5rem;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Image Container */
.profile-image-box {
    width: 100%;
    /*max-width: 280px;*/
    height: auto;
    /*border-radius: 18px;*/
    overflow: hidden;
    /*background: #f5f5f5;*/
    /*box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);*/
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Image */
.profile-image-box img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.profile-image-box:hover img {
    transform: scale(1.08);
}



/* Tablet */
@media (max-width: 1024px) {
    .profile-image-box {
        max-width: 240px;
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .profile-image-box {
        max-width: 100%;
        height: 220px;
    }
}


/* Stats Section */
.stats-container {
    background: linear-gradient(135deg, var(--black) 0%, var(--spa-green) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--spa-green) 0%, var(--black) 100%);
    padding: 6rem 0;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-text {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.secondary-btn {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}



/* ========== RESPONSIVE DESIGN ========== */

/* Large Desktop (1440px - 1600px) */
@media screen and (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    
    .main-heading {
        font-size: 3.25rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .cta-heading {
        font-size: 2.75rem;
    }
}

/* Desktop (1200px - 1439px) */
@media screen and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }
    
    .nav-list {
        gap: 2rem;
    }
    
    .main-heading {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .section-heading {
        font-size: 2.25rem;
    }
    
    .mission-title, .team-member-name {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .footer-heading {
        font-size: 1.3rem;
    }
}

/* Small Desktop (1024px - 1199px) */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
    
    .main-heading {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat-item {
        min-width: 130px;
        padding: 1.25rem;
    }
    
    .hero-stat-number {
        font-size: 2.25rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 22px !important;
    }
    
    .timeline-content {
        border-left: 5px solid var(--gold) !important;
        border-right: none !important;
    }
    
    .footer-heading {
        font-size: 1.25rem;
    }
}

/* Tablet Landscape (900px - 1023px) */
@media screen and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .about-hero-modern {
        padding: 6rem 1rem;
        min-height: auto;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .hero-stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-text {
        font-size: 0.9rem;
    }
    
    .story-title {
        font-size: 1.75rem;
    }
    
    .mission-section {
        padding: 3rem 1.5rem;
    }
    
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .values-container {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
}

/* Tablet Portrait (768px - 899px) */
@media screen and (max-width: 899px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .mobile-logo-img {
        height: 45px;
    }
    
     .value-icon {
        margin: 0 auto; /* top-bottom 0, left-right auto for centering */
        display: block;  /* ensure it's treated as a block element */
    }
    
    .about-hero-modern {
        padding: 5rem 1rem;
    }
    
    .main-heading {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons button, .cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    .section-heading {
        font-size: 1.875rem;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-heading {
        font-size: 1.15rem;
    }
}

/* Large Mobile (600px - 767px) */
@media screen and (max-width: 767px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .mobile-logo-img {
        height: 40px;
    }
    
  .feature-text {
        font-size: 0.85rem;
        padding-left: 8px;
    }
    
    .hamburger {
        width: 28px;
        height: 22px;
    }
    
    .mobile-menu {
        margin-top: 0.75rem;
    }
    
    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .hero-right{
       font-size: 17px !important;
    }
    .section-heading{
        font-size: 22px !important;
    }
    
    .hero-title{
    font-size: 35px !important;
    line-height: 1;
    text-align: center;
}

.hero-description{
        font-size: 16px !important;
        text-align: center;
}

    .experience-badge {
        width: 60px;
        height: 60px;
        top: 10px;
        right: 10px;
    }
    
    .about-hero-modern {
        padding: 4rem 1rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .philosophy-card {
        padding: 1.5rem;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 3rem 0;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .story-title {
        font-size: 1.6rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .story-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-badge {
        width: 60px;
        height: 60px;
        top: 15px;
        right: 15px;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .mission-section {
        padding: 3rem 1rem;
        border-radius: 20px;
    }
    
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .mission-title {
        font-size: 1.3rem;
    }
    
    .mission-text {
        font-size: 0.95rem;
    }
    
    .values-heading {
        font-size: 1.75rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
      .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        display: flex;
    }
    
    
    .value-title {
        font-size: 1.1rem;
    }
    
    .value-text {
        font-size: 0.95rem;
    }
    
    .team-member-card {
        padding: 1.5rem;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
    }
    
    .team-member-name {
        font-size: 1.3rem;
    }
    
    .team-member-description {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
    }
    
    .contact-cta {
        padding: 4rem 0;
    }
    
    .cta-heading {
        font-size: 1.5rem !important;
    }
    
    .cta-text {
        font-size: 1rem !important;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-heading {
        font-size: 1.3rem;
    }
    
    .footer-description, .footer-text {
        font-size: 0.95rem;
    }
    
    .footer-link {
        font-size: 0.95rem;
    }
    
    .copyright {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
}

/* Medium Mobile (480px - 599px) */
@media screen and (max-width: 599px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-logo-img {
        height: 35px;
    }
    
    .mobile-nav {
        padding: 1.5rem 1rem;
    }
    
    .mobile-nav-link {
        font-size: 0.95rem;
    }
    
    .special-offer-box {
        padding: 1.25rem;
    }
    
    .main-heading {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .book-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-stat-item {
        min-width: 110px;
        padding: 0.875rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-text {
        font-size: 0.85rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .story-title {
        font-size: 1.4rem;
    }
    
    .story-paragraph {
        font-size: 0.95rem;
    }
    
    .mission-section {
        padding: 2rem 1rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    .mission-title {
        font-size: 1.2rem;
    }
    
    .mission-text {
        font-size: 0.9rem;
    }
    
    .values-heading {
        font-size: 1.5rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .value-icon {
        /*margin-right: 0;*/
        margin-bottom: 1rem;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-dot {
        left: 16px !important;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-year {
        font-size: 1.3rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
    }
    
    .team-member-card {
        padding: 1.25rem;
    }
    
    .team-img {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .team-member-name {
        font-size: 1.2rem;
    }
    
    .team-member-description {
        font-size: 0.9rem;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .stats-container {
        padding: 3rem 1rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
    }
    
    .footer-description, .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
}

/* Small Mobile (400px - 479px) */
@media screen and (max-width: 479px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .mobile-logo-img {
        height: 32px;
    }
    
    .hamburger {
        width: 26px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .mobile-nav-link {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .mobile-nav-link i {
        font-size: 1rem;
    }
    
    .special-offer-box {
        padding: 1rem;
    }
    
    .special-offer-box h3 {
        font-size: 1.1rem;
    }
    
    .special-offer-box p {
        font-size: 0.85rem;
    }
    
    .special-offer-box button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .about-hero-modern {
        padding: 3rem 0.75rem;
    }
    
    .main-heading {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons button, .cta-buttons button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .philosophy-card {
        padding: 1.25rem;
    }
    
    .philosophy-heading {
        font-size: 1.5rem;
    }
    
    .philosophy-text {
        font-size: 0.9rem;
    }
    
    .philosophy-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .hero-stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-text {
        font-size: 0.8rem;
    }
    
    .about-content {
        padding: 2rem 0;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .story-img {
        border-radius: 12px;
    }
    
    /*.experience-badge {*/
    /*    width: 50px;*/
    /*    height: 50px;*/
    /*    top: 10px;*/
    /*    right: 10px;*/
    /*}*/
    
    .badge-number {
        font-size: 16px !important;    
        line-height: 16px !important;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .story-title {
        font-size: 1.3rem;
    }
    
    .story-paragraph {
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
        /*margin-right: 0.75rem;*/
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    .mission-section {
        padding: 1.5rem 0.75rem;
        border-radius: 16px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .mission-title {
        font-size: 1.1rem;
    }
    
    .mission-text {
        font-size: 0.85rem;
    }
    
    .values-container {
        padding: 1.5rem;
    }
    
    .values-heading {
        font-size: 1.3rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
  
    .value-title {
        font-size: 1rem;
    }
    
    .value-text {
        font-size: 0.85rem;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .timeline-dot {
        left: 11px !important;
        width: 14px;
        height: 14px;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-year {
        font-size: 1.2rem;
    }
    
    .timeline-title {
        font-size: 1rem;
    }
    
    .timeline-text {
        font-size: 0.85rem;
    }
    
    .team-member-card {
        padding: 1rem;
    }
    
    .team-img {
        width: 90px;
        height: 90px;
    }
    
    .team-member-name {
        font-size: 1.1rem;
    }
    
    .team-member-role {
        font-size: 1rem;
    }
    
    .team-member-description {
        font-size: 0.85rem;
    }
    
    .stats-container {
        padding: 2rem 0.75rem;
        border-radius: 16px;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-title {
        font-size: 0.9rem;
    }
    
    .contact-cta {
        padding: 3rem 0;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description, .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .social-icon {
        font-size: 1rem;
    }
    
    .copyright-text {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (320px - 399px) */
@media screen and (max-width: 399px) {
    .header-container {
        padding: 0 0.5rem;
    }
    
    .mobile-logo-img {
        height: 28px;
    }
    
    .mobile-nav {
        padding: 1.25rem 0.75rem;
    }
    
    .mobile-nav-link {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .about-hero-modern {
        padding: 2.5rem 0.5rem;
    }
    
    .main-heading {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .book-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .hero-stat-item {
        min-width: 90px;
        padding: 0.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.25rem;
    }
    
    .hero-stat-text {
        font-size: 0.75rem;
    }
    
    .section-heading {
        font-size: 1.35rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    .story-title {
        font-size: 1.2rem;
    }
    
    .story-paragraph {
        font-size: 0.85rem;
    }
    
    .mission-title, .team-member-name {
        font-size: 1rem;
    }
    
    .mission-text, .team-member-description {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
}

/* Very Small Mobile (below 320px) */
@media screen and (max-width: 319px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .mobile-logo-img {
        height: 24px;
    }
    
    .mobile-nav-link {
        font-size: 0.8rem;
    }
    
    .main-heading {
        font-size: 1.3rem;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .story-title {
        font-size: 1.1rem;
    }
    
    .book-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-heading {
        font-size: 0.95rem;
    }
}