/********** Template CSS **********/
:root {
    --primary: #ff3c5f;
    --secondary: #333;
    --accent: #ff6b00;
    --light: #f8f9fa;
    --dark: #212529;
    --primary-light: #3cb371;
    --gray: #e0e0e0;
    --border-radius: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

nav a.active {
    color: #ff3c5f;
    border-bottom: 2px solid #ff3c5f;
    font-weight: bold;
}


.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Remove default margin & padding */
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html,
body {
    width: 100vw;
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    background-color: #f8f9fa;
    /* Optional: body background */
}

/* If you're using Bootstrap or similar */
.container,
.container-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}







/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}








.mobile-contact-inline {
    display: none; /* hidden on desktop */
    background-color: #0f172b;
    /* background-color: #0056b3; */
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    padding: 8px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100vw;
    margin-left: 20px;
    line-height: 1.5;
}

.mobile-contact-inline a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin: 0 2px;
}

.mobile-contact-inline i {
    margin-right: 3px;
}

/* Show only on screens < 992px */
@media (max-width: 991.98px) {
    .mobile-contact-inline {
        display: block;
    }
}




/* Search Container */
.search {
    position: relative;
}

/* Search Icon */
.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
}
.cur a{
    color: grey;
}
/* Search Input */
.search-input {
    width: 350px;
    padding: 10px 40px 10px 15px; /* space for icon */
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

/* Optional: Focus effect */
.search-input:focus {
    border-color: #b72e3b;
    box-shadow: 0 0 0 2px rgba(183, 46, 59, 0.2);
}

/* Responsive: Optional if you want smaller width on tablet */
@media (max-width: 992px) {
    .search-input {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .search-input {
        width: 200px;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
@media (max-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    margin-right: 20px;
}

}

@media (max-width: 768px) {
    .logo {
        width: 40px;
    }

    .logo img {
        width: 100px;
    }

    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -50px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 20%;
    right: -45px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}




.body {
    font-family: 'Segoe UI', sans-serif;
    background: #f1efef;
    color: #333;
    width: auto;
}

.company-wrapper {
    max-width: 100%;
    /* margin: 40px auto; */
    margin-top: 0px;
    /* background-color: #0F172B; */
    padding: 80px;
}


.company-header {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    position: relative;
    left: 0px;
    margin-right: 20px;
    margin-top: 20px;
    /* background-color: #4caf50; */
}
@media (max-width: 768px) {
.company-header {
   background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
    position: relative;
    left: 0px;
    margin-right: 20px;
    margin-top: 20px;
    /* background-color: #4caf50; */
}
.company-header h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #222;
}

}
.company-header h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #222;
}

.company-header p {
    font-size: 16px;
    color: #555;
}

.company-header .btn {
    margin-top: 20px;
    padding: 10px 24px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.company-header .btn:hover {
    background-color: #b72e3b;
}


.trust-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-right: 20px;
}

.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card i {
    font-size: 28px;
    color: #dc3545;
    margin-bottom: 10px;
}

.info-title {
    font-weight: 600;
    margin-bottom: 6px;
}

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

.contact-box button {
    padding: 12px 30px;
    font-size: 16px;
    background-color: #b72e3b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: #b72e3b;
}


/* ========== TABLET VIEW (≤ 991px) ========== */
@media (max-width: 991.98px) {
  .container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 15px;
    font-size: 14px;
  }

  .company-wrapper {
    padding: 40px 20px;
  }

  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-right: 0;
    gap: 15px;
  }

  .company-header {
    padding: 25px;
    margin: 15px 10px;
  }

  .company-header h2 {
    font-size: 22px;
  }

  .company-header p {
    font-size: 14px;
  }

  .btn,
  .company-header .btn,
  .contact-box button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .carousel-caption {
    padding: 20px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }

  .trust-logo {
    width: 50px;
    top: 10px;
    right: 10px;
  }
}

/* ========== MOBILE VIEW (≤ 576px) ========== */
@media (max-width: 576px) {
  html, body {
    font-size: 14px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 13px;
    padding: 8px 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .company-header {
    padding: 20px;
    margin: 10px;
  }

  .company-header h2 {
    font-size: 20px;
  }

  .company-header p {
    font-size: 13px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-card {
    padding: 15px;
  }

  .info-card i {
    font-size: 24px;
  }

  .contact-box {
    margin-top: 30px;
  }

  .contact-box button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .carousel-caption {
    font-size: 14px;
  }

  .btn-square,
  .btn-sm-square,
  .btn-lg-square {
    width: 32px;
    height: 32px;
  }
}












.section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
    color: #1e1e2f;
}

.section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background-color: #b72e3b;
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
   
}

.big-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.big-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.big-card img {
    width: 100%;
    height: 280px;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.big-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: #ff6c7b;
    margin-bottom: 15px;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card-content ul li {
    font-size: 15px;
    padding-left: 26px;
    margin-bottom: 10px;
    position: relative;
    color: #555;
}

.card-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.card-content a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #b72e3b;
    color: white;
    border-radius: 8px;
    transition: background 0.3s;
    font-weight: 500;
}

.card-content a:hover {
    background-color: #b72e3b;
}

.view_btn {
    position: relative;
    left: 550px;
}

@media (max-width: 600px) {
    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-content ul li {
        font-size: 14px;
    }

    .view_btn {
        position: relative;
        left: 0px;
        justify-content: center;
        align-items: center;
    }
}

.contact-us-section {
    /* background: linear-gradient(135deg, #d38884, #6f91bb); */
    background-color: #f3f4f5;

    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: auto;
    gap: 30px;
    justify-content: center;

}

.contact-info-glass,
.form-glass {
    flex: 0 0 600px;
    padding: 30px;
    backdrop-filter: blur(14px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: #fcfbfb;
}

.contact-info-glass h2 {
    font-size: 26px;
    margin-bottom: 25px;
    /* color: #fff; */
    color: #b72e3b;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
   
}

.contact-block i {
    font-size: 22px;
    margin-right: 15px;
    margin-top: 5px;
    /* color: white; */
    color: black;
}

.contact-block p {
    color: #050914;
}

.contact-block h4 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    /* color: rgb(255, 255, 255); */
    color: black;
}

.contact-block a.directions {
    color: blue;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
    text-decoration: underline;
}

.social-area {
    margin-top: 30px;
}

.social-area span {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin-right: 15px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.3);
    color: #f3071e;
}

.form-glass h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #b72e3b;
}

.form-glass label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-glass textarea {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    padding: 15px;
    border: none;
    font-size: 15px;
    margin-top: 10px;
    resize: vertical;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.3);
}
.form-glass input {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    padding: 15px;
    border: none;
    font-size: 15px;
    resize: vertical;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    margin-bottom: 20px;
}
.cur{
    cursor: pointer;
}
.form-glass button {
    margin-top: 20px;
    background: #dc3545;
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-glass button:hover {
    background: #315ba4;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .contact-us-section {
   
   padding: 60px 20px;
}

    .card-grid{
         margin-right: 15px;
    }
}






.reviews-section {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '  ';
    display: block;
    width: 40px;
    height: 2px;
    background: #e91e63;
    margin: 10px auto;
}

.ratings-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.rating-left .rating-value {
    font-size: 48px;
    font-weight: bold;
    color: #ff3c5f;
}

.rating-left span {
    font-size: 20px;
    color: #555;
}

.stars {
    color: #ff3c5f;
    font-size: 22px;
}

.stars.small {
    font-size: 18px;
}

.rating-bars {
    max-width: 300px;
    width: 100%;
}

.bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bar .progress {
    flex: 1;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.bar .progress div {
    height: 100%;
    background: #4caf50;
}

.satisfaction {
    font-size: 16px;
    text-align: left;
}

.satisfaction-bar {
    margin-top: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.satisfaction-bar div {
    height: 100%;
    background: #4caf50;
}

.sub-title {
    text-align: center;
    margin: 40px 20 20px;
    font-size: 20px;
    margin-bottom: 40px;
}

/* ========== Tablet View (≤ 991px) ========== */
@media (max-width: 991.98px) {
  .section {
    padding: 40px 15px;
  }

  .section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .big-card img {
    height: 240px;
    object-fit: cover;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content ul li {
    font-size: 14px;
  }

  .view_btn {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .contact-info-glass,
  .form-glass {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 20px;
  }

  .form-glass input,
  .form-glass textarea {
    font-size: 14px;
    padding: 12px;
  }

  .form-glass button {
    width: 100%;
    font-size: 15px;
  }

  .ratings-summary {
    flex-direction: column;
    gap: 20px;
  }

  .rating-left .rating-value {
    font-size: 36px;
  }

  .rating-left span {
    font-size: 18px;
  }

  .stars {
    font-size: 20px;
  }

  .satisfaction {
    font-size: 14px;
  }

  .sub-title {
    font-size: 18px;
  }
}

/* ========== Mobile View (≤ 576px) ========== */
@media (max-width: 576px) {
  .section h2 {
    font-size: 24px;
  }

  .big-card img {
    height: 200px;
  }

  .card-content {
    padding: 16px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content ul li {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .card-content a {
    padding: 8px 16px;
    font-size: 14px;
  }

  .form-glass h3,
  .contact-info-glass h2 {
    font-size: 20px;
  }

  .form-glass button {
    padding: 10px;
    font-size: 14px;
  }

  .rating-left .rating-value {
    font-size: 28px;
  }

  .rating-left span {
    font-size: 16px;
  }

  .stars,
  .stars.small {
    font-size: 18px;
  }

  .satisfaction {
    font-size: 13px;
  }

  .sub-title {
    font-size: 16px;
  }

  .section-title {
    font-size: 22px;
  }
}







.review-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.avatar {
    background: #333;
    color: #fff;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
}

.review-date {
    font-size: 14px;
    color: #888;
}

.view-more {
    margin-top: 30px;
}

.view-more button {
    background: #b92b27;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.underline::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ff3c5f;
    position: relative;
    left: 44%;
    top: 5px;
}

.view-more button:hover {
    background: #c2185b;
}

/* Responsive */
@media (max-width: 768px) {
    .ratings-summary {
        flex-direction: column;
        align-items: center;
    }
}

.modern-footer {
    background: linear-gradient(to right, #1d1d1d, #2b2b2b);
    color: #f0f0f0;
    padding: 60px 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    max-width: 100vw;
    margin: auto;
}

.footer-column h3,
.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #ff3c5f;
    margin-top: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff3c5f;
    padding-left: 5px;
}

.footer-column a {
    color: #ff3c5f;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    color: #fff;
    background: #444;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    text-align: center;
    padding: 8px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #ff3c5f;
    color: white;
}

.footer-logo {
    margin-top: 20px;
    width: 150px;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.footer-bottom a {
    color: #ff3c5f;
}





about-body {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: var(--dark);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
    color: #999;
}

/* About Header */
.about-header {
    text-align: center;
    margin: 30px 0 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
}

/* About Navigation */
.about-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-nav a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s;
}

.about-nav a:hover,
.about-nav a.active {
    background: var(--primary);
    color: white;
}

/* About Content */
.about-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.highlight-box {
    background: #f9f9f9;
    border-left: 4px solid var(--accent);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 5px 5px 0;
}

.leader-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    background: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
}

.leader-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.leader-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.leader-info p {
    color: #666;
    font-style: italic;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-content {
        padding: 25px;
    }

    .leader-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-header h1 {
        font-size: 1.8rem;
    }

    .about-nav {
        gap: 10px;
    }

    .about-nav a {
        padding: 6px 12px;
        font-size: 14px;
    }

    .about-content {
        padding: 20px 15px;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* ===== Tablet (≤ 991px) and Mobile (≤ 768px & ≤ 480px) ===== */

/* Review Cards */
@media (max-width: 768px) {
  .review-cards {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 90%;
    max-width: 100%;
  }

  .view-more button {
    width: 100%;
    padding: 10px;
  }

  .underline::after {
    left: 40%;
  }
}

/* Footer */
@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    width: 120px;
    margin: 10px auto;
  }

  .footer-bottom {
    font-size: 13px;
    padding-top: 15px;
  }
}

/* About Section */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2rem;
  }

  .about-content {
    padding: 25px 20px;
  }

  .leader-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .leader-img {
    margin-bottom: 15px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 1.6rem;
  }

  .about-nav {
    gap: 10px;
  }

  .about-nav a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .about-content {
    padding: 15px;
  }

  .about-content p {
    font-size: 1rem;
  }

  .leader-info h3 {
    font-size: 18px;
  }

  .leader-info p {
    font-size: 14px;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .footer-column h3, .footer-column h4 {
    font-size: 18px;
  }

  .footer-column ul li {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}







.phone-input {
    display: flex;
    max-width: 435px;
    margin: 0px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.country-select {
    position: relative;
    width: 120px;
}

.country-select-toggle {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: rgb(85, 83, 83);
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    height: 100%;
}

.flag {
    width: 20px;
    height: 15px;
    margin-right: 8px;
    border: 1px solid #eee;
}

.country-code {
    font-size: 14px;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(85, 82, 82);
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 10;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
}

.country-option:hover {
    background: #524848;
}

.phone-number {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
}

.phone-number:focus {
    outline: none;
    border-color: #0056b3;
}

.sw-body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-color: #f5f5f5;0 */
  
    color: var(--dark);
    line-height: 1.6;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.body-slw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-card {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-images {
    flex: 1;
    padding: 20px;
    min-width: 400px;
}

.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid var(--gray);
    transition: var(--transition);
    transform-origin: center center;
}

.main-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.swiper {
    width: 100%;
    height: 100px;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0.95);
}

.swiper-slide:hover {
    border-color: var(--primary);
    transform: scale(1);
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    opacity: 0.8;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    transform: scale(1.1);
    background: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.product-details {
    flex: 1;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.product-details h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.product-details h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    transform-origin: left;
    transform: scaleX(0);
    transition: var(--transition);
}

.product-details h2:hover::after {
    transform: scaleX(1);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray);
    animation: pulse 2s infinite;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset problematic layout on mobile */
@media (max-width: 768px) {
  .product-images {
    min-width: unset !important;
    width: 100%;
    padding: 10px;
  }

  .main-img {
    height: 250px;
    object-fit: cover;
  }

  .swiper {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .swiper-slide {
    flex-shrink: 0;
    width: auto !important;
    transform: scale(0.95);
    border-radius: 4px;
    overflow: hidden;
    margin-right: 6px;
  }

  .swiper-slide img {
    width: 100%;
    height: 60px;
    object-fit: contain;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 28px;
    height: 28px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .main-img {
    height: 200px;
  }

  .swiper-slide img {
    height: 50px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* Optional: hide nav buttons on very small screens */
  }
}


@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.product-specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 8px;
}

.product-specs tr {
    border-bottom: 1px solid var(--gray);
    transition: var(--transition);
}

.product-specs tr:hover {
    background-color: rgba(46, 139, 87, 0.05);
}

.product-specs tr:last-child {
    border-bottom: none;
}

.product-specs td {
    padding: 8px 5px;
    vertical-align: top;
    transition: var(--transition);
}

.product-specs td:first-child {
    font-weight: 500;
    color: #555;
    width: 40%;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.quote-btn,
.interest-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.quote-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.quote-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.interest-btn {
    background: var(--primary);
    color: white;
}

.interest-btn:hover {
    background: linear-gradient(135deg, #a10a0a, #3a5ec0);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.interest-btn::after,
.quote-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.interest-btn:hover::after,
.quote-btn:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .product-card {
        flex-direction: column;
    }

    .product-images {
        min-width: auto;
    }

    .main-img {
        height: 300px;
    }

    .buttons {
        flex-direction: column;
    }
    

}

@media (max-width: 480px) {
    .main-img {
        height: 250px;
    }

    .swiper {
        height: 80px;
    }
}

/* Base Styles */
.price-request {
    display: inline-block;
    text-decoration: none;
}


.price {
    width: 200px;
    background: linear-gradient(135deg, #a10a0a, #3a5ec0);
    color: white;
    padding: 5px 10px;
    /* padding: 1; */
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    /* cursor: pointer; */

}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Hover Effects */
.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s ease;
}

.price-request:hover .price {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 115, 223, 0.4);
}

.price-request:hover .price::before {
    left: 100%;
}

/* Ripple Effect */
.price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(163, 150, 150, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.price-request:active .price::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .price {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.first-btn {
    display: flex;
    justify-content: space-between;
}




.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #fff;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(-40px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  background-color: #dc3545;
  color: white;
  padding: 20px;
  position: relative;
  text-align: center;
}

.modal-header h1 {
  font-size: 20px;
  color: white;
  margin: 0;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.modal-body {
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

.input-group input,
.input-group textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.divider {
  margin: 20px 0;
  border-top: 1px solid #ddd;
}

.product-details h3 {
  color: #dc3545;
  margin-bottom: 10px;
}

.product-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.product-details ul li span {
  font-weight: bold;
}

.note {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}

.submit-btn {
  width: 100%;
  background: #dc3545;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #b72e3b;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .modal-content {
    margin: 20px;
  }

  .modal-header h1 {
    font-size: 18px;
  }

  .submit-btn {
    font-size: 15px;
  }

  .close-btn {
    top: 10px;
    right: 10px;
  }
}







.modal.active .modal-content {
  animation: slideDown 0.3s ease forwards;
}

.modal.closing .modal-content {
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-50px);
    opacity: 0;
  }
}






/* ===== Responsive Fixes for Mobile & Tablet ===== */

@media (max-width: 768px) {
  .phone-input {
    flex-direction: column;
    max-width: 100%;
    box-shadow: none;
  }

  .country-select,
  .phone-number {
    width: 100%;
    border-radius: 5px !important;
  }

  .country-select-toggle {
    width: 100%;
    border-radius: 5px;
    justify-content: space-between;
  }

  .country-dropdown {
    max-height: 180px;
  }

  .product-card {
    flex-direction: column;
  }

  .product-images {
    min-width: 100%;
    padding: 10px;
  }

  .main-img {
    height: 250px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .quote-btn,
  .interest-btn {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    height: auto;
    border-radius: 10px;
  }

  .modal-header h1 {
    font-size: 18px;
  }

  .product-image {
    height: 150px;
  }

  .mobile-input {
    flex-direction: column;
  }

  .mobile-input span {
    border-radius: 6px 6px 0 0;
  }

  .mobile-input input {
    border-radius: 0 0 6px 6px;
    border-left: 1px solid #ddd;
  }

  .submit-btn {
    padding: 12px;
    font-size: 15px;
  }

  .product-details h2 {
    font-size: 1.5rem;
  }

  .product-details p,
  .product-details li {
    font-size: 14px;
  }

  .swiper-slide img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .main-img {
    height: 200px;
  }

  .swiper {
    height: 80px;
  }

  .price {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }

  .modal-content {
    width: 95%;
    max-width: 95%;
    height: auto;
  }

  .modal-header h1 {
    font-size: 16px;
  }

  .close-btn, .close-btn2 {
    font-size: 22px;
  }

  .product-details h2 {
    font-size: 1.3rem;
  }

  .product-details li span:first-child {
    min-width: 100px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 12px;
  }

  .country-select-toggle {
    padding: 8px 12px;
  }

  .flag {
    width: 18px;
    height: 12px;
  }

  .country-code {
    font-size: 13px;
  }

  .product-specs td:first-child {
    width: 100px;
  }

  .price {
    font-size: 13px;
    padding: 6px 10px;
  }
}
