/* CSS Reset & Variables */
:root {
    --bg-dark: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-accent: #F1F5F9;
    --primary: #0F172A;
    --primary-hover: #1e293b;
    --accent: #F97316;
    --accent-hover: #ea580c;
    --text-white: #1F2937;
    --text-light: #475569;
    --text-muted: #94A3B8;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

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

.btn-secondary {
    background-color: var(--primary);
    color: #fff;
    padding: 14px 40px;
    font-weight: 700;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section {
    padding: 80px 0;
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

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

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: -5px;
}

.logo span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.navbar {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar a {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar a:hover,
.navbar a.active {
    color: var(--accent);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.1);
    z-index: 1001;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 10px 0;
    top: 100%;
    left: 0;
    animation: fadeIn 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    /* Keep sub-items generic case or capitalised, but not all caps if preferred */
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-accent);
    color: var(--accent);
    padding-left: 25px;
    /* Slide effect */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact .phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-contact .phone small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.header-contact .phone a {
    font-weight: 700;
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-hero {
    min-height: 60vh;
    background-color: var(--bg-dark);
    /* Subtle dot pattern for texture */
    background-image: radial-gradient(rgba(148, 163, 184, 0.2) 1.5px, transparent 1.5px), radial-gradient(rgba(148, 163, 184, 0.2) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rating .badge {
    background-color: rgba(15, 23, 42, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.rating .stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.rating .reviews {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--primary);
}

.hero-text {
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 450px;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pill-btn {
    background-color: var(--primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pill-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.hero-main-cta {
    margin-bottom: 30px;
}

.shine-btn {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    color: #fff;
    background: linear-gradient(to right, var(--accent), var(--accent-hover));
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.shine-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

/* Shine Effect */
.shine-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.shine-btn:hover::before {
    left: 100%;
}


.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
    /* Enable 3D space */
}

.hero-image img {
    max-width: 120%;
    margin-right: -100px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.1s ease-out;
    /* Smooth movement */
    transform-style: preserve-3d;
    will-change: transform;
}

/* About Section */
.about {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-accent);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* Contain the slider */
    min-height: 400px;
    /* Ensure height for absolute slides */
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 400px;
    /* Ensure container has height */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Remove bottom spacing */
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: var(--accent);
    color: white;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    text-align: center;
}

.about-content {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.2;
}

.section-text {
    color: var(--text-light);
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
}

.feature-column ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-column ul li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Vision Mission */
.vision-mission {
    padding: 80px 0;
}

.vm-container {
    display: flex;
    gap: 30px;
}

.vm-card {
    flex: 1;
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.vm-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.vm-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Expertise */
.expertise {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 20px auto 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.expertise-card {
    background-color: #F1F5F9;
    /* Little dark shade for readability */
    padding: 40px 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expertise-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
    background-color: #e2e8f0;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.expertise-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes button to bottom */
}

.expertise-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: auto;
    transition: color 0.3s ease;
}

.expertise-btn i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.expertise-btn:hover {
    color: var(--accent-hover);
}

.expertise-btn:hover i {
    transform: translateX(5px);
}

.service-list li {
    display: inline-block;
    font-size: 0.7rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 3px;
    color: var(--accent);
    font-weight: 600;
}

.service-list li::before {
    content: "•";
    margin-right: 5px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-container {
    display: flex;
    justify-content: center;
}

.cta-content {
    max-width: 800px;
    text-align: center;
}

.cta-label {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
}

.italic-text {
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #e2e8f0;
}

.cta-content p {
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    gap: 15px;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn:hover {
    background-color: var(--bg-accent);
    transform: translateY(-3px);
}

.cta-btn .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.cta-btn.primary .icon {
    background-color: rgba(249, 115, 22, 0.2);
}

.cta-btn .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-btn .info span {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.cta-btn .info strong {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--primary);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.footer-logo h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.brand-col p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: var(--accent);
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-col li i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #020617;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .rating,
    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        margin-right: 0;
        max-width: 80%;
    }

    .about-container {
        flex-direction: column;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .navbar,
    .header-contact {
        display: none;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar.active .dropdown {
        width: 100%;
    }

    .navbar.active .dropdown-content {
        position: relative;
        box-shadow: none;
        padding-left: 20px;
        width: 100%;
        border: none;
        background-color: #f8fafc;
    }

    .navbar.active .dropdown:hover .dropdown-content {
        display: block;
        /* Basic hover support for consistency, though click preferred on mobile */
    }

    .mobile-menu-btn {
        display: block;
    }

    .vm-container {
        flex-direction: column;
    }

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

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }

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

/* Technical Expertise Section */
.tech-expertise {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background-color: #f1f5f9;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Decorative Corner */
.tech-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background-color: rgba(15, 23, 42, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* Icons */
.tech-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Typography */
.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* View Details Link */
.view-details {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.view-details i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.view-details:hover i {
    transform: translateX(5px);
}

/* Responsive for Tech Section */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-open .modal-overlay {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #151828;
    /* var(--bg-card) */
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    /* var(--text-muted) */
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #F97316;
    /* var(--accent) */
    transform: rotate(90deg);
}

.modal-header h3 {
    color: #0F172A;
    /* var(--primary) */
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 15px;
}

.modal-body p {
    color: var(--text-light);
    /* var(--text-light) */
    line-height: 1.8;
    font-size: 1rem;
    white-space: pre-line;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 25px;
        width: 95%;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }
}

/* --- About Page Specific CSS --- */

/* About Hero with Background */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/about_hero_bg.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    /* Offset for fixed header */
}

.about-hero h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 1.5rem;
    color: var(--text-white);
    max-width: 700px;
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-dark);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Bar */
.stats-bar {
    background-color: var(--primary);
    padding: 40px 0;
    margin-bottom: var(--spacing-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.stat-item .label {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Alternating Layout Content */
.content-section {
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.bg-darker {
    background-color: var(--bg-accent);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 10px;
    z-index: 1;
}

.content-wrapper.reverse .image-decoration {
    right: auto;
    left: -20px;
}

/* Mission Vision Icons */
.mv-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mv-icon {
    min-width: 60px;
    height: 60px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.mv-block h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.values-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-card);
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
}

/* Responsive for About */
@media (max-width: 900px) {

    .content-wrapper,
    .content-wrapper.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Form Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Add a subtle background accent */
.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.contact-form-wrapper {
    background-color: #ffffff;
    /* Slightly transparent dark bg */
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    /* Subtle border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Right Side Text Styles */
.contact-info-text {
    color: var(--text-light);
    z-index: 2;
}

.contact-info-text h3 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-info-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.2rem;
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
    margin-bottom: 5px;
}

/* Styled Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 6px;
    padding: 18px 20px 6px;
    /* Extra top padding for label space */
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    resize: none;
    height: 56px;
    /* Fixed height for inputs */
}

.contact-form textarea {
    height: auto;
    padding-top: 25px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.1);
}

/* Floating Label Logic */
.contact-form label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Move label up when focused or has value */
.contact-form input:focus~label,
.contact-form input:not(:placeholder-shown)~label,
.contact-form textarea:focus~label,
.contact-form textarea:not(:placeholder-shown)~label {
    top: 8px;
    left: 15px;
    /* Slight left adjust */
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn {
    width: 100%;
    margin-top: 30px;
    background: linear-gradient(45deg, var(--accent), #fca5a5);
    color: #fff;
    font-weight: 700;
    padding: 18px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.15);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.25);
}

.submit-btn i {
    margin-left: 10px;
    font-size: 1.1em;
}

@media (max-width: 900px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-text {
        text-align: center;
        order: -1;
        /* Show text above form on mobile */
    }

    .info-highlights {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 40px 25px;
        width: 100%;
        /* Ensure it fits on small screens */
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: wa-pulse 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background-color: #25D366;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25D366;
    border-right: none;
}

@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.7rem;
    }
}

/* ===== Form Status Messages ===== */
#form-status {
    margin-bottom: 12px;
}

.form-success,
.form-error {
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ===== Trust Bar ===== */
.trust-bar {
    background-color: var(--primary);
    padding: 28px 0;
}

.trust-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(249, 115, 22, 0.15);
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 1.1rem;
    color: var(--accent);
}

.trust-item span {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: #F8FAFC;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(249, 115, 22, 0.3);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-bar-container {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        flex: 0 0 calc(50% - 12px);
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .trust-item {
        flex: 0 0 100%;
    }
}