* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    /* Main bg is now white */
    color: #333;
    /* Default text dark */
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 34px;
}

/* --- Hero Section Redesign --- */
.hero-section {
    padding-top: 100px;
    /* Space for navbar */
    padding-bottom: 50px;
    position: relative;
}

/* The Hero Card Layout */
.hero-card-wrapper {
    /* Using a placeholder NYC image. In a real project, use exact asset. */
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.7), rgba(80, 80, 80, 0.7)),
        url('/images/hero.png');
    background-size: cover;
    background-position: center bottom;
    background-blend-mode: overlay;
    /* Helps blend the color onto the image */
    border-radius: 20px;
    padding: 120px 80px 180px 80px;
    /* Extra padding bottom for overlap space */
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-card-content {
    max-width: 50%;
    /* Text on the left half */
}

.hero-card-content h1 {
    font-family: "Anek Malayalam", sans-serif;
    font-optical-sizing: auto;
    font-size: 43px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-card-content p {
    font-family: "Anek Malayalam", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 450px;
}

/* --- The Overlapping Features --- */
.features-overlap-section {
    position: relative;
    z-index: 10;
    /* The key to the overlap: negative margin pulls it up */
    margin-top: -60px;
}

.features-box {
    /* Glass morphism effect with light red and gold gradient */
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.5);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(220, 100, 120, 0.12);
    max-width: 1000px;
    /* Slightly narrower than container */
    margin: 0 auto;
    /* Center it */
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Borders between items */
.feature-border {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-number {
    font-size: 36px;
    font-weight: 800;
    color: #500D14;
    margin-bottom: 3px;
    display: block;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.feature-desc {
    font-size: 12px;
    color: #262626;
    line-height: 1.4;
    max-width: 250px;
}

/* --- Contact Banner Section --- */
.contact-banner-section {
    position: relative;
    z-index: 9;
    margin-top: 15px;
}

.contact-banner-box {
    background: linear-gradient(135deg, #500D14, #8B1A2A);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(80, 13, 20, 0.15);
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.banner-text {
    font-size: 15px;
    font-weight: 600;
}

.btn-banner-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #500D14;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-banner-contact:hover {
    transform: scale(1.05);
    background: #f8f8f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-banner-contact i {
    font-size: 11px;
}

/* --- About Us Section - Enhanced with #500D14 Theme --- */
.about-section {
    padding: 60px 0;
    /* Reduced from 120px to 60px */
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    grid-column: 1 / -1;
}

.about-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #500D14;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.header-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #500D14, #8B1A2A);
    margin: 20px auto 0;
    border-radius: 2px;
    position: relative;
}

.header-accent::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #8B1A2A, #B22222);
    border-radius: 2px;
    left: 100%;
    margin-left: 10px;
    opacity: 0.7;
}

.about-left {
    border-radius: none;
    padding-right: 10px;
    box-shadow: none;
    position: relative;
    z-index: 0;
    border: none;
    background: none;
}

.about-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;

    position: relative;
}

.about-left h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #500D14, #8B1A2A);
    border-radius: 2px;
}

.content-grid {
    display: grid;
    gap: 10px;
    margin-top: 40px;
}

.about-left p {
    font-size: 17px;
    line-height: 1;
    color: #555;
    margin: 0;
    position: relative;
    padding-left: 25px;
    text-align: justify;
}

.about-left p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #500D14, #8B1A2A);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(80, 13, 20, 0.2);
}

.about-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #500D14, #8B1A2A);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(80, 13, 20, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-know-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B1A2A, #B22222);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-know-more span,
.btn-know-more i {
    position: relative;
    z-index: 1;
}

.btn-know-more i {
    transition: transform 0.3s ease;
}

.btn-know-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(80, 13, 20, 0.35);
}

.btn-know-more:hover::before {
    left: 0;
}

.btn-know-more:hover i {
    transform: translateX(5px);
}

/* --- Video Section --- */
.about-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(80, 13, 20, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    text-align: center;
    padding: 0 20px;
}

.video-caption h4 {
    font-size: 24px;
    font-weight: 800;
    color: #500D14;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.video-caption p {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    margin: 0;
}

/* --- Benefits Section - Compact Single Row Layout --- */
.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.benefits-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #500D14;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    text-align: center;
    padding: 25px 10px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 20px rgba(80, 13, 20, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 13, 20, 0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #500D14, #8B1A2A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(80, 13, 20, 0.12);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #500D14, #8B1A2A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(80, 13, 20, 0.15);
}

.benefit-icon i {
    font-size: 18px;
    color: white;
}

.benefit-item h3 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* --- Branches Section --- */
.branches-section {
    padding: 60px 0;
    /* Reduced from 100px to 60px */
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.branches-header {
    text-align: center;
    margin-bottom: 40px;
    /* Reduced from 60px to 40px */
    position: relative;
}

.branches-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #500D14;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Reduced from 350px to 320px */
    gap: 30px;
    /* Reduced from 40px to 30px */
    max-width: 1200px;
    margin: 0 auto;
}

.branch-card {
    background: white;
    border-radius: 15px;
    /* Reduced from 20px to 15px */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(80, 13, 20, 0.06);
    /* Reduced shadow */
    transition: all 0.3s ease;
    position: relative;
}

.branch-card:hover {
    transform: translateY(-5px);
    /* Reduced from -10px to -5px */
    box-shadow: 0 15px 35px rgba(80, 13, 20, 0.1);
    /* Reduced shadow */
}

.branch-header {
    background: linear-gradient(135deg, #500D14, #8B1A2A);
    padding: 20px;
    /* Reduced from 30px to 20px */
    text-align: center;
    position: relative;
}

.branch-icon {
    width: 50px;
    /* Reduced from 70px to 50px */
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    /* Reduced from 20px to 15px */
    backdrop-filter: blur(5px);
}

.branch-icon i {
    font-size: 22px;
    /* Reduced from 30px to 22px */
    color: white;
}

.branch-header h3 {
    color: white;
    font-size: 20px;
    /* Reduced from 24px to 20px */
    font-weight: 700;
    margin: 0;
}

.branch-content {
    padding: 20px;
    /* Reduced from 30px to 20px */
}

.branch-content h4 {
    color: #500D14;
    font-size: 16px;
    /* Reduced from 18px to 16px */
    font-weight: 700;
    margin-bottom: 15px;
    /* Reduced from 20px to 15px */
    text-align: center;
    position: relative;
}

.branch-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Reduced from -10px to -8px */
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    /* Reduced from 40px to 30px */
    height: 3px;
    background: linear-gradient(90deg, #500D14, #8B1A2A);
    border-radius: 2px;
}

.branch-address {
    margin: 15px 0;
    /* Reduced from 25px to 15px */
    text-align: center;
}

.branch-address p {
    color: #555;
    font-size: 13px;
    /* Reduced from 15px to 13px */
    line-height: 1.5;
    margin: 3px 0;
    /* Reduced from 5px to 3px */
}

.branch-details {
    margin: 15px 0;
    /* Reduced from 20px to 15px */
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* Reduced from 15px to 10px */
    margin-bottom: 10px;
    /* Reduced from 15px to 10px */
    padding-bottom: 10px;
    /* Reduced from 15px to 10px */
    border-bottom: 1px solid rgba(80, 13, 20, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: #500D14;
    font-size: 14px;
    /* Reduced from 18px to 14px */
    width: 20px;
    /* Reduced from 24px to 20px */
    text-align: center;
    margin-top: 2px;
    /* Reduced from 3px to 2px */
}

.detail-info {
    flex: 1;
}

.detail-label {
    font-size: 12px;
    /* Reduced from 14px to 12px */
    font-weight: 600;
    color: #333;
    margin: 0 0 3px;
    /* Reduced from 5px to 3px */
}

.detail-value {
    font-size: 13px;
    /* Reduced from 15px to 13px */
    font-weight: 500;
    color: #500D14;
    margin: 0 0 3px;
    /* Reduced from 5px to 3px */
}

.detail-phone {
    display: block;
    color: #555;
    font-size: 12px;
    /* Reduced from 14px to 12px */
    text-decoration: none;
    margin-bottom: 2px;
    /* Reduced from 3px to 2px */
    transition: color 0.3s;
}

.detail-phone:hover {
    color: #500D14;
}

.detail-email {
    display: block;
    color: #555;
    font-size: 12px;
    /* Reduced from 14px to 12px */
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s;
}

.detail-email:hover {
    color: #500D14;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Reduced from 10px to 8px */
    width: 100%;
    background: linear-gradient(135deg, #500D14, #8B1A2A);
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    /* Reduced from 15px 20px to 12px 15px */
    border-radius: 10px;
    /* Reduced from 12px to 10px */
    font-weight: 600;
    font-size: 14px;
    /* Reduced from 16px to 14px */
    box-shadow: 0 5px 15px rgba(80, 13, 20, 0.15);
    /* Reduced shadow */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    /* Reduced from 20px to 15px */

}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B1A2A, #B22222);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-contact i,
.btn-contact span {
    position: relative;
    z-index: 1;
}

.btn-contact:hover {
    transform: translateY(-2px);
    /* Reduced from -3px to -2px */
    box-shadow: 0 8px 18px rgba(80, 13, 20, 0.2);
    /* Reduced shadow */
}

.btn-contact:hover::before {
    left: 0;
}

/* --- Responsive Design --- */
/* Tablet View - Smaller text */
@media (max-width: 992px) {
    .hero-card-wrapper {
        padding: 80px 40px 150px 40px;
        text-align: center;
    }

    .hero-card-content {
        max-width: 100%;
    }

    .hero-card-content h1 {
        font-size: 38px;
    }

    .hero-card-content p {
        font-size: 16px;
        margin: 0 auto;
    }

    .features-box {
        padding: 30px;
    }

    .feature-item {
        padding: 0 15px;
    }

    .feature-number {
        font-size: 32px;
    }

    .feature-text {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 11px;
    }

    .contact-banner-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 20px;
        gap: 15px;
    }

    .banner-text {
        font-size: 14px;
    }

    .about-header h2 {
        font-size: 42px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-left {
        padding: 50px 40px;
    }

    .about-left h3 {
        font-size: 24px;
    }

    .about-left p {
        font-size: 15px;
    }

    .btn-know-more {
        padding: 14px 28px;
        font-size: 15px;
    }

    .about-video {
        order: -1;
        margin-bottom: 20px;
    }

    .video-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .video-caption h4 {
        font-size: 22px;
    }

    .video-caption p {
        font-size: 15px;
    }

    .benefits-header h2 {
        font-size: 36px;
    }

    .benefits-row {
        gap: 12px;
    }

    .benefit-item {
        padding: 20px 8px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .benefit-icon i {
        font-size: 16px;
    }

    .benefit-item h3 {
        font-size: 11px;
    }

    .branches-header h2 {
        font-size: 36px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .branch-header {
        padding: 18px;
    }

    .branch-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .branch-icon i {
        font-size: 20px;
    }

    .branch-header h3 {
        font-size: 18px;
    }

    .branch-content {
        padding: 18px;
    }

    .branch-content h4 {
        font-size: 14px;
    }

    .branch-address p {
        font-size: 12px;
    }

    .detail-item {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .detail-item i {
        font-size: 12px;
        width: 18px;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 12px;
    }

    .detail-phone {
        font-size: 11px;
    }

    .detail-email {
        font-size: 11px;
    }

    .btn-contact {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* Mobile View - Even smaller text */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);

        /* Hide by default on mobile */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-menu a {
        justify-content: center;
    }

    .nav-cta {
        display: none;
        /* Hide buy button on small mobile */
    }

    .hero-card-wrapper {
        padding: 40px 20px 70px 20px;
        border-radius: 15px;
        /* Adjusted background position to show slightly left of center on mobile */
        background-position: 65% bottom;
    }

    .hero-card-content h1 {
        font-size: 32px;
    }

    .hero-card-content p {
        font-size: 14px;
    }

    /* On mobile, remove overlap and stack nicely */
    .features-overlap-section {
        margin-top: 20px;
    }

    .features-box {
        flex-direction: column;
        gap: 30px;
        padding: 25px 20px;
    }

    .feature-number {
        font-size: 28px;
    }

    .feature-text {
        font-size: 13px;
    }

    .feature-desc {
        font-size: 10px;
    }

    .feature-border {
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 40px 0;
    }

    .feature-desc {
        max-width: 100%;
    }

    /* About Us responsive styles */
    .about-section {
        padding: 40px 0;
        /* Reduced from 80px to 40px */
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-header h2 {
        font-size: 32px;
    }

    .header-accent {
        width: 60px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-left {
        padding: 40px 25px;
    }

    .about-left h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .about-left p {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 20px;
        text-align: left;
    }

    .about-left p::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }

    .content-grid {
        gap: 25px;
        margin-top: 30px;
    }

    .about-cta {
        margin-top: 40px;
    }

    .btn-know-more {
        padding: 12px 24px;
        font-size: 14px;
    }

    .about-video {
        order: -1;
        margin-bottom: 20px;
    }

    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .video-caption h4 {
        font-size: 20px;
    }

    /* Benefits responsive styles - Stack on mobile */
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-header {
        margin-bottom: 40px;
    }

    .benefits-header h2 {
        font-size: 28px;
    }

    .benefits-row {
        flex-direction: column;
        gap: 15px;
    }

    .benefit-item {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        margin-right: 0;
        flex-shrink: 0;
    }

    .benefit-icon i {
        font-size: 16px;
    }

    .benefit-item h3 {
        font-size: 12px;
        margin: 0;
        align-self: center;
    }

    .branches-header {
        margin-bottom: 30px;
        /* Reduced from 40px to 30px */
    }

    .branches-header h2 {
        font-size: 28px;
    }

    .branches-grid {
        gap: 20px;
        /* Reduced from 25px to 20px */
    }

    .branch-header {
        padding: 15px;
        /* Reduced from 20px to 15px */
    }

    .branch-icon {
        width: 40px;
        /* Reduced from 50px to 40px */
        height: 40px;
        margin-bottom: 10px;
        /* Reduced from 12px to 10px */
    }

    .branch-icon i {
        font-size: 18px;
        /* Reduced from 22px to 18px */
    }

    .branch-header h3 {
        font-size: 16px;
        /* Reduced from 18px to 16px */
    }

    .branch-content {
        padding: 15px;
        /* Reduced from 20px to 15px */
    }

    .branch-content h4 {
        font-size: 13px;
        /* Reduced from 15px to 13px */
        margin-bottom: 12px;
        /* Reduced from 15px to 12px */
    }

    .branch-address p {
        font-size: 11px;
        /* Reduced from 13px to 11px */
    }

    .detail-item {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .detail-item i {
        font-size: 12px;
        width: 16px;
    }

    .detail-label {
        font-size: 10px;
    }

    .detail-value {
        font-size: 11px;
    }

    .detail-phone {
        font-size: 10px;
    }

    .detail-email {
        font-size: 10px;
    }

    .btn-contact {
        padding: 10px 12px;
        font-size: 11px;
    }
}

/* Small Mobile View - Even smaller text */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-card-wrapper {
        padding: 40px 20px 70px 20px;
        border-radius: 15px;
        /* Adjusted background position to show slightly left of center on small mobile */
        background-position: 20% center;
    }

    .hero-card-content h1 {
        font-size: 28px;
    }

    .hero-card-content p {
        font-size: 12px;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-text {
        font-size: 12px;
    }

    .feature-desc {
        font-size: 9px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-left h3 {
        font-size: 18px;
    }

    .about-left p {
        font-size: 13px;
    }

    .video-caption h4 {
        font-size: 18px;
    }

    .video-caption p {
        font-size: 13px;
    }

    .benefits-header h2 {
        font-size: 24px;
    }

    .benefit-item h3 {
        font-size: 11px;
    }

    .branches-header h2 {
        font-size: 24px;
    }

    .branch-header h3 {
        font-size: 14px;
    }

    .branch-content h4 {
        font-size: 12px;
    }

    .branch-address p {
        font-size: 10px;
    }

    .detail-item {
        margin-bottom: 6px;
        padding-bottom: 6px;
    }

    .detail-item i {
        font-size: 10px;
        width: 14px;
    }

    .detail-label {
        font-size: 9px;
    }

    .detail-value {
        font-size: 10px;
    }

    .detail-phone {
        font-size: 9px;
    }

    .detail-email {
        font-size: 9px;
    }

    .btn-contact {
        font-size: 10px;
    }
}

/* --- About Us Page Styles --- */
.about-main-section {
    padding: 120px 0 40px;
    /* Increased top padding from 60px to 120px */
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.about-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-main-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(80, 13, 20, 0.08);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.about-main-content:hover {
    transform: translateY(-5px);
}

.about-left-content {
    flex: 1;
    text-align: left;
}

.about-right-image {
    flex: 1;
    max-width: 45%;
}

.about-right-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(80, 13, 20, 0.15);
    transition: transform 0.5s ease;
}

.about-right-image:hover img {
    transform: scale(1.03);
}

.about-main-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #500D14;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-main-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #500D14, #8B1A2A);
    border-radius: 2px;
}

.about-main-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
    text-align: justify;
}

.about-social-links {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.about-social-links .social-link {
    width: 45px;
    height: 45px;
    background: rgba(80, 13, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #500D14;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 13, 20, 0.1);
}

.about-social-links .social-link:hover {
    background: #500D14;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(80, 13, 20, 0.2);
}

.about-social-links .social-link i {
    font-size: 18px;
}

/* Board of Directors Section */
.board-section {
    padding: 60px 0;
    /* No change needed here as it's not the first section */
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.board-header {
    text-align: center;
    margin-bottom: 40px;
}

.board-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #500D14;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.board-header h3 {
    font-size: 36px;
    font-weight: 800;
    color: #500D14;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.board-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.board-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.board-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.board-member {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 5px solid rgba(80, 13, 20, 0.1);
    box-shadow: 0 10px 30px rgba(80, 13, 20, 0.1);
    transition: all 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(80, 13, 20, 0.15);
    border-color: rgba(80, 13, 20, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px;
    text-align: center;
}

.board-member p {
    font-size: 15px;
    color: #500D14;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* Our Team Section */
.team-section {
    padding: 60px 0;
    /* No change needed here as it's not the first section */
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #500D14;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.team-header h3 {
    font-size: 36px;
    font-weight: 800;
    color: #500D14;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.team-image {
    margin: 25px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(80, 13, 20, 0.15);
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-image:hover img {
    transform: scale(1.03);
}

.team-caption {
    margin-top: 30px;
}

.team-caption h4 {
    font-size: 28px;
    font-weight: 800;
    color: #500D14;
    margin: 0 0 5px;
    letter-spacing: 1px;
}

.team-caption h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 25px;
    letter-spacing: 1px;
}

.team-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.team-social-links .social-link {
    width: 45px;
    height: 45px;
    background: rgba(80, 13, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #500D14;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 13, 20, 0.1);
}

.team-social-links .social-link:hover {
    background: #500D14;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(80, 13, 20, 0.2);
}

.team-social-links .social-link i {
    font-size: 18px;
}

/* Responsive Styles for About Us Page */
@media (max-width: 992px) {
    .about-main-content {
        flex-direction: column;
        padding: 35px 25px;
    }

    .about-left-content {
        text-align: center;
    }

    .about-right-image {
        max-width: 70%;
        margin: 0 auto;
    }

    .about-main-content h3 {
        font-size: 28px;
    }

    .about-main-content p {
        font-size: 16px;
    }

    .about-social-links {
        justify-content: center;
    }

    .board-header h3,
    .team-header h3 {
        font-size: 32px;
    }

    .board-members {
        gap: 25px;
    }

    .member-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .about-main-section {
        padding: 100px 0 30px;
        /* Reduced top padding from 120px to 100px */
    }

    .about-main-content {
        padding: 25px 20px;
    }

    .about-right-image {
        max-width: 80%;
    }

    .about-main-content h3 {
        font-size: 24px;
    }

    .about-main-content p {
        font-size: 15px;
        margin: 15px 0;
    }

    .board-section,
    .team-section {
        padding: 40px 0;
    }

    .board-header h2,
    .team-header h2 {
        font-size: 22px;
    }

    .board-header h3,
    .team-header h3 {
        font-size: 28px;
    }

    .board-content p,
    .team-content p {
        font-size: 15px;
    }

    .board-members {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .member-image {
        width: 140px;
        height: 140px;
    }

    .team-caption h4 {
        font-size: 24px;
    }

    .team-caption h5 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-main-section {
        padding: 80px 0 20px;
        /* Reduced top padding from 100px to 80px */
    }

    .about-main-content {
        padding: 20px 15px;
    }

    .about-right-image {
        max-width: 100%;
    }

    .about-main-content h3 {
        font-size: 20px;
    }

    .about-main-content p {
        font-size: 14px;
        margin: 15px 0;
    }

    .board-section,
    .team-section {
        padding: 30px 0;
    }

    .board-header h2,
    .team-header h2 {
        font-size: 18px;
    }

    .board-header h3,
    .team-header h3 {
        font-size: 24px;
    }

    .board-content p,
    .team-content p {
        font-size: 14px;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }

    .team-caption h4 {
        font-size: 20px;
    }

    .team-caption h5 {
        font-size: 16px;
    }

    .about-social-links,
    .team-social-links {
        gap: 10px;
    }

    .about-social-links .social-link,
    .team-social-links .social-link {
        width: 40px;
        height: 40px;
    }

    .about-social-links .social-link i,
    .team-social-links .social-link i {
        font-size: 16px;
    }
}

/* --- Services Section --- */
.services-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #500D14;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(80, 13, 20, 0.08);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #500D14;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #500D14, #8B1A2A);
    border-radius: 2px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
    text-align: justify;
}

.service-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: #500D14;
    font-size: 20px;
}

.feature span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.service-image {
    flex: 1;
    max-width: 45%;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(80, 13, 20, 0.15);
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}

/* Responsive Styles for Services Section */
@media (max-width: 992px) {
    .service-item {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .service-image {
        max-width: 70%;
        margin: 0 auto;
    }

    .service-content h3 {
        font-size: 28px;
        text-align: center;
    }

    .service-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 100px 0 40px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .service-item {
        padding: 25px 20px;
        margin-bottom: 50px;
    }

    .service-image {
        max-width: 80%;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 15px;
    }

    .feature span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 80px 0 30px;
    }

    .services-header h2 {
        font-size: 28px;
    }
}

.skeleton-loader {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 15px;
}

.skeleton-loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeleton-loading 1.5s infinite ease-in-out;
}

@keyframes skeleton-loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-container img.loaded {
    opacity: 1;
}

.image-container .skeleton-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-container .skeleton-loader.hidden {
    display: none;
}

/* Hero Section Skeleton */
.hero-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.7), rgba(80, 80, 80, 0.7));
    border-radius: 20px;
    z-index: -1;
}

.hero-skeleton.loaded {
    z-index: -2;
}