.elementor-317 .elementor-element.elementor-element-ccc3c4b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-317 .elementor-element.elementor-element-44fcc9b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-317 .elementor-element.elementor-element-726d69a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-317 .elementor-element.elementor-element-251f900{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-317 .elementor-element.elementor-element-7c69801{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:689px){.elementor-317 .elementor-element.elementor-element-ccc3c4b{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-317 .elementor-element.elementor-element-44fcc9b{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-44fcc9b *//* Wrapper configuration */
.about-hero-wrapper {
    position: relative;
    /* 100svh handles mobile browser bars better than 100vh */
    height: 100svh; 
    min-height: 600px; /* Safety minimum for small laptops */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centering wrapper content */
    padding: 0;
    
    /* BACKGROUND IMAGE */
    background: url('https://exumacars.com/wp-content/uploads/2026/01/Gemini_Generated_Image_djefiadjefiadjef.webp') no-repeat center center/cover;
    background-attachment: scroll; /* Changed to scroll for better mobile performance */
    
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden; 
}

/* Dark Gradient Overlay */
.about-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient optimized for readability */
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(6, 17, 44, 0.6) 50%, rgba(3, 11, 30, 0.9) 100%);
    z-index: 1;
}

/* Container to align content */
.about-content-container {
    position: relative;
    z-index: 2;
    /* WIDESCREEN UPDATE: Increased to 1440px for large monitors */
    max-width: 1440px; 
    width: 100%;
    padding-left: 5vw; /* Responsive padding based on screen width */
    padding-right: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Default alignment */
}

/* --- Styled Elements --- */

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px; /* Slightly wider for elegance */
    color: #f4c478; /* Gold Accent */
    margin-bottom: 2rem;
}

.line {
    height: 2px;
    width: 50px; /* Slightly longer line */
    background-color: #f4c478;
    margin-right: 15px;
}

/* Typography */
.about-title {
    font-family: 'Playfair Display', serif;
    /* Responsive Font: Scales from 2.5rem mobile up to 5rem widescreen */
    font-size: clamp(2.5rem, 5vw, 5rem); 
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 900px;
}

.text-accent {
    color: #f4c478;
    font-style: italic;
}

.about-description {
    font-family: 'Inter', sans-serif;
    max-width: 650px;
    font-size: clamp(1rem, 1.2vw, 1.25rem); /* Scales text slightly on big screens */
    line-height: 1.7;
    color: #e0e0e0;
    border-left: 2px solid rgba(244, 196, 120, 0.5); /* Gold tinted border */
    padding-left: 2rem;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet Optimization (Portrait & Small Landscapes) */
@media (max-width: 1024px) {
    .about-hero-wrapper {
        min-height: 70vh; /* Allow it to be shorter on tablets */
    }
    
    .about-content-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .about-title {
        max-width: 100%; /* Use full width */
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .about-hero-wrapper {
        height: auto; /* Let content dictate height if needed */
        min-height: 85vh;
        text-align: center;
    }
    
    .about-content-container {
        padding: 4rem 20px;
        align-items: center; /* Center everything */
    }

    .section-tag {
        margin-bottom: 1rem;
    }

    .line {
        display: none; /* Hide the line on mobile for cleaner look */
    }

    .about-description {
        border-left: none; /* Remove side border */
        padding-left: 0;
        font-size: 1rem;
        color: rgba(255,255,255,0.9);
    }
    
    .about-title {
        margin-bottom: 1.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-72d5194 *//* Section Background - CHANGED to White */
.features-section-wrapper {
    background-color: #ffffff; 
    color: #06112c; /* Dark Navy Text */
    font-family: 'Inter', sans-serif;
    padding: 5rem 1rem;
    width: 100%;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

/* --- Left Column: Image --- */
.features-image-col {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    /* Softer shadow for light mode */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-caption {
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
    color: #bfa15f; /* Slightly darker gold for readability on white */
    font-style: italic;
    font-size: 1.1rem;
}

/* The Gold Badge */
.gold-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background-color: #f4c478;
    color: #06112c;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.badge-number {
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
}

.badge-text {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* --- Right Column: Content --- */
.features-content-col {
    flex: 1;
    min-width: 300px;
}

.sub-heading {
    color: #3b82f6; /* Blue highlight */
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-weight: 400;
    color: #06112c; /* Ensure heading is dark */
}

.text-accent {
    color: #dcb36b; /* Darker gold for better contrast */
    font-style: italic;
}

/* List Items */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Icon Styling - CHANGED for Light Mode */
.icon-box {
    background-color: #f0f4f8; /* Light gray-blue background */
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #dcb36b; /* Gold icon */
    font-size: 1.2rem;
    transition: 0.3s;
}

.feature-row:hover .icon-box {
    background-color: #dcb36b;
    color: #ffffff;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #06112c; /* Dark text */
}

.feature-text p {
    color: #555e6d; /* Medium gray for paragraph text */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .features-container {
        flex-direction: column;
        gap: 3rem;
    }

    .features-image-col, .features-content-col {
        width: 100%;
    }
    
    .gold-badge {
        right: 10px; 
        top: -20px;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-625acd0 *//* Section Setup */
.story-section-wrapper {
    background-color: #ffffff;
    color: #06112c;
    font-family: 'Inter', sans-serif;
    padding: 6rem 1rem;
    width: 100%;
    overflow: hidden; /* Prevents decorative elements from causing scroll */
}

.story-container {
    max-width: 1100px; /* Slightly tighter width for reading comfort */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

/* --- Text Column --- */
.story-text-col {
    flex: 1;
    min-width: 300px;
}

.sub-heading {
    color: #3b82f6; /* Blue highlight */
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #06112c;
}

.text-accent {
    color: #dcb36b;
    font-style: italic;
}

.story-body {
    color: #555e6d;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Founder Signature Area */
.signature-block {
    margin-top: 2rem;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #06112c;
    margin-bottom: 0.2rem;
    font-style: italic;
}

.founder-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
}

.signature-line {
    width: 60px;
    height: 2px;
    background-color: #dcb36b;
    margin-top: 1rem;
}

/* --- Image Column --- */
.story-image-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.story-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.story-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    /* Aspect ratio for portrait image */
    aspect-ratio: 3/4; 
    object-fit: cover;
}

/* The Decorative Gold Box Behind */
.gold-frame {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid #dcb36b;
    z-index: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .story-container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .story-text-col {
        order: 2; /* Put text below image on mobile? Optional. Remove to keep text top. */
        text-align: center;
    }
    
    .story-img-wrapper {
        max-width: 100%;
    }
    
    .signature-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gold-frame {
        right: -15px; /* Tighter frame on mobile */
        top: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d465cf */.cta-section-wrapper {
    background-color: #06112c; /* Matches your brand Navy */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 5rem 1rem;
    width: 100%;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Typography */
.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.text-italic {
    font-style: italic;
    color: #f4c478; /* Gold Accent */
}

.cta-sub {
    font-size: 1.1rem;
    color: #a0aec0; /* Soft grey text */
    max-width: 500px;
    margin: 0 auto;
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Gold Button */
.btn-primary {
    background-color: #f4c478;
    color: #06112c;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 2px solid #f4c478;
}

.btn-primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Transparent/Outline Button */
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}/* End custom CSS */