:root {
    --primary-color: #FF6B00;
    /* Safety Orange */
    --primary-hover: #e55b00;
    --secondary-color: #0F172A;
    /* Dark Slate / Navy */
    --secondary-light: #1E293B;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #9CA3AF;
    --white: #FFFFFF;
    --background-light: #F9FAFB;
    --border-color: #E5E7EB;
    --success: #10B981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 5rem 0;
}

/* Typography Tools */
.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #FF9E4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
    background-color: #ff6b00;
    /* Dark background on hover */
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 35px;
}

.pulse-anim {
    animation: pulse 2s infinite;
    border-radius: 35px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

/* Header */
/* Header */
.header {
    background-color: var(--white);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* Revert to 100% */
    max-width: 100%;
    /* Revert to 100% */
    border-radius: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    top: 10px;
    /* Tweaked slightly, user tried 5px */
    width: 98%;
    /* Wider floating header */
    max-width: 1600px;
    /* Wider max-width */
    border-radius: 50px;
    height: 70px;
    /* User tried 80px, but 70px is cleaner for scrolled */
    border-bottom: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo-img {
    max-height: 125px;
    /* Adjust based on header height */
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown>.nav-link::after {
        display: none;
        /* No underline for dropdown parent on mobile */
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    /* height: 100vh; */
    /* Removed to allow content/padding to define height or use min-height */
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    background-image: url('images/gorsel1.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Fixed attachment can cause issues on mobile and with some images */
    color: var(--white);
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
}

.hero-text-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    /* Light gray for readability on dark */
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #E2E8F0;
}

.check-icon {
    color: var(--primary-color);
    font-weight: 900;
}

/* Services */
.services {
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    /* Removed border color change to match clean white look from image */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    /* background-color: #FFF7ED; Removed colored background to match white minimalist look if needed, 
       but user image had icons. Keeping icons simple. */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

/* Gallery Styles */
.gallery-section {
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    background-color: var(--white);
    border-top: 1px solid #f3f4f6;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-medium);
}

/* About / Why Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-box {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.features-list h4 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.features-list p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-color);
    border-top-color: var(--white);
    /* Optional: make border white or transparent */
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: var(--white);
}

.stat-label {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--white);
}


/* Homepage Stats Modifier */
.about-stats.home-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.about-stats.home-stats .stat-card {
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-top-width: 3px;
}

.about-stats.home-stats .stat-number {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
}

.about-stats.home-stats .stat-label {
    font-size: 1.1rem;
}

/* Scroll Animation Classes */
.animate-from-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.animate-fast {
    transition-duration: 0.5s;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.animate-from-left.animate-active {
    opacity: 1;
    transform: translateX(0);
    border-radius: 35px;
}


@media (max-width: 768px) {
    .about-stats.home-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), #ef4444);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: #94A3B8;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.contact-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-light);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }

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

    .about-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
        /* Slightly smaller base font */
    }

    .section {
        padding: 3rem 0;
    }

    /* Header & Nav */
    .header {
        height: 70px;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem 1.5rem 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        display: block;

        /* Enable scrolling */
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        padding-top: 1rem;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .header-actions .btn {
        display: none;
        /* Hide 'Call' button in header on mobile to save space, rely on Hero button or sticky bottom bar */
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        /* Push to right */
    }

    /* Hero */
    .hero {
        margin-top: 70px;
        /* Match header height */
        min-height: auto;
        padding: 4rem 0;
        text-align: center;
    }

    .hero-content {
        justify-content: center;
        text-align: center;
    }

    .hero-text-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn {
        width: 100%;
    }

    .trust-indicators {
        justify-content: center;
        gap: 1rem;
    }

    /* Grids */
    .services-grid,
    .gallery-grid,
    .footer-grid,
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* About Section */
    .about-img-wrapper,
    .map-container {
        min-height: 250px;
    }

    .about-grid {
        gap: 2.5rem;
    }

    /* Footer */
    .footer {
        padding-top: 3rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

/* Sticky Contact Buttons */
.sticky-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Ensure on top of everything */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white;
}

.sticky-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.sticky-phone {
    left: 20px;
    background-color: #ff6b00;
    border-radius: 35px;
}

.sticky-whatsapp {
    right: 20px;
    background-color: #25D366;
    border-radius: 35px;
}

.sticky-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Make them slightly smaller on very small screens if needed */
@media (max-width: 480px) {
    .sticky-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }

    .sticky-phone {
        left: 15px;
    }

    .sticky-whatsapp {
        right: 15px;
    }

    .sticky-btn svg {
        width: 24px;
        height: 24px;
    }
}


/* Contact Page Refined Layout */
.contact-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: transparent;
    box-shadow: none;
    margin-top: 35px;
}

.contact-map-side {
    width: 654px !important;
    height: 600px !important;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-info-side {
    flex: 0 0 450px;
    background-color: #fcfcfc;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid #eee;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.contact-info-text {
    font-size: 1.05rem;
    color: #1b1b1b;
    line-height: 1.6;
    font-weight: 400;
}

.contact-info-group {
    margin-bottom: 2.5rem;
    width: 100%;
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    transform: translateY(-3px);
}

.btn-twitter {
    background-color: #38bdf8;
}

.btn-facebook {
    background-color: #3b82f6;
}

.btn-youtube {
    background-color: #ef4444;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@media (max-width: 900px) {
    .contact-split-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-side {
        flex: auto;
        min-height: auto;
    }

    .contact-map-side {
        flex: auto;
        width: 100%;
        height: 400px;
        /* Smaller height for mobile */
    }
}

/* About Us Redesign */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    /* Align to top */
}

.about-image-col {
    position: relative;
    padding-left: 30px;
    /* Space for the blue bar */
    height: 100%;
}

.about-img-decoration {
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 15px;
    /* Thicker blue bar */
    background-color: #ff6b00;
    /* Use primary blue or variable */
    border-radius: 4px;
}

.about-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding-top: 1rem;
}

.about-eyebrow {
    display: inline-block;
    color: #ff6b00;
    /* Blue */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
}

.about-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #ff6b00;
    vertical-align: middle;
    margin-right: 8px;
    transform: translateY(-1px);
}

.section-title.text-left {
    text-align: left;
    margin-left: 0;
    font-size: 2.75rem;
    /* Larger title */
    color: #0f172a;
}

.about-text {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Mission Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.mv-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mv-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #ff6b00;
    color: white;
    border-radius: 50%;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: bold;
}

.mv-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-col {
        min-height: 400px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Brand Banner */
.brand-banner {
    background-color: #ff6b00;
    /* Specific red from image */
    padding: 2.5rem 0;
    color: var(--white);
}

.brand-title {
    color: var(--white);
    font-size: 1.90rem;
    font-weight: 600;
    margin: 0;
}

/* Parallax Separator */
.parallax-separator {
    background-image: url('images/paralax.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    position: relative;
    z-index: 1;
}