/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 7rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-column {
    padding: 0 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-right: 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.footer-logo h3 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.footer-about {
    color: #b3b3b3;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.4rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.footer-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    color: #b3b3b3;
    font-size: 1.4rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 1.5rem;
    font-size: 1.8rem;
    margin-top: 4px;
}

.footer-contact a {
    color: #b3b3b3;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 2rem;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
    width: 100%;
}

.newsletter-form .form-control {
    width: 100%;
    padding: 1.2rem 5rem 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(209, 164, 16, 0.2);
}

.newsletter-form .form-control::placeholder {
    color: #777;
}

.newsletter-form .btn-subscribe {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form .btn-subscribe:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
}

.newsletter-form .btn-subscribe i {
    font-size: 1.4rem;
}

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

.footer-column {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Footer Bottom */

.footer-bottom {
    background: #111;
    padding: 2.5rem 0;
    text-align: center;
    font-size: 1.4rem;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 5rem 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-about, 
    .footer-links a,
    .footer-contact li {
        font-size: 1.5rem;
    }
}

/* Base Styles */
:root {
    --primary-color: #d1a410;
    --secondary-color: #d38c07;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.8rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================================
   Header - Transparent & Modern
   =============================================== */
.header {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgb(255, 255, 255);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

/* Scrolled State */
.header.scrolled {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 800;
    color: #dbc089;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1002;
}

/* Logo in scrolled state */
.header.scrolled .logo {
    color: #2c3e50;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
    object-fit: cover;
}

.logo span {
    color: #4c5564;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
}

.nav-links a {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000000;
    position: relative;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

/* Change link color when scrolled */
.header.scrolled .nav-links a {
    color: #000000;
}

/* Hover effect */
.nav-links a:hover {
    color: #e74c3c;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
    position: relative;
    width: 35px;
    height: 24px;
}

.hamburger-box {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 100%;
    height: 3px;
    background-color:  #000000;
    border-radius: 4px;
    position: absolute;
    transition: all 0.3s ease;
    left: 0;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
    transition-delay: 0.1s;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Active state */
.hamburger.is-active .hamburger-inner {
    background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
    top: 0;
}

.hamburger.is-active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
    bottom: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 8rem;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    will-change: opacity, visibility;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide:not(.active) {
    z-index: 1;
}

.hero-slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.hero-slide.active .hero-slide-img {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    color: var(--white);
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active .slide-overlay {
    opacity: 1;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    display: flex;
    gap: 1.5rem;
    z-index: 3;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.slider-indicators {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* ===============================================
   About Section - Modern & Responsive
   =============================================== */
.about {
    padding: 10rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-top: 6rem;
}

.about-text {
    flex: 1;
    position: relative;
    padding-right: 3rem;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
    border-radius: 10px;
}

.about-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 3rem;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 20px;
    height: 3px;
    background: #e74c3c;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.about-list li {
    position: relative;
    padding: 1rem 0 1rem 4rem;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    color: #444;
    font-weight: 500;
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 1.2rem;
    color: #e74c3c;
    font-size: 1.8rem;
    width: 30px;
    height: 30px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-list li:hover i {
    background: #e74c3c;
    color: white;
    transform: rotate(360deg);
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

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

.about-image:hover::before {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 4rem;
    }
    
    .about-text {
        padding-right: 0;
        padding-left: 3rem;
    }
    
    .about-text::before {
        left: 0;
        right: auto;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }
    
    .about-text p {
        font-size: 1.7rem;
        padding-left: 2.5rem;
    }
    
    .about-list li {
        font-size: 1.6rem;
        padding-left: 3.5rem;
    }
}

@media (max-width: 480px) {
    .about-text p {
        font-size: 1.6rem;
    }
    
    .about-list li {
        font-size: 1.5rem;
        padding-left: 3rem;
    }
    
    .about-list li i {
        top: 1rem;
        font-size: 1.6rem;
        width: 26px;
        height: 26px;
    }
}

/* ===============================================
   Our Story Section - Modern Timeline Layout
   =============================================== */
.story-section {
    padding: 10rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.story-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.story-section .section-tag {
    display: inline-block;
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.story-section .section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
}

.story-section .section-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #1a2634;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.story-section .section-subtitle {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Timeline Styles */
.story-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 8rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
}

.timeline-item {
    padding: 1.5rem 4rem;
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 6rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 6rem;
    text-align: left;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-content {
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    flex: 1;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.timeline-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2634;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.timeline-image {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
 */
.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

/* =======================
   Values Section Styles
======================= */

.values-section {
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: 'Arial', sans-serif;
}

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

.section-tag {
    display: inline-block;
    color: #ff6b6b;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 40px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}




/* Responsive tweaks */
@media(max-width: 768px){
    .section-header h2 {
        font-size: 28px;
    }
    .value-card {
        padding: 25px 15px;
    }
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.6rem;
    color: #666;
    font-weight: 600;
}

/* CTA Section */
.story-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.story-cta h2 {
    font-size: 3.2rem;
    color: #1a2634;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-cta p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 1.5rem 2rem 1.5rem 6rem !important;
        text-align: left !important;
        margin-bottom: 3rem;
    }

    .story-timeline::before {
        left: 30px;
    }

    .timeline-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .story-section {
        padding: 6rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-cta {
        padding: 4rem 2rem;
    }

    .story-cta h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
.about-our-story {
    padding: 12rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/pattern-bg.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.about-our-story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-our-story-image {
    flex: 1 1 48%;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 12px solid #fff;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    will-change: transform;
}

.about-our-story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-our-story-image:hover::before {
    opacity: 1;
}

.about-our-story-image:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
}

.about-our-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.about-our-story-image:hover img {
    transform: scale(1.05);
}

.about-our-story-text {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 3rem 0;
    position: relative;
}

.about-our-story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4rem;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(231, 76, 60, 0) 0%, 
        rgba(231, 76, 60, 0.5) 50%, 
        rgba(231, 76, 60, 0) 100%);
    opacity: 0.7;
}

.about-our-story-text h2 {
    font-size: clamp(3rem, 4.5vw, 4.2rem);
    margin: 0 0 2.5rem 0;
    color: #1a2634;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.about-our-story-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    margin-top: 1.5rem;
    border-radius: 2px;
}

.about-our-story-text .section-tag {
    display: inline-block;
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    background: rgba(231, 76, 60, 0.1);
    padding: 0.8rem 1.5rem 0.8rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-our-story-text .section-tag::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.about-our-story-text p {
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.7rem;
    font-weight: 400;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid #eee;
}

.about-our-story-text p:first-of-type {
    font-size: 1.8rem;
    font-weight: 500;
    color: #444;
    border-left: 3px solid #e74c3c;
    padding-left: 2.5rem;
}

/* Philosophy Section */
.philosophy {
    margin: 5rem 0;
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3rem;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(231, 76, 60, 0.2), rgba(243, 156, 18, 0.2));
    border-radius: 2px;
}

.philosophy h3 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    display: inline-block;
}

.philosophy h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
    margin: 5rem 0 3rem;
    position: relative;
}

.philosophy-grid::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.1) 50%, 
        rgba(0,0,0,0) 100%);
}

.philosophy-item {
    padding: 3.5rem 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.8);
    border-left: 1px solid rgba(255,255,255,0.8);
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.03) 0%, rgba(0, 0, 0, 0.02) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(231, 76, 60, 0.2);
}

.philosophy-item:hover::before {
    opacity: 1;
}

.philosophy-item i {
    font-size: 2.8rem;
    color: #e74c3c;
    margin-bottom: 2.5rem;
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.philosophy-item i::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.philosophy-item:hover i {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
}

.philosophy-item:hover i::after {
    opacity: 1;
}

.philosophy-item h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.philosophy-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.philosophy-item:hover h4::after {
    width: 60px;
}

.philosophy-item p {
    font-size: 1.6rem;
    margin: 1.5rem 0 0;
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.philosophy-item:hover p {
    color: #555;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.6rem;
    color: #666;
    font-weight: 500;
}

/* CTA Buttons */
/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* nice blue gradient */
    color: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;
  }
  
  .cta-banner .cta-content h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
  }
  
  .cta-banner .cta-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
  }
  
  .cta-banner .btn.btn-primary {
    background: #fff;
    color: #e74c3c;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .cta-banner .btn.btn-primary:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cta-banner {
      flex-direction: column;
      text-align: center;
    }
  
    .cta-banner .btn.btn-primary {
      width: 100%;
      text-align: center;
    }
  }
  

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-our-story-content {
        gap: 4rem;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-our-story {
        padding: 6rem 0;
    }
    
    .about-our-story-content {
        flex-direction: column;
    }
    
    .about-our-story-image,
    .about-our-story-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .about-our-story-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .philosophy h3 {
        font-size: 2.2rem;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 2rem);
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-our-story {
        padding: 5rem 0;
    }
    
    .about-our-story-text h2 {
        font-size: 2.8rem;
    }
    
    .philosophy h3 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.4rem;
    }
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--light-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
}

.feature i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../image/pattern-bg.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.services .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.section-tag::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #e74c3c;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    color: #666;
    font-size: 1.9rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
  
    border-radius: 16px;
    padding: 30px;
   
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
  
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-radius: 30px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
}

.service-icon-wrapper i {
    font-size: 42px;
    color: #e74c3c;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper i {
    color: #fff;
    transform: rotateY(-180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #e74c3c;
    transition: all 0.3s ease;
}

.service-card:hover h3::after {
    width: 60px;
    background: #f39c12;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: #555;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    overflow: hidden;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-link i {
    margin-left: 8px;
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.service-card:hover .service-link {
    color: #e74c3c;
    letter-spacing: 0.5px;
}

.service-card:hover .service-link::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .services {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-card {
        padding: 0px 25px;
    }
}

@media (max-width: 575px) {
    .services {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Team Section */
.team-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 10px;
}

.team-intro {
    padding: 0;
    text-align: center; /* Center text on small screens */
}

.team-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-intro p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-member {
    background-color: #e2e2e2;
    border-radius: 10px;
    padding-left: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
   
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.member-content {
    display: flex;
    flex-direction: column;
    
    width: 100%;
}

.member-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.member-content .role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6d4c41;
}

.member-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Image and decorative background container */
.image-container {
    position: relative;
    width: 150px;
    height: 150px;
    
}

/* Decorative background circle */
.image-background {
    position: absolute;
    top: 39%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 113px;
    height: 113px;
    background-color: #d38c07;
    border-radius: 20px;
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.member-image img {
    width: 100%;
    height: 125%;
    object-fit: cover;
    object-position: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.social-links a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #555;
}

/* Media query for larger screens (tablets and desktops) */
@media (min-width: 768px) {
    .team-section {
        padding: 80px 20px;
    }
    
    .team-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px;
    }

    .team-intro {
        flex: 1;
        max-width: 45%;
        padding: 0;
        text-align: left; /* Align text left on larger screens */
    }

    .team-intro h2 {
        font-size: 2.5rem;
    }
    
    .team-members {
        flex: 1;
        max-width: 50%;
    }

    .team-member {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        text-align: left;
    }
    .team-member:nth-child(2) {
         flex-direction: row-reverse;
    }

    .member-content {
        flex: 1;
    }

    .image-container {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .social-links {
        justify-content: flex-start;
    }
}

.social-links a {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #555;
}

/* Media query for larger screens (tablets and desktops) */
@media (min-width: 768px) {
    .team-section {
        padding: 80px 20px;
    }
    
    .team-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px;
    }

    .team-intro {
        flex: 1;
        max-width: 45%;
        padding: 0;
        text-align: left; /* Align text left on larger screens */
    }

    .team-intro h2 {
        font-size: 2.5rem;
    }
    
    .team-members {
        flex: 1;
        max-width: 50%;
    }

    .team-member {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        text-align: left;
    }
    .team-member:nth-child(2) {
         flex-direction: row-reverse;
    }

    .member-content {
        flex: 1;
    }

    .image-container {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Media query for larger screens (tablets and desktops) */
@media (min-width: 768px) {
    .team-section {
        padding: 80px 20px;
    }

    .team-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px;
    }

    .team-intro {
        flex: 1;
        max-width: 45%;
        padding: 0;
    }

    .team-intro h2 {
        font-size: 2.5rem;
    }
    
    .team-members {
        flex: 1;
        max-width: 50%;
    }

    .team-member {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        text-align: left;
    }
    .team-member:nth-child(2) {
         flex-direction: row-reverse;
    }

    .member-content {
        flex: 1;
    }

    .image-container {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .social-links {
        justify-content: flex-start;
    }
}

/* Contact Section */
.contact {
    padding: 10rem 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
    margin-top: 5rem;
}

.contact-info h3,
.contact-form-container h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.8;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-text a {
    color: #666;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background-color: var(--light-bg);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1.6rem;
    transition: var(--transition);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-submit {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Map */
.map-container {
    margin-top: 5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.footer {
    background-color: #18212a;
    color: #fff;
    padding: 8rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.6rem;
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: #b3b3b3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links ul li a i {
    font-size: 1.2rem;
}

.newsletter p {
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    margin-bottom: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    font-size: 1.4rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0 2rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #c0392b;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3b3b3;
    font-size: 1.4rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 4rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .about-our-story-content {
        flex-direction: column;
    }

    .about-our-story-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }

    .container {
        padding: 0 3rem;
    }

    /* Mobile Navigation */
    .hamburger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 8rem 3rem 3rem;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.8rem;
        padding: 1rem 0;
    }

    .hero {
        margin-top: 7rem;
        min-height: 500px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .slider-controls {
        bottom: 3rem;
        right: 3rem;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }

    .container {
        padding: 0 2rem;
    }

    .hero {
        min-height: 450px;
    }

    .hero-content {
        text-align: center;
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        align-items: center;
    }

    .btn {
        max-width: 250px;
    }

    .slider-controls {
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
        gap: 1rem;
    }

    .slider-indicators {
        bottom: 8rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .newsletter-form button {
        border-radius: 4px;
        padding: 1.2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Import Responsive Styles */
@import url('responsive.css');

/* Print Styles */
@media print {
    .header,
    .footer,
    .slider-controls,
    .slider-indicators,
    .btn {
        display: none !important;
    }

    body {
        padding-top: 0;
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 2cm;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }

    .no-print {
        display: none !important;
    }

    .page-break {
        page-break-before: always;
    }

    @page {
        margin: 2cm;
    }
}
