/* assets/css/style.css - Complete Stylesheet for Galaxy Courier & Logistics */

/* ===== BASE RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

:root {
    --primary: #ed1b24;
    --secondary: #38a7de;
    --tertiary: #363f8e;
    --light-bg: #f1f5f9;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--tertiary);
}

.section-title span {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.bg-light {
    background: var(--light-bg);
    padding: 30px 0;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #c0101a;
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(237, 27, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--tertiary);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--tertiary);
    text-align: center;
}

.btn-secondary:hover {
    background: var(--tertiary);
    color: white;
    transform: scale(1.02);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #1a1a2e;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.hero-slide.active {
    opacity: 1;
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(54, 63, 142, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== INTRODUCTION SECTION ===== */
.introduction-section {
    padding: 60px 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.intro-logo {
    text-align: center;
}

.main-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.intro-logo h1 {
    font-size: 2.2rem;
    color: var(--tertiary);
}

.intro-logo h1 span {
    color: var(--primary);
}

.intro-logo .tagline {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
}

.intro-content p {
    margin-bottom: 16px;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.intro-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tertiary);
    font-weight: 500;
}

.intro-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.team-subtitle {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.team-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.team-member-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 4px solid var(--secondary);
    background: #e9edf2;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-card h4 {
    color: var(--tertiary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-member-card .designation {
    color: #475569;
    font-size: 0.85rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: white;
    padding: 30px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--tertiary);
    margin-bottom: 8px;
}

.feature-card p {
    color: #475569;
    font-size: 0.95rem;
}

/* ===== SERVICES HIGHLIGHT ===== */
.services-highlight {
    padding: 60px 0;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: #1e293b;
    font-size: 0.95rem;
}

.service-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== CONTACT QUICK ===== */
.contact-quick {
    padding: 60px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.contact-item i {
    font-size: 1.6rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: var(--tertiary);
}

.contact-item p {
    margin: 2px 0;
    color: #475569;
    font-size: 0.9rem;
}

.contact-social h3 {
    color: var(--tertiary);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    font-weight: 600;
    color: var(--tertiary);
}

.social-link:hover {
    background: var(--tertiary);
    color: white;
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.8rem;
}

.contact-quote {
    background: var(--tertiary);
    color: white;
    padding: 24px;
    border-radius: 16px;
    margin-top: 20px;
}

.contact-quote i {
    font-size: 2rem;
    color: var(--secondary);
    margin-right: 10px;
}

.contact-quote p {
    font-size: 1.1rem;
    font-style: italic;
}

/* ===== PARTNER SLIDER ===== */
.partner-slider {
    background: var(--white);
    padding: 40px 0;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.slider-track img {
    height: 80px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    filter: grayscale(0.1);
    transition: 0.3s;
}

.slider-track img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.slider-controls .slider-btn {
    position: static;
    transform: none;
    background: var(--tertiary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.slider-controls .slider-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        gap: 20px;
    }
}

/* Large Tablet */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .intro-features {
        justify-items: center;
    }

    .team-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-slider {
        height: 320px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        padding: 10px 14px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .intro-logo h1 {
        font-size: 1.8rem;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .team-photo {
        width: 110px;
        height: 110px;
    }

    .team-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slider-track img {
        height: 60px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slider {
        height: 250px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .slider-btn {
        padding: 6px 10px;
        font-size: 1rem;
    }

    .team-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .team-photo {
        width: 90px;
        height: 90px;
    }

    .team-member-card {
        padding: 14px 10px;
    }

    .team-member-card h4 {
        font-size: 0.85rem;
    }

    .team-member-card .designation {
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .service-item {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .contact-quote p {
        font-size: 0.95rem;
    }

    .slider-dots {
        gap: 8px;
        bottom: 15px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-slider {
        height: 200px;
    }

    .slide-content h2 {
        font-size: 1rem;
    }

    .slide-content p {
        font-size: 0.75rem;
    }

    .team-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .team-photo {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .team-member-card h4 {
        font-size: 0.75rem;
    }

    .team-member-card .designation {
        font-size: 0.6rem;
    }
}
/* Hero Slider - Fade Effect */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: #1a1a2e;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: none;
    z-index: 1;
}

.hero-slide.active {
    z-index: 2;
    opacity: 1;
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Additional fade-specific styles */
.hero-slide.fade-out {
    opacity: 0;
    z-index: 1;
}

.hero-slide.fade-in {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(54, 63, 142, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
    z-index: 4;
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 20;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
    border: none;
    padding: 0;
}

.slider-dots .dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 320px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        padding: 10px 14px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 250px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .slider-btn {
        padding: 6px 10px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 200px;
    }

    .slide-content h2 {
        font-size: 1rem;
    }

    .slide-content p {
        font-size: 0.75rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--tertiary) 0%, #2a3370 100%);
    padding: 60px 0 50px;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-banner h1 span {
    color: var(--secondary);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Main */
.about-main {
    padding: 60px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 16px;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--tertiary);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-bg);
    padding: 16px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary);
    width: 40px;
}

.highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tertiary);
}

.highlight-label {
    font-size: 0.85rem;
    color: #475569;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.about-quote {
    background: var(--tertiary);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 20px;
}

.about-quote i {
    font-size: 2rem;
    color: var(--secondary);
    margin-right: 10px;
}

.about-quote p {
    font-size: 1.1rem;
    font-style: italic;
    display: inline;
}

/* About Partners */
.about-partners {
    padding: 60px 0;
    background: var(--light-bg);
}

.partner-subtitle {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.partner-item {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-item span {
    display: block;
    font-weight: 600;
    color: var(--tertiary);
    font-size: 0.95rem;
}

/* Core Features */
.core-features {
    padding: 60px 0;
    background: white;
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-about-card {
    background: var(--light-bg);
    padding: 30px 24px;
    border-radius: 20px;
    transition: 0.3s;
    text-align: center;
}

.feature-about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-about-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
}

.feature-about-card h3 {
    font-size: 1.1rem;
    color: var(--tertiary);
    margin-bottom: 8px;
}

.feature-about-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose */
.why-choose {
    padding: 60px 0;
    background: var(--light-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-list {
    list-style: none;
    margin: 20px 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #1e293b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-stat {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.why-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.why-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.why-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #475569;
    margin-top: 4px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #363f8e 0%, #40aadf 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-content h2 span {
    color: var(--secondary);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-content .btn-primary {
    background: var(--secondary);
    color: white;
}

.cta-content .btn-primary:hover {
    background: #2a8fc4;
    box-shadow: 0 6px 14px rgba(56, 167, 222, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-highlights {
        justify-items: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-list li {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid-about {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 40px 0 30px;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .features-grid-about {
        grid-template-columns: 1fr;
    }

    .why-choose-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .partner-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-item {
        padding: 12px;
    }

    .partner-item img {
        height: 60px;
    }
}

/* ===== PARTNERS PAGE STYLES ===== */

/* Partners Intro */
.partners-intro {
    padding: 60px 0 30px;
    background: white;
}

.partners-intro-content p {
    max-width: 800px;
    margin: 0 auto;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

/* Partners Grid */
.partners-grid-section {
    padding: 30px 0 60px;
    background: var(--light-bg);
}

.partners-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-logo {
    background: var(--light-bg);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid var(--secondary);
}

.partner-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.partner-info {
    padding: 24px 28px;
    flex: 1;
}

.partner-info h3 {
    color: var(--tertiary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.partner-info p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.partner-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-services span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 167, 222, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--tertiary);
    font-weight: 500;
}

.partner-services span i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Partner Benefits */
.partner-benefits {
    padding: 60px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--tertiary);
    margin-bottom: 8px;
}

.benefit-card p {
    color: #475569;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-grid-full {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .partners-grid-full {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .partners-intro {
        padding: 40px 0 20px;
    }

    .partners-intro-content p {
        font-size: 0.95rem;
    }

    .partner-logo {
        padding: 20px;
    }

    .partner-logo img {
        height: 70px;
    }

    .partner-info {
        padding: 18px 20px;
    }

    .partner-info h3 {
        font-size: 1.1rem;
    }

    .partner-info p {
        font-size: 0.9rem;
    }

    .partner-services span {
        font-size: 0.8rem;
        padding: 3px 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partners-grid-full {
        gap: 20px;
    }

    .partner-logo img {
        height: 60px;
    }

    .partner-info {
        padding: 14px 16px;
    }

    .partner-info h3 {
        font-size: 1rem;
    }

    .partner-info p {
        font-size: 0.85rem;
    }

    .partner-services {
        gap: 6px;
    }

    .partner-services span {
        font-size: 0.75rem;
        padding: 2px 8px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 20px 16px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}


/* ===== SERVICES PAGE STYLES ===== */

/* Services Overview */
.services-overview {
    padding: 60px 0 30px;
    background: white;
}

.services-overview-content p {
    max-width: 800px;
    margin: 0 auto;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

/* Main Services */
.main-services {
    padding: 30px 0 60px;
    background: var(--light-bg);
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card-main {
    background: white;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border-top: 4px solid var(--secondary);
}

.service-card-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card-main:nth-child(1) { border-top-color: var(--primary); }
.service-card-main:nth-child(2) { border-top-color: var(--secondary); }
.service-card-main:nth-child(3) { border-top-color: var(--tertiary); }
.service-card-main:nth-child(4) { border-top-color: #f59e0b; }
.service-card-main:nth-child(5) { border-top-color: #10b981; }
.service-card-main:nth-child(6) { border-top-color: #8b5cf6; }

.service-icon-main {
    width: 70px;
    height: 70px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card-main h3 {
    color: var(--tertiary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card-main p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--tertiary);
    font-weight: 500;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Detailed Services */
.detailed-services {
    padding: 60px 0;
    background: white;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.detailed-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: 0.3s;
}

.detailed-service-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.service-detail h4 {
    color: var(--tertiary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.service-detail p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Why Services */
.why-services {
    padding: 60px 0;
    background: var(--light-bg);
}

.why-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-service-card {
    background: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.why-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-service-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
}

.why-service-card h3 {
    color: var(--tertiary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-service-card p {
    color: #475569;
    font-size: 0.95rem;
}

/* Service CTA */
.service-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #363f8e 0%, #40aadf 100%);
    color: white;
}

.service-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.service-cta-text h2 span {
    color: var(--secondary);
}

.service-cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-cta-buttons .btn-primary {
    background: var(--secondary);
    color: white;
}

.service-cta-buttons .btn-primary:hover {
    background: #2a8fc4;
    box-shadow: 0 6px 14px rgba(56, 167, 222, 0.4);
}

.service-cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.service-cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--tertiary);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .services-grid-main {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 20px auto 0;
    }

    .service-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .service-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 40px 0 20px;
    }

    .services-overview-content p {
        font-size: 0.95rem;
    }

    .service-card-main {
        padding: 24px 20px;
    }

    .service-card-main h3 {
        font-size: 1.1rem;
    }

    .detailed-services {
        padding: 40px 0;
    }

    .detailed-services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto 0;
    }

    .why-services {
        padding: 40px 0;
    }

    .why-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .service-cta {
        padding: 40px 0;
    }

    .service-cta-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-card-main {
        padding: 20px 16px;
    }

    .service-icon-main {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .service-card-main h3 {
        font-size: 1rem;
    }

    .service-card-main p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.75rem;
        padding: 2px 10px;
    }

    .detailed-service-item {
        padding: 14px 16px;
    }

    .service-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .service-detail h4 {
        font-size: 0.9rem;
    }

    .service-detail p {
        font-size: 0.85rem;
    }

    .why-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-service-card {
        padding: 20px 16px;
    }

    .why-service-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .service-cta-text h2 {
        font-size: 1.4rem;
    }

    .service-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-buttons .btn-primary,
    .service-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Main */
.contact-main {
    padding: 60px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Information Section */
.contact-info-section p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: 0.3s;
}

.contact-detail-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(237, 27, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--tertiary);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-detail-content p {
    color: #475569;
    font-size: 0.9rem;
    margin: 2px 0;
}

.contact-detail-content p i {
    color: var(--primary);
    width: 20px;
    margin-right: 4px;
}

/* Contact Social */
.contact-social-section h4 {
    color: var(--tertiary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    color: white;
}

.contact-social-link.facebook {
    background: #1877f2;
}

.contact-social-link.facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.contact-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.contact-social-link i {
    font-size: 1.4rem;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--light-bg);
    padding: 40px 35px;
    border-radius: 24px;
}

.contact-form-section h3 {
    color: var(--tertiary);
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.contact-form-section h3 span {
    color: var(--primary);
}

.contact-form-section p {
    color: #475569;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    color: var(--tertiary);
    font-size: 0.95rem;
}

.form-group .required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 27, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.map-container iframe {
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(237, 27, 36, 0.05);
}

.faq-question h4 {
    color: var(--tertiary);
    font-size: 1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: 0.3s;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Working Hours */
.working-hours {
    padding: 60px 0;
    background: linear-gradient(135deg, #363f8e 0%, #40aadf 100%);
}

.working-hours-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    color: white;
}

.working-hours-icon {
    font-size: 3rem;
    color: var(--secondary);
}

.working-hours-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.working-hours-info p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 4px 0;
}

.working-hours-cta .btn-primary {
    background: var(--secondary);
}

.working-hours-cta .btn-primary:hover {
    background: #2a8fc4;
    box-shadow: 0 6px 14px rgba(56, 167, 222, 0.4);
}



/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .contact-main {
        padding: 40px 0;
    }

    .contact-form-section {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        gap: 30px;
    }

    .contact-detail-item {
        padding: 14px 16px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-social-links {
        flex-direction: column;
        width: 100%;
    }

    .contact-social-link {
        justify-content: center;
    }

    .contact-form-section {
        padding: 24px 18px;
    }

    .contact-form-section h3 {
        font-size: 1.3rem;
    }

    .map-section {
        padding: 40px 0;
    }

    .map-container iframe {
        height: 300px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    .working-hours {
        padding: 40px 0;
    }

    .working-hours-content {
        flex-direction: column;
        text-align: center;
    }

    .working-hours-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-section h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px 14px;
    }

    .submit-btn {
        font-size: 0.95rem;
        padding: 12px;
    }

    .map-container iframe {
        height: 200px;
    }

    .working-hours-info p {
        font-size: 0.95rem;
    }

    .working-hours-icon {
        font-size: 2.2rem;
    }
}

/* ===== TEAM PREVIEW SECTION (Homepage) ===== */
.team-preview-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.team-preview-section .team-member-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.team-preview-section .team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-preview-section .team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 4px solid var(--secondary);
    background: #e9edf2;
}

.team-preview-section .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-preview-section .team-member-card h4 {
    color: var(--tertiary);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.team-preview-section .team-member-card .designation {
    color: #475569;
    font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 768px) {
    .team-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-preview-section .team-photo {
        width: 90px;
        height: 90px;
    }

    .team-preview-section .team-member-card h4 {
        font-size: 0.85rem;
    }

    .team-preview-section .team-member-card .designation {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .team-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .team-preview-section .team-photo {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .team-preview-section .team-member-card {
        padding: 14px 10px;
    }

    .team-preview-section .team-member-card h4 {
        font-size: 0.75rem;
    }

    .team-preview-section .team-member-card .designation {
        font-size: 0.65rem;
    }
}

/* Features Section - Updated for 8 cards */
.features-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* For larger screens - 4 columns */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* For medium screens - 3 columns */
@media (min-width: 992px) and (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For tablets - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For mobile - 1 column */
@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}