* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    overflow-x: hidden;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* TOP BAR */
.top-bar {
    background: #f47c20;
    color: #fff;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.top-bar .dropdown-menu {
    background-color: #f47c20 !important;
}

.city-dropdown a {
    color: #fff;
    font-weight: 500;
}

.city-dropdown .dropdown-item:hover {
    color: #f47c20;
}

.dropdown-menu {
    font-size: 14px;
    min-width: 180px;
}


.city i {
    margin-left: 6px;
    font-size: 12px;
}

/* HEADER */
.main-header {
    background: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 55px;
}

/* NAV MENU */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #f47c20;
}

/* LOGIN BUTTON */
.login-btn {
    background: #f47c20;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.login-btn:hover {
    background: #e36b10;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 24px;
    margin-left: 15px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .login-btn {
        padding: 10px 20px;
    }
}

/* TOP BAR MOBILE FIX */
@media (max-width: 576px) {

    /* Hide slogan & support */
    .top-bar .slogan,
    .top-bar .support {
        display: none;
    }

    /* Center city dropdown */
    .top-bar .container {
        justify-content: center;
    }

    .city-dropdown a {
        font-size: 15px;
        font-weight: 600;
    }
}
/* LOGIN BUTTON RESPONSIVE CONTROL */

/* Hide mobile login on desktop */
.mobile-login {
    display: none;
}

/* Mobile view */
@media (max-width: 992px) {

    /* Hide header login */
    .header-right .login-btn {
        display: none;
    }

    /* Show login inside menu */
    .mobile-login {
        display: block;
        margin-top: 10px;
    }

    .mobile-login .login-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        border-radius: 25px;
    }
}


/* HERO SECTION START HERE */
.hero-section {
    padding: 90px 0;
    background: #f47c203b;

}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #000;
}

.hero-text {
    font-size: 18px;
    color: #555;
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-btn {
    background: #f47b20 !important;
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: #d96412;
    color: #fff;
}

.hero-img {
    max-width: 100%;
}

.rotate-360 {
    animation: spin360 20s linear infinite;
    transform-origin: center center;
}

@keyframes spin360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* BOOKING SECTION STAR HERE */

.booking-section {
    padding: 80px 0;
}

.form-box,
.booking-box {
    border: 2px solid #f47c20;
    border-radius: 10px;
    padding: 25px;
    max-width: 100%;
}

.form-box h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.form-field {
    font-weight: 500;
    margin-bottom: 14px;
}

.submit-btn {
    background: #f47c20 !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 8px 28px;
    font-weight: 600 !important;
}

.submit-btn:hover {
    background: #e36b10;
    color: #fff;
}

/* Arrow */
.arrow-down {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #f47c20;
    margin: 12px 0 12px 80px;
}

/* Booking box */
.booking-box p {
    font-weight: 500;
    margin-bottom: 10px;
}

.booking-box .amount {
    font-weight: 600;
}

.book-btn {
    background: #f47c20 !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 32px;
    font-weight: 600 !important;
    margin-top: 10px;

}

.book-btn:hover {
    background: #e36b10;
    color: #fff;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.custom-input {
    border: 2px solid #f47c20;
    border-radius: 30px;
    padding: 10px 16px;
    font-size: 14px;
}

.custom-input:focus {
    border-color: #e36b10;
    box-shadow: none;
}

.custom-input::placeholder {
    color: #999;
}

/* Remove default browser style */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border: 2px solid #f47c20;
    border-radius: 30px;
    padding: 12px 45px 12px 16px;
    font-size: 15px;
    font-weight: 500;
    background-color: #fff;
    color: #333;
    cursor: pointer;

    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f47c20' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

/* Remove blue focus glow */
.custom-select:focus {
    border-color: #e36b10 !important;
    outline: none;
    box-shadow: none;
}

/* Dropdown option styling */
.custom-select option {
    font-size: 14px;
    padding: 10px;
    background: #fff;
    color: #333;
}

/* Remove blue hover & active */
.custom-select option:hover,
.custom-select option:checked {
    background-color: #f47c20 !important;
    color: #fff;
}

.custom-select {
    transition: all 0.25s ease-in-out;
}


/* Advertisement Banner */
.ad-banner {
    background: #f47c20;
    color: #fff;
    border-radius: 25px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 992px) {

    .form-box,
    .booking-box {
        max-width: 100%;
    }

    .arrow-down {
        margin-left: 40px;
    }

    .ad-banner {
        height: 220px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .booking-section {
        padding: 50px 0;
    }

    .ad-banner {
        height: 200px;
        font-size: 20px;
    }
}

.repair-section {
    padding: 80px 0;
}

/* TOP ORANGE CARDS */
.repair-card {
    background: #f47c20;
    border-radius: 25px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.repair-card img {
    max-height: 70px;
    margin-bottom: 15px;
}

.repair-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.pill-btn {
    display: inline-block;
    background: #fff;
    color: #f47c20;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}



.service-box {
    border: 2px solid #f47c20;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    width: 180px;
}

.service-box img {
    max-width: 80px;
    margin-bottom: 10px;
    margin: auto;
}

.service-box p {
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* ARROWS */
.arrow {
    width: 45px;
    height: 45px;
    background: #f47c20;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
}

.left-arrow {
    margin-right: 20px;
}

.right-arrow {
    margin-left: 20px;
}

@media (max-width: 992px) {
    .services-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .repair-card {
        padding: 30px 15px;
    }

    .service-box {
        width: 150px;
    }
}

/* SLIDER WRAPPER */
.services-wrapper {
    position: relative;
    padding: 0 60px;
    /* space for arrows */
}

/* SLICK ARROWS */
.services-wrapper .slick-prev,
.services-wrapper .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #f47c20 !important;
    border-radius: 50%;
    z-index: 10;
}

/* LEFT ARROW */
.services-wrapper .slick-prev {
    left: 0;
}

.slick-prev:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.slick-next:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* RIGHT ARROW */
.services-wrapper .slick-next {
    right: 0;
}

/* ICON COLOR */
.services-wrapper .slick-prev:before,
.services-wrapper .slick-next:before {
    font-size: 20px;
    color: #fff;
    opacity: 1;
}

/* REMOVE DEFAULT TEXT */
.services-wrapper .slick-prev,
.services-wrapper .slick-next {
    font-size: 0;
}

/* MOBILE – HIDE ARROWS */
@media (max-width: 768px) {

    .services-wrapper .slick-prev,
    .services-wrapper .slick-next {
        display: none !important;
    }
}




/* prodouct section start here */

/* PRODUCT CARD */
.product-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f27c1e;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.product-img {
    position: relative;
    background: #f9f9f9;
}

.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CATEGORY TAG */
.product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f27c1e;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

/* CONTENT */
.product-info {
    padding: 18px;
    text-align: center;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.product-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* PRICE */
.product-price {
    font-size: 22px;
    font-weight: 800;
    color: #f27c1e;
    margin-bottom: 15px;
}

/* BUTTONS */
.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

/* ADD TO CART */
.cart-btn {
    background: #fff;
    color: #f27c1e;
    border: 2px solid #f27c1e;
}

.cart-btn:hover {
    background: #f27c1e;
    color: #fff;
}

/* BUY NOW */
.buy-btn {
    background: #f27c1e;
    color: #fff;
}

.buy-btn:hover {
    background: #d96510;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .product-card {
        max-width: 100%;
    }
    .hero-title {
    font-size: 49px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #000;
}
}

/* TESTIMMONIAL SECTION START HERE */

.testimonial-card {
    background: #fbf6d8;
    border-radius: 20px;
    padding: 50px 25px 25px;
    position: relative;
    min-height: 220px;
}

.avatar {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #f47b20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar i {
    color: #fff;
}

.testimonial-card p {
    font-size: 14px;
}

.stars {
    margin-top: 10px;
}

.stars i {
    color: #ffb703;
}

/* FAQ SECTION START HERE */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: #fff;
    font-weight: 600;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f47b20;
    color: #fff;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    background: #f8f9fa;
    font-size: 14px;
}

.faq-img {
    max-height: 280px;
}

.add_cart {
    background: #f47b20 !important;
    color: #fff !important;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
}

/* FOOTER SECCTION START HERE */
.footer-main {
    font-size: 14px;
}

.footer-top {
    background: linear-gradient(180deg, #061b2b, #04131f);
    color: #fff;
}

.footer-top h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-top ul {
    list-style: none;
    padding: 0;
}

.footer-top ul li {
    margin-bottom: 6px;
    color: #d9e2ec;
}

.footer-top ul li a {
    color: #d9e2ec;
    text-decoration: none;
}

.footer-top ul li a:hover {
    color: #fff;
}

.footer-bottom {
    background: #2b2b2b;
    color: #fff;
}

.footer-bottom p {
    margin-bottom: 6px;
}

.social-icons i {
    margin-right: 10px;
    cursor: pointer;
}

.store-btn {
    max-width: 160px;
}

.footer-copy {
    background: #1f1f1f;
    color: #ccc;
    font-size: 13px;
}




.services-section {
    margin: 40px auto;
    padding: 0 15px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.service-card {
    background: #fff;
    display: flex;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 140px;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
}

.service-content {
    flex: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h3 {
    font-size: 18px;
}

.time {
    background: #eee;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}

.service-list {
    margin: 15px 0;
    list-style: none;
}

.service-list li {
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: "✔";
    color: green;
    position: absolute;
    left: 0;
}

.btn {
    background: #fff;
    border: 1px solid #ff3b3b;
    color: #ff3b3b;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background: #ff3b3b;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-card img {
        margin-bottom: 15px;
    }

    .service-header {
        flex-direction: column;
        gap: 8px;
    }
}

.breadcrumb-section {
    background: #f2f4f7;
    padding: 30px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.breadcrumb-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #ff3b3b;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb .active {
    color: #111;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 22px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}


/*CONTACT PAGE CSS START HERE*/
.contact-section {
  padding: 70px 0;
  background: #ffffff;
}

/* TITLE */
.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #F97316;
  margin-bottom: 40px;
}

/* LAYOUT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

/* MAP */
.map-area {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.map-area iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

/* MAP INFO CARD */
.map-info-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  padding: 24px;
  width: 320px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.map-info-card h4 {
  color: #F97316;
  margin-bottom: 5px;
}

.map-info-card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #374151;
}

.info-block {
  margin-bottom: 12px;
  font-size: 14px;
  color: #374151;
}

.info-block a {
  color: #EA580C;
  text-decoration: none;
}

/* RIGHT PANEL */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* LOCATION CARD */
.location-card {
  background: #FFF7ED;
  padding: 28px;
  border-radius: 16px;
}

.location-card h3 {
  color: #EA580C;
  margin-bottom: 10px;
}

.location-card p {
  color: #374151;
}

.phone-list a {
  display: block;
  margin: 6px 0;
  color: #111827;
  text-decoration: none;
}

.direction-link {
  display: inline-block;
  margin-top: 15px;
  color: #F97316;
  font-weight: 600;
  text-decoration: none;
}

/* CONTACT FORM */
.contact-form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
  margin-bottom: 20px;
  color: #F97316;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
    border: 2px solid #f47c20;
    border-radius: 30px !important;
  border-radius: 8px;
  font-size: 14px;
  color: #111827;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F97316;
}

/* BUTTON */
.contact-form-box button {
  width: 100%;
  padding: 14px;
  background: #F97316;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #EA580C;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-area iframe {
    height: 420px;
  }

  .map-info-card {
    position: static;
    margin-top: 20px;
  }
}
