/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #f0f0f0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    color: #ff6600;
    max-width: 500px;
    text-align: left;
    z-index: 3;
    animation: slideInRight 0.8s ease-out;
}

.slide-content p {
    line-height: 1.6;
    font-size:93.75%;
    /* font-size: 16px; */
    margin: 15px 0;
    margin-top: 85px;
    color:#ffffff;
    /* color: #ff6600; */
}

.slide-content1 {
    position: absolute;
    font-size:93.75%;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color:#ffffff;
    max-width: 500px;
    text-align: left;
    z-index: 3;
    animation: slideInLeft 0.8s ease-out;
}

.slide-content1 p {
    line-height: 1.6;
    font-size:93.75%;
    /* font-size: 16px; */
    margin: 15px 0;
    margin-top: 85px;
    color:#ffffff;
    font-weight: 500;
    /* color: #ff6600; */
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.btn-slide {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    padding: 14px 36px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    width: fit-content;
    margin: 15px auto 0; 
text-align: center; 
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
    text-decoration: none;
    color: #fff;
}

.btn-slide:active {
    transform: translateY(-1px);
}

.slide-content h2 {
    color: #ff6600;
    font-size: 225%;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content1 h2 {
    color: #ff6600;
    font-size: 225%;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    color: #ff6600;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
    color: #ff6600;
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-slider:hover .slider-btn {
    opacity: 1;
}

/* MINI RIGHT BOX IN SLIDER */
.slide-mini-box {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    padding: 28px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: left;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.slide-mini-box p {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.slide-mini-box .mini-top {
    /* font-weight: 700; */
    color: #000;
    font-size: 16px;
}

.slide-mini-box .mini-mid {
    color: #666;
    /* font-weight: 500; */
}



.slide-mini-box .btn-slide {
    display: block;
    margin: 20px auto 0 auto; /* top auto bottom auto */
    width: fit-content;       /* so button keeps its size */
    text-align: center;       /* optional, for text inside button */
}

.slide1-mini-box .btn-slide {
    display: block;
    margin: 20px auto 0 auto; /* top auto bottom auto */
    width: fit-content;       /* so button keeps its size */
    text-align: center;       /* optional, for text inside button */
}

.slide-mini-box .mini-bottom {
    color: #000;
    /* font-weight: 600; */
    font-size: 16px;
    margin-top: 15px;
}

.slide1-mini-box {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    padding: 28px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: left;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.slide1-mini-box p {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.slide1-mini-box .mini-top {
    /* font-weight: 700; */
    color: #000;
    font-size: 16px;
}

.prev { left: 24px; }
.next { right: 24px; }

/* ---------- SERVICES ---------- */
.service-box {
    text-decoration: none;
    color: #000;
    display: block;
    padding: 30px 10px;
    border: 1px solid #ddd;
    transition: all .3s ease;
    background: #fff;
}

.service-box:hover {
    background: #fafafa;
}

.service-box img {
    transition: .3s;
    height: 120px;
}

.service-box:hover img {
    transform: scale(1);
}

/* Ensure equal height columns */
.service-box h4 {
    margin-top: 15px;
    font-weight: 600;
}

/* Remove double borders between columns */
.row.g-4 .col-md-4 {
    padding: 0 !important; 
}

.row.g-4 .col-md-4 > a {
    margin: 0;
}



.partner-box {
    background: white;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    transition: 0.3s;
}

.partner-box img {
    height: 80px; /* adjust as you like */
    object-fit: contain;
}

.partner-box:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}


/* ---------- TESTIMONIALS ---------- */
.testimonial-section {
    background: #f1f2f7;
    padding: 80px 0;
    position: relative;
    
}

.testimonial-wrapper {
    max-width: 1300px; /* Adjust width that matches example */
    margin: 0 auto;
}

.testimonial {
    background: #fff;
    padding: 50px 60px;
    border-radius: 20px;
    border: 2px solid #dcdcdc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial p {
    font-size: 20px;
    color: #444;
    font-style: italic;
}

.testimonial h5 {
    margin-top: 20px;
    font-size: 18px;
}

.testimonial h5 span {
    color: #e57200;
    font-size: 14px;
}

/* ARROWS */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 45px;
    color: #555;
    cursor: pointer;
    z-index: 10;
}

/* This spacing matches your screenshot */
.prev-test {
    left: 60px;
}

.next-test {
    right: 60px;
}



/* ---------- TOP BAR ---------- */
.top-bar {
    background: #ef7d00;
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
}
.top-bar-inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
.top-bar .left span {
    margin-right: 30px;
    font-weight: 600;
}
.top-bar .right a {
    margin-left: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}



/* ---------- PRIVACY POLICY ---------- */
.policy-section {
    background: #ffffff;
}

.policy-title {
    color: #f57c00;
    text-align: center; 
    letter-spacing: 1px;
}

.policy-content {
    max-width: 950px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.policy-content p {
    text-align: justify;  /* force justify */
}

.policy-heading {
    color: #f57c00;
    /* font-weight: 600; */
}





/* ---------- FOOTER ---------- */
/* ===========================
   FOOTER MAIN WRAPPER
=========================== */
.footer-wrapper {
    background: #f8f8f8;
    padding: 50px 0;
    /* font-family: Arial, sans-serif; */
    color: #333;
}

/* ===========================
   TOP HEADER SECTION
=========================== */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.footer-top img {
    max-width: 240px;
}

.footer-top h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #222;
}


.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px; /* spacing between columns */
    padding: 20px 0;
    white-space: nowrap; /* prevent text from breaking */
}

/* Reduce column width size */
.footer-column {
    flex: 0 0 17%; /* smaller columns */
}

/* Move first column slightly right */
.footer-column:first-child {
    margin-left: 30px;
}

/* Move last column slightly left */
.footer-column:last-child {
    margin-right: 30px;
}

/* List styling */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

/* Anchor styling */
.footer-column ul li a {
    text-decoration: none;
    color: #333;
}

/* Keep bold headings crisp */
.footer-column ul li b {
    font-weight: 600;
}

.footer-column:last-child {
    flex: 1.5; /* increase width relative to others */
    max-width: 300px; /* optional: limit max width */
}

/* Optional: make other columns slightly smaller */
.footer-column:not(:last-child) {
    flex: 1; /* default size */
}

/* ===========================
   SOCIAL ICONS
=========================== */
.footer-bottom {
    width: 100%;
    padding: 10px 0;
    background: #f8f8f8;
    border-top: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;  /* allows absolute positioning of icons */
}

/* LEFT SIDE: Social Icons */
.footer-social {
    position: absolute;
    left: 10px; /* keeps icons left while text stays centered */
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ICON STYLE */
.footer-social a.social-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.footer-social a.social-icon i {
    font-size: 13px;
    color: #fff;
}

/* Circle colors */
.footer-social a.facebook { background: #3b5998; }
.footer-social a.email    { background: #ce3b2e; }
.footer-social a.phone    { background: #4a4a4a; }

/* Centered copyright */
.footer-bottom p {
    margin: 0;
    color: #555;
    font-size: 13px;
    text-align: center;
    width: 100%;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
    .footer-columns {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-column {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}




.store-btn {
    height: 50px;
    cursor: pointer;
}

.app-box {
    /* background: #ff8c00; */
    height: 480px;
    border-radius: 4px;
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-phone {
    max-height: 380px;
    width: auto;
    position: absolute;
    top: 40px;
}

/* bottom text */
.bottom-text {
    bottom: 20px;
    left: 30px;
    font-size: 20px;
}
.divider {
    width: 1px;
    height: 40px;
    background-color: #ff6600;
}

/* Ensure dropdown box sits centered below menu */
.mega-dropdown {
    position: relative !important;   /* menu aligns to this item */
}

.mega-menu {
    position: absolute;
    top: 100%;                       /* exactly below the text */
    left: 0;                         /* start under the text */
    width: 600px;                    /* keep your 3×2 layout */
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    z-index: 9999;
    display: none;
    box-shadow: 0px 3px 20px rgba(0,0,0,0.1);
}


/* Show on hover */
.mega-dropdown:hover .mega-menu {
    display: block;
}

/* Grid layout for items */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    text-align: center;
}

/* Icon boxes */
.menu-item img,
.menu-item i {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    object-fit: contain;
    color: #f36a20;
}

.menu-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Prevent Bootstrap dropdown shrinking */
.navbar .dropdown-menu {
    position: static;
}

.navbar-nav .nav-link {
    white-space: nowrap !important;
}

.navbar-nav .nav-item:first-child {
    margin-left: 60px;
}

.navbar {
    height: 90px !important;
    display: flex;
    align-items: center;
}


/* Membership-benefits SECTION */



/* INTRO PARAGRAPH */
.benefit-intro {
    text-align: center;
    max-width: 950px;
    padding: 40px 0;
    font-size: 17px;
    color: #444;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 40px;
}

.benefit-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    width:380px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.07);
}

.benefit-box .icon {
    font-size: 40px;
    color: #E94C01A8;
    margin-bottom: 10px;
}

.benefit-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color:#E94C01A8;

}

.benefit-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* BUSINESS SOLUTIONS PAGE CSS */

/* INTRO SECTION */
.business-intro {
text-align: justify;
max-width: 950px;
padding: 30px 0 10px 0;
font-size: 17px;
color: #444;
margin: auto;
/* margin-bottom: 10px; */
}

.business-content {
    max-width: 950px;
    margin: auto;
    padding: 20px 0;
}

.business-content .row {
    display: flex;
    gap: 40px; /* spacing between sections */
}

.business-content .col-md-6 {
    flex: 1;
}

.business-content p {
    text-align: justify;
    font-size: 17px;
    line-height: 1.7;
}


/* TITLE */
.section-title {
text-align: center;
font-size: 28px;
font-weight: bold;
/* margin-bottom: 10px; */
margin-top:10px;
}


/* HERO SECTION */


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
}

.hero-title-box {
    position: absolute;
    top: 50%;                 /* Vertical center */
    left: 60px;               /* Keep left spacing */
    transform: translateY(-50%);  /* Adjust only vertically */
    background: #E94C01A8;
    padding: 12px 30px;
    border-radius: 6px;
    z-index: 10;
}

.hero-title-box h1 {
    color: #fff;
    font-size: 42px;
    margin: 0;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 0;
}

.about-heading {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.about-section p {
    color: #444;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}



.highlight-text {
    color: #E94C01A8 !important;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
}

.review-logo-box {
    text-align: center;
    margin-top: 40px;
}

.review-logo-box img {
    max-width: 550px;
}

/* NEED HELP */
.need-help {
    background: #f7f7f7;
    padding: 50px 20px;
    text-align: center;
}

.need-help h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-btn {
    border: 1px solid #333;
    padding: 10px 25px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 12px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #333;
    color: #fff;
}



.home-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.hero-text {
    position: absolute;
    top: 40%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
}







.hero-text span {
    color: #ff6f00;
    font-weight: 700;
}



.blog-section {
    width: 80%;
    margin: 60px auto;
}


.blog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.blog-card {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    align-items: flex-start; /* FIX */
}

.blog-card img {
    width: 200px;
    height: 150px; /* FIX */
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0; /* FIX */
}

.blog-content h3 {
    margin: 0 0 10px 0;
}

.blog-content p {
    color: #555;
    margin-bottom: 10px;
}

.read-more {
    color: #ff6f00;
    font-weight: 600;
    text-decoration: none;
}



/* ORANGE CONTACT US BOX */
.hero-text-box {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-text-box h1 {
    background: #E94C01A8;
    padding: 25px 40px;
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    border-radius: 10px;
}


/* CONTACT INFO SECTION */
.contact-info-section {
    padding: 50px 0px;
}



.orange-title {
    color: #E94C01A8;
    font-weight: 700;
    text-transform: uppercase;
}




/* ICONS */
.icon-fa {
    font-size: 45px;
    color: #E94C01A8;
    margin-right: 20px;
    min-width: 55px;
    text-align: center;
}

/* LEFT COLUMN ROW STYLE */
.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

/* LABEL TEXT */
.info-row label {
    font-weight: 700;
    font-size: 20px;
    color: #1f1f1f;
    margin-bottom: 3px;
}

/* TEXT BELOW LABEL */
.info-row p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

/* HOURS RIGHT COLUMN */
.hours-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 20px;
}

.hours-list li.closed span,
.hours-list li.closed strong {
    color: #E94C01A8;
}







/* CONTACT FORM */
.contact-form-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.contact-form label {
    display: block;
    margin-top: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-top: 5px;
}

.send-btn {
    margin-top: 25px;
    padding: 12px 34px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.send-btn:hover {
    background: #000;
}



/* cars */


body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

/* --- HERO BANNER --- */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.hero-text {
    position: absolute;
    top: 50%;               /* vertical center */
    left: 25px;             /* distance from left edge */
    transform: translateY(-50%); /* offset for true vertical centering */
    color: #fff;
    padding: 16px 20px;
    font-size: 1.4rem;
    max-width: 500px;
    text-align: left;       /* keep text aligned to left */
}


.hero-text h1 {
    background: #E94C01A8;
    padding: 25px 25px;
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
    border-radius: 10px;
}

/* --- FEATURES --- */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px 0;
    text-align: center;
}

.features .feature img {
    width: 60px;
    margin-bottom: 10px;
}

.features .feature h4 {
    margin: 10px 0;
}
/* --- PLANS TABLE --- */
.plan-table {
    border-collapse: collapse;
    margin: 0 auto;              /* center table */
    table-layout: auto;          /* lets table shrink naturally */
    font-size: 0.95rem;
    max-width: 1100px;            /* controls max size for <=4 columns */
    width: auto;                 /* allows shrink */
}


.plan-table th,
.plan-table td {
    border: 1px solid #ddd;  /* 🔥 full visible border lines */
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

/* HEADER CELLS */
.plan-table th {
    background: #fff;
    color: #F07F09;
    font-weight: 700;
}

/* FIRST COLUMN ORANGE */
.plan-table th:first-child,
.plan-table td:first-child {
    background: #F07F09;
    color: #fff;
    /* font-weight: bold; */
}

/* FOOTER BUTTON CELLS */
.plan-table tfoot td:first-child {
    background: #fafafa;
}

/* PRICE */
.price {
    /* font-weight: bold; */
    margin-bottom: 8px;
    display: block;
}


/* Ensure the button appears as a box */
.btn.orange-btn {
    display: inline-block;       /* block-level box */
    padding: 12px 28px;          /* size of box */
    background-color: #F07F09;   /* orange box background */
    color: #fff;                 /* white text */
    /* font-weight: bold; */
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #F07F09;
    transition: 0.3s;
}

/* Hover effect */
.btn.orange-btn:hover {
    background-color: #fff;
    color: #F07F09;
}


.plan-table tfoot td:first-child {
    background: #fff !important;
    color: #333 !important;
    font-weight: bold;
}



/* --- NOTES --- */
.notice-box {
    background-color: #f5a476;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    width: 100%;
    max-width: 1100px;   /* 🔥 SAME AS TABLE */
    margin: 20px auto;   /* 🔥 center it */
    padding: 20px;
}

/* Outer rounded white box */
.terms-outer-box {
    background: #ffffff;
    width: 100%;
    max-width: 1100px;    /* adjust if table width differs */
    margin: 20px auto 20px auto;
    padding: 20px 0;      /* spacing inside the box */
    border-radius: 25px;  /* rounded corners (matches screenshot) */
    box-shadow: 0 0 10px rgba(0,0,0,0.15); /* soft shadow like screenshot */
    text-align: center;
}

/* Button */
.terms-btn {
    background-color: #f7931e;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.terms-btn:hover {
    background-color: #e67f12;
}

.cars-intro {
    text-align: justify;
    max-width: 950px;
    padding: 40px 10px;
    font-size: 17px;
    color: #444;
}

/* articles*/

.main-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    padding: 0 20px 40px 20px;
}

/* Article Content */
.article-content {
    flex: 3;
    background: white;
    padding: 30px 40px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    overflow-wrap: break-word;
}

.article-content p {
    margin-bottom: 18px;
    font-size: 16px;
}

.article-content strong {
    font-weight: 600;
}

/* Tags */
.tags {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.tags h4 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
}

.tags ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tags ul li {
    background: #ef6c00;
    color: white;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 14px;
    cursor: default;
}

/* Sidebar */
.sidebar {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 20px 15px;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

/* Search Box */
.search-box {
    display: flex;
    margin-bottom: 30px;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-box button {
    background: #ef6c00;
    border: none;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-weight: 700;
    font-size: 14px;
}

/* Categories */
.categories-box h4 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #222;
}

.category-btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 0;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 14px;
    text-align: center;
    background: #ef6c00;
}



/* WRAPPER */
.contactbox-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* FLOATING BUTTON */
.contactbox-button {
    width: 60px;
    height: 60px;
    background: #ff7f00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contactbox-button img {
    width: 32px;
    height: 32px;
}

/* POPUP BOX */
.contactbox-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 230px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    padding: 0;
    display: none;
    overflow: hidden;
}

/* POPUP ITEMS */
.contactbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contactbox-item:last-child {
    border-bottom: none;
}

.contactbox-item:hover {
    background: #fafafa;
}

.contactbox-item .icon {
    font-size: 20px;
    color: #ff7f00;
}

/* --------- RESPONSIVE SLIDER --------- */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-slider .slide img {
        height: 500px;
    }

    .slide-content h2,
    .slide-content1 h2 {
        font-size: 32px;
    }

    .slide-content,
    .slide-content1 {
        max-width: 90%;
        right: auto;
        left: 5%;
    }

    .slide-content p,
    .slide-content1 p {
        font-size: 14px;
    }

    .slide-mini-box,
    .slide1-mini-box {
        width: 280px;
        padding: 20px 20px;
        right: 5%;
        left: auto;
    }

    .slide-mini-box p,
    .slide1-mini-box p {
        font-size: 13px;
    }

    .slider-btn {
        padding: 10px 14px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }

    .hero-slider .slide img {
        height: 400px;
    }

    .slide-content h2,
    .slide-content1 h2 {
        font-size: 24px;
    }

    .slide-content,
    .slide-content1 {
        max-width: 85%;
        top: 45%;
    }

    .slide-content p,
    .slide-content1 p {
        font-size: 12px;
        margin: 10px 0;
    }

    .btn-slide {
        padding: 10px 24px;
        font-size: 13px;
        margin-top: 10px;
    }

    .slide-mini-box,
    .slide1-mini-box {
        display: none;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .prev { left: 12px; }
    .next { right: 12px; }
}



