/* --- GLOBAL CORE STYLE DEFINITIONS --- */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    background-color: #fafafa;
    line-height: 1.6;
}

:root {
    --primary-orange: #FF5A2C;
    --dark-bg: #1a1a1a;
    --text-white: #ffffff;
    --transition-speed: 0.3s;
}

.highlight {
    color: var(--primary-orange);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #e04a20;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
}

/* ==========================================================================
   VIDEO HERO SECTION ALIGNMENT (INDEX.HTML)
   ========================================================================== */

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Fullscreen Viewport Height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

/* Background Video Sizing */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay Layer for High Content Contrast */
.video-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Typography Content Container */
.hero-content-box {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 1000px;
    padding: 0 24px;
}

.location-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF5A2C;
    margin-bottom: 20px;
    display: inline-block;
}

/* Brand Heading (Playfair Display) */
.brand-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Tagline Configuration (Poppins) */
.services-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #e5e5e5;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.services-tagline span {
    display: inline-block;
    transition: color 0.3s ease;
    margin: 0 4px;
}

.services-tagline span:hover {
    color: #FF5A2C;
}

/* Book Now CTA Button with Icon */
.hero-cta-wrapper {
    display: flex;
    justify-content: center;
}

.btn-hero-book {
    font-family: 'Poppins', sans-serif;
    background-color: #FF5A2C;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(255, 90, 44, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-book:hover {
    background-color: #e04a20;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 90, 44, 0.5);
}

/* Smooth Scroll Indicator Mouse Icon */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: #FF5A2C;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollDrop 1.6s infinite;
}

@keyframes scrollDrop {
    0% { opacity: 0; top: 6px; }
    30% { opacity: 1; }
    100% { opacity: 0; top: 18px; }
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background-color: #f0f2f5;
    padding: 60px 20px;
}

.testimonial-container {
    max-width: 800px;
    margin: 30px auto 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.quote {
    font-style: italic;
    font-size: 16px;
    color: #444444;
    margin-bottom: 20px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--dark-bg);
    color: #777777;
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
}


/* --- PAINT POLISHING EXTENDED UI STYLES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Specific Hero */
.page-hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)), url('../images/small-hero.jpg') no-repeat center center/cover;
    background-color: #222;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-page-container {
    position: relative;
    z-index: 5;
    max-width: 700px;
    margin: 0 auto;
}

.category-badge {
    color: #FF5A2C;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-page-container h1 {
    font-size: 40px;
    margin: 10px 0 20px 0;
    font-weight: 800;
}

/* Custom Bottom-Line Heading Logic */
.underlined-title {
    position: relative;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 12px;
}

.underlined-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #FF5A2C;
    border-radius: 2px;
}

.content-wrapper {
    padding: 60px 0;
}

.info-block {
    margin-bottom: 50px;
}

.info-block p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Gallery Slider Layout */
.gallery-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.slider-wrapper {
    margin: 1rem;
    position: relative;
}

.slides-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    list-style: none;
    padding: 15px 0;
    scrollbar-width: none; /* Firefox override */
}

.slides-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari override */
}

.slide {
    flex: 0 0 calc(33.333% - 14px);
    width: calc(33.333% - 14px);
}

.gallery-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- UPDATED REAL GALLERY IMAGE LAYOUT CONTROLS --- */
.gallery-image-container {
    width: 100%;
    height: 220px; /* Fixed height for visual uniformity */
    overflow: hidden;
    background-color: #f0f0f0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions sharp without distortion */
    object-position: center;
    transition: transform var(--transition-speed) ease;
    display: block;
}

/* Subtle zoom effect on card hover */
.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-info {
    padding: 15px;
}

.gallery-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-info p {
    font-size: 12px;
    color: #777777;
}

.slide-arrow {
    position: absolute;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#slide-arrow-prev { left: -20px; }
#slide-arrow-next { right: -20px; }

/* Notice Card Container Rules */
.notice-card {
    background-color: #ffffff;
    border-left: 5px solid #FF5A2C;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 30px 0 60px 0;
}

.notice-header {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background-color: #FF5A2C;
    color: #ffffff;
    font-weight: 700;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.step-details h4 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.step-details p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* Pricing Layout Configuration */
.pricing-section {
    background-color: #f4f6f8;
    padding: 40px;
    border-radius: 8px;
    margin-top: 20px;
}

.price-note {
    font-size: 14px;
    color: #666666;
    margin-top: -15px;
    margin-bottom: 35px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid #e1e1e1;
}

.special-card {
    border: 2px solid #FF5A2C;
    transform: scale(1.03);
}

.vehicle-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #FF5A2C;
    margin-bottom: 10px;
}

/* Duration Tag Styling */
.duration-tag {
    display: inline-block;
    background-color: #f0f4f8; /* Soft neutral background */
    color: #4a5568;            /* Dark gray text for readability */
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;       /* Gives it a clean pill shape */
    margin: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adjust colors slightly for your featured/special card if needed */
.special-card .duration-tag {
    background-color: #e0f2fe; /* Slight blue tint to pop out */
    color: #0369a1;
}

/* Fallback card structure adjustments if needed */
.price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    /* Your existing card styles here */
}


.vehicle-hint {
    font-size: 13px;
    color: #777777;
}

/* Action Trigger Box */
.action-box {
    text-align: center;
    margin-top: 40px;
}

.btn-book-now {
    background-color: #25D366; /* WhatsApp Brand green color styling */
    color: #ffffff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-book-now:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
}

/* --- FAQ ACCORDION STYLES --- */
.faq-section {
    margin-top: 60px;
    margin-bottom: 30px;
}

.accordion-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow var(--transition-speed);
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.accordion-header:hover {
    color: #FF5A2C;
}

.accordion-icon {
    font-size: 20px;
    font-weight: 400;
    color: #777777;
    transition: transform var(--transition-speed);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out, padding var(--transition-speed);
    background-color: #fafafa;
    padding: 0 25px;
}

.accordion-body p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 20px;
}

/* Active State Styles */
.accordion-item.active .accordion-header {
    color: #FF5A2C;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #FF5A2C;
}

.accordion-item.active .accordion-body {
    max-height: 300px; /* Large enough container space limit */
    padding-top: 5px;
}



/* footer */
/* ==========================================================================
   CORRECTED TWO-SECTION FOOTER STYLES
   ========================================================================== */

/* --- SECTION 1: WHITE BOOKING FORM & CONTACT INFO --- */
.footer-form-section {
    background-color: #ffffff !important;
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
}
.footer-container-white {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 0 20px;
}

.section-title-dark {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.section-title-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #FF5A2C;
}

/* Form Fields Styling (Light Background Palette) */
.footer-booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-contact-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-vehicle-group {
    display: flex;
    flex-direction: column;
}

.full-height-field,
.full-height-field input {
    height: 100%;
}

.form-row-double {
    display: flex;
    gap: 15px;
}

.footer-booking-form input[type="text"],
.footer-booking-form input[type="tel"],
.footer-booking-form input[type="email"],
.footer-booking-form select,
.footer-booking-form textarea {
    width: 100%;
    padding: 15px 18px;
    background-color: #f9f9f9 !important;
    
    /* Thicker dark border design for clean definition */
    border: 2px solid #222222 !important; 
    border-radius: 6px;
    color: black !important;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.footer-booking-form input:focus,
.footer-booking-form select:focus,
.footer-booking-form textarea:focus {
    outline: none;
    border-color: #FF5A2C !important; /* Changes to signature orange when active */
    background-color: #ffffff !important;
    box-shadow: 0 0 8px rgba(255, 90, 44, 0.15);
}

.select-label {
    font-size: 15px;
    font-weight: 700;
    color: #FF5A2C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-submit-btn {
    background-color: #FF5A2C !important;
    color: #ffffff !important;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.footer-submit-btn:hover {
    background-color: #e04a20 !important;
}

/* Contact Info Text Rules */
.info-details-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    font-size: 18px;
    background-color: #f0f0f0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FF5A2C;
}

.info-item strong {
    color: #1a1a1a;
}

.info-item p, .footer-address {
    color: #555555;
    font-style: normal;
    line-height: 1.5;
}

/* Map Framing Styles */
.map-outer-frame {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
}

.map-footer-caption {
    font-size: 12px;
    color: #777777;
    margin-top: 8px;
}


/* --- SECTION 2: DARK GRAY LINKS MENU (MATCHES YOUR MOCKUP) --- */
.footer-links-section {
    background-color: #2a2a2a; /* Matches the clean dark-pattern hue */
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0); /* Subtle visual texture */
    background-size: 24px 24px;
    color: #ffffff;
    position: relative;
    padding-bottom: 30px;
    width: 100%;
}

/* Top Wave Vector Curve Handler */
.footer-wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave-container svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px; /* Controls wave depth layout */
}

.footer-links-section {
    background-color: #2a2a2a;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 24px 24px;
    color: #ffffff;
    position: relative;
    padding-top: 90px; /* Pushes list items below the top curve zone */
    padding-bottom: 30px;
    width: 100%;
}

.footer-wave-container .wave-path {
    fill: #ffffff; /* Subtracts shapes nicely from the section above */
}

/* Links Columns Matrix */
.footer-links-grid {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.links-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.links-column ul li a:hover {
    color: #FF5A2C;
}

/* Specific Formatting for Column 4 (Get In Touch) */
.touch-info li {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.touch-info .phone-highlight {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
}

.touch-info .appointment-note {
    color: #888888;
    font-size: 13px;
    font-style: italic;
}

.footer-copyright-strip {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: #666666;
}

/* Front Service */

/* ==========================================================================
   ATTRACTIVE COLORFUL SERVICES GRID LAYOUT
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .small-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FF5A2C;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

/* Modern Responsive Grid Matrix: Strict 4-Cards Per Row Setup */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Base Card Architecture */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    
    /* Configures the default colored frame layer */
    border: 2px solid #eef0f2;
}

.card-image-box {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Hover Zoom Logic */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card:hover .card-img {
    transform: scale(1.08);
}

/* --- DYNAMIC COLOR FRAMING ENHANCEMENTS --- */
.frame-wash:hover { border-color: #3498db; box-shadow: 0 0 15px rgba(52, 152, 219, 0.2); }
.frame-interior:hover { border-color: #e67e22; box-shadow: 0 0 15px rgba(230, 126, 34, 0.2); }
.frame-exterior:hover { border-color: #9b59b6; box-shadow: 0 0 15px rgba(155, 89, 182, 0.2); }
.frame-correction:hover { border-color: #e74c3c; box-shadow: 0 0 15px rgba(231, 76, 60, 0.2); }
.frame-graphene:hover { border-color: #2c3e50; box-shadow: 0 0 15px rgba(44, 62, 80, 0.2); }
.frame-ceramic:hover { border-color: #f1c40f; box-shadow: 0 0 15px rgba(241, 196, 15, 0.2); }
.frame-ppf:hover { border-color: #1abc9c; box-shadow: 0 0 15px rgba(26, 188, 156, 0.2); }
.frame-headlight:hover { border-color: #2ecc71; box-shadow: 0 0 15px rgba(46, 204, 113, 0.2); }
.frame-engine:hover { border-color: #d35400; box-shadow: 0 0 15px rgba(211, 84, 0, 0.2); }
.frame-rust:hover { border-color: #7f8c8d; box-shadow: 0 0 15px rgba(127, 140, 141, 0.2); }
.frame-special:hover { border-color: #FF5A2C; box-shadow: 0 0 15px rgba(255, 90, 44, 0.2); }


/* ==========================================================================
   INFINITE AUTOMOVING TESTIMONIAL LAYOUT STYLES
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden; /* Clips out expanding scrolling width components */
}

.testimonials-header {
    text-align: center;
    margin-bottom: 45px;
}

.testimonials-header .small-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FF5A2C;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

/* Custom Playfair Display Heading Formatting Rule */
.main-testimonial-heading {
    font-family: 'Playfair Display', serif !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #111111;
}

/* Continuous Marquee Track Setup */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* Adds soft gradient fades at the viewport borders */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
    pointer-events: none;
    top: 0;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollMarquee 32s linear infinite;
}

/* Pauses track animation on user mouse hovering */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Testimonial Card Module */
.testimonial-card {
    background: #fdfdfd;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 30px;
    width: 340px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: #FF5A2C;
}

.stars-row {
    color: #f1c40f;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-meta strong {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #111111;
}

.reviewer-meta span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #999999;
    margin-top: 2px;
}

/* Action Call Block Styles */
.review-cta-block {
    text-align: center;
    margin-top: 45px;
}

.btn-write-review {
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    color: #111111;
    border: 2px solid #111111;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-write-review:hover {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-review-icon {
    font-size: 16px;
}

/* --- DRIVER LOOP MARQUEE KEYFRAMES --- */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-370px * 8)); } /* Moves past exactly 8 card allocations (Width + Gap) */
}

/* contact Us  */

/* ==========================================================================
   CONTACT PAGE CORE STYLING SCHEME
   ========================================================================== */

/* Contact Hero Block Configuration */
.contact-hero {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background-color: #1a1a1a;
    background-image: url('../images/small-hero1.jpg'); /* Reuses background image asset if present */
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: #ffffff;
}

.contact-small-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FF5A2C;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-sub-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

/* Connect Grid Architecture */
.contact-cards-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Interactive Card Layout Elements */
.contact-action-card {
    background: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Strict thick border rule to match requested styling guidelines */
    border: 2px solid #222222 !important; 
    box-sizing: border-box;
}

.contact-icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-action-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 8px 0;
}

.contact-card-detail {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FF5A2C;
    margin: 0 0 6px 0;
}

.contact-card-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #777777;
}

/* Hover Accent States */
.contact-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.contact-action-card:hover .contact-icon-bubble {
    transform: scale(1.1);
}

/* Distinctive Frame Micro-Color Themes */
.card-border-call:hover { border-color: #3498db !important; }
.bubble-call { background-color: rgba(52, 152, 219, 0.1); }

.card-border-whatsapp:hover { border-color: #2ecc71 !important; }
.bubble-whatsapp { background-color: rgba(46, 204, 113, 0.1); }

.card-border-email:hover { border-color: #9b59b6 !important; }
.bubble-email { background-color: rgba(155, 89, 182, 0.1); }

/* about */

/* ==========================================================================
   ABOUT PAGE SEO-OPTIMIZED STYLING ENGINE
   ========================================================================== */

/* Universal Layout Container Alignment */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Hero Configuration */
.about-hero {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    background-color: #111111;
    background-image: url('../images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #ffffff;
}

.about-small-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FF5A2C;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
}

.about-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-sub-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #cccccc;
}

/* Split Image & Text Layout rules */
.about-split-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.section-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #FF5A2C;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-badge.center {
    text-align: center;
}

.main-split-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 20px;
}

.about-split-left p {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image-wrapper {
    width: 100%;
    border: 2px solid #222222 !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-featured-img {
    transform: scale(1.03);
}

/* Mission & Vision Styling Engine */
.mission-vision-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #222222 !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #111111;
    margin-bottom: 15px;
}

.mv-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

.mv-icon-bubble {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.card-border-mission:hover { border-color: #FF5A2C !important; }
.bubble-mission { background-color: rgba(255, 90, 44, 0.1); }

.card-border-vision:hover { border-color: #3498db !important; }
.bubble-vision { background-color: rgba(52, 152, 219, 0.1); }

/* Experience & Specialization Tags */
.experience-section, .why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.experience-header {
    margin-bottom: 45px;
}

.section-desc-center {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 15px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.specialization-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.spec-item, .why-card {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    background: #fdfdfd;
    padding: 16px 20px;
    border: 2px solid #222222 !important;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.spec-item:hover {
    background: #222222;
    color: #ffffff;
}

.why-choose-section {
    background: #fcfcfc;
}

.why-card {
    background: #ffffff;
}

.why-card:hover {
    border-color: #FF5A2C !important;
    transform: translateY(-2px);
}

