*{
    margin: 0;
    padding: 0;
}
/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Consistent box sizing */
* {
  box-sizing: border-box;
}

/* Prevent layout shift on mobile menus */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Safe layout padding */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

div.wrapper {
    width: 100%;
    height: 100%;
    display: inline-block;
}
div.container {
    max-width: calc(1280px);
    width: 100%;
    margin: 0 auto;
}
/***===================================
        SITE HEADER START
==================================****/
div.topBarHeader {
    width: 100%;
    display: inline-block;
    background: #2399B4;
}
div.siteHeader .top-bar {
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
div.siteHeader .auth-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
div.siteHeader .auth-links span {
    margin: 0px 10px;
}
div.siteHeader .promo-text {
    font-size: 16px;
}
div.siteHeader .promo-text a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}
div.siteHeader .social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
}
div.siteHeader .social-icons i {
    font-size: 16px;
    color: #45B5C4;
}
/* Main header */
div.siteHeader .main-header {
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0px 0px 5px #ccc;
}
div.siteHeader .logo img {
    height: 50px;
}
/* Navigation */
div.siteHeader .nav-container {
    background-color: #E7F9FD;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
div.siteHeader .main-nav {
    display: flex;
    justify-content: center;
    list-style: none;
}
div.siteHeader .main-nav li {
    position: relative;
}
div.siteHeader .main-nav li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
}
div.siteHeader .main-nav li a:hover {
    color: #45B5C4;
}
div.siteHeader .main-nav li.has-dropdown > a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
}
div.siteHeader .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}
div.siteHeader .main-nav li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
div.siteHeader .submenu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}
div.siteHeader .submenu li:last-child {
    border-bottom: none;
}
div.siteHeader .submenu li a {
    padding: 12px 15px;
}
div.siteHeader .hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
}
/* Responsive styles */
@media screen and (max-width: 900px) {
    div.siteHeader .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    div.siteHeader .auth-links {
        margin-bottom: 5px;
    }

    div.siteHeader .social-icons {
        margin-top: 5px;
    }

    div.siteHeader .nav-container {
        display: flex;
        justify-content: flex-end;
        padding: 10px 20px;
    }

    div.siteHeader .hamburger {
        display: block;
    }

    div.siteHeader .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    div.siteHeader .main-nav.active {
        display: flex;
    }

    div.siteHeader .main-nav li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    div.siteHeader .main-nav li:last-child {
        border-bottom: none;
    }

    div.siteHeader .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
    }

    div.siteHeader .submenu li a {
        padding-left: 25px;
    }

    div.siteHeader .main-nav li.has-dropdown > a::after {
        float: right;
    }
}
footer.footer .contact-item i.fas.fa-phone-alt {
    transform: rotate(-260deg);
}
/***===================================
        SITE HEADER END
==================================****/



/****===============================
      SITE FOOTER START
===============================****/
footer.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
}
footer.footer .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}
footer.footer .footer-about {
  width: 35%;
}
footer.footer .footer-logo {
    margin-bottom: 20px;
}
footer.footer .footer-logo img {
    height: 50px;
}
footer.footer .footer-description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
}
.footer-links-support{
    display:flex;
    width: 50%;
}
footer.footer .footer-links {
    width: 50%;
}
footer.footer .footer-support {
    width: 50%;
}
footer.footer .footer-info {
    width: 35%;
}
footer.footer.footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
}
footer.footer .footer-menu {
    list-style: none;
    padding-top: 12px;
}
footer.footer .footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}
footer.footer .footer-menu a:hover {
    color: #45B5C4;
}
footer.footer .contact-info {
    margin-top: 20px;
}
footer.footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
}
footer.footer .contact-item i {
    margin-right: 10px;
    color: #fff;
    width: 16px;
}
footer.footer .map-container {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}
footer.footer .map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
footer.footer .social-section {
    text-align: center;
    margin-top: 40px;
}
footer.footer .social-title {
    font-size: 18px;
    margin-bottom: 20px;
}
footer.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
footer.footer .social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}
footer.footer .social-icon:hover {
    background-color: #45B5C4;
    border-color: #45B5C4;
}
footer.footer .copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
footer.footer .powered-by {
    text-align: center;
    padding-top: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}



footer.footer .powered-by a {
    color: #2399B4;
    text-decoration: none;
}

/* Responsive styles */
/* ---------- Tablet View (2 columns) ---------- */
@media screen and (max-width: 992px) {
  footer.footer .footer-container {
    flex-wrap: wrap;
  }

  footer.footer .footer-about,
  footer.footer .footer-links,
  footer.footer .footer-support,
  footer.footer .footer-info {
    width: 48%;
    margin-bottom: 20px;
  }
}

/* ---------- Mobile View (1 column) ---------- */
@media screen and (max-width: 768px) {
  footer.footer .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  footer.footer .footer-about,
 
  footer.footer .footer-info {
    width: 100%;
    text-align: center;
  }
   footer.footer .footer-links-support {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
  }

  footer.footer .footer-links,
  footer.footer .footer-support {
    width: 45%;
    text-align: left;
  }

  footer.footer .contact-item {
    justify-content: center;
  }

  footer.footer .map-container {
    height: 180px;
  }
}


/***=============================
    SITE SOOTER END
==============================**/
div.VH_mainWrapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}
div.VH_mainWrapp .left {
    width: 50%;
}
div.VH_mainWrapp .right {
    width: 50%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
div.VH_mainWrapp .right .overlay {
    background-image: linear-gradient(rgba(15, 66, 78, 0.19), rgba(35, 153, 180, 0.9) );
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
}

@media screen and (max-width: 768px) {
    div.VH_mainWrapp .right {
        width: 100%;
        height: 300px;
    }

    div.VH_mainWrapp .right .overlay {
        align-items: center;
        justify-content: center;
        padding: 15px;
        text-align: center;
    }

    div.VH_mainWrapp .right .mainBox_vhForm h2 {
        font-size: 22px;
    }

    div.VH_mainWrapp .right .mainBox_vhForm p {
        font-size: 14px;
    }
}

/* Optional: hide image on very small screens */
@media screen and (max-width: 480px) {
    div.VH_mainWrapp .right {
        display: none;
    }
}
div.mainBox_vhForm {
    max-width: calc(100% - 250px);
    margin: 0 auto;
    text-align: center;
    padding-bottom: 80px;
}
div.mainBox_vhForm h2 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 10px;
}
div.mainBox_vhForm p {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4em;
}
div.VH_mainWrapp .left {
    width: calc(100% - 60px);
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}
div.VH_mainWrapp .left .logo {
    margin-bottom: 20px;
}
div.VH_mainWrapp .left h1 {
    color: #27abc9;
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 500;
}
div.VH_mainWrapp .left .form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}
div.VH_mainWrapp .left label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
div.VH_mainWrapp .left input[type="email"],
div.VH_mainWrapp .left input[type="password"],
div.VH_mainWrapp .left input[type="text"]{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    height: 50px;
    outline: none;
    text-indent: 25px;
}
div.VH_mainWrapp .left .towWays {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
div.VH_mainWrapp .left .towWays .form-group {
    width: 100%;
}
div.VH_mainWrapp .left .forgot-password {
    text-align: right;
    margin-top: 5px;
}
div.VH_mainWrapp .left .forgot-password a {
    color: #2399B4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
div.VH_mainWrapp .left .btn-login,
div.VH_mainWrapp .left .btn-confirm-email,
div.VH_mainWrapp .left .btn-formButton{
    background-color: #2399B4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
}
div.VH_mainWrapp .left .divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: #000;
}
div.VH_mainWrapp .left .divider::before,
div.VH_mainWrapp .left .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
}
div.VH_mainWrapp .left .divider span {
    padding: 0 10px;
}
div.VH_mainWrapp .left .btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}
div.VH_mainWrapp .left .btn-google img {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}
div.VH_mainWrapp .left .create-account {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}
div.VH_mainWrapp .left .create-account a {
    color: #27abc9;
    text-decoration: none;
}
div.VH_mainWrapp .left .form-group span {
    position: absolute;
    color: #2399B4;
    top: 40px;
    left: 12px;
}

@media screen and (max-width: 768px) {
    div.VH_mainWrapp .left {
        width: 100%;
        padding: 15px;
    }

    div.VH_mainWrapp .left h1 {
        font-size: 24px;
    }

    div.VH_mainWrapp .left .form-group label {
        font-size: 14px;
    }

    div.VH_mainWrapp .left input[type="email"],
    div.VH_mainWrapp .left input[type="password"],
    div.VH_mainWrapp .left input[type="text"] {
        font-size: 14px;
        height: 45px;
        text-indent: 25px;
    }

    div.VH_mainWrapp .left .towWays {
        flex-direction: column;
        gap: 10px;
    }

    div.VH_mainWrapp .left .btn-login,
    div.VH_mainWrapp .left .btn-google {
        font-size: 15px;
        padding: 10px;
    }

    div.VH_mainWrapp .left .btn-google img {
        width: 16px;
        height: 16px;
    }

    div.VH_mainWrapp .left .create-account {
        font-size: 13px;
        text-align: center;
    }

    div.VH_mainWrapp .left .divider {
        margin: 20px 0;
    }

    div.VH_mainWrapp .left .form-group span {
        top: 38px;
    }
}

div.heading_VHview {
    margin-bottom: 40px;
}
div.OTP-Box {
    display: flex;
    flex-flow: column;
    max-width: 340px;
    text-align: left;
    margin: 0 auto;
    gap: 20px;
    padding-bottom: 25px;
}
div.OTP-Box .otp-input {
    width: 50px;
    height: 50px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    outline: none;
}
div.OTP-Box .otp-input:focus {
    border-color: #0099cc;
    box-shadow: 0 0 0 2px rgba(0, 153, 204, 0.2);
}
div.OTP-Box h3 {
    color: #2399B4;
    font-weight: 600;
    font-size: 16px;
}
div.VH_mainWrapp .left form.create-account-reg .form-group {
    margin-bottom: 10px;
}
div.VH_mainWrapp.register {
    min-height: 900px;
}
div.VH_mainWrapp.register .right {
    height: 100%;
}
div.VH_mainWrapp.register .mainBox_vhForm {
  position: fixed;
  max-width: 500px;
  bottom: 10px;
}

@media screen and (max-width: 768px) {
    div.VH_mainWrapp {
        width: 100%;
        max-width: 100%;
        padding: 15px;

        display: flex;
    flex-direction: column;
    }
}

@media screen and (max-width: 468px) {
    div.VH_mainWrapp{

        width: 100%;

        max-width: 100%;
        display:flex;
        flex-direction:column;
        padding: 15px;
    }
}
/***==========================
    CART PAGE START HERE
==========================***/
div.siteCart {
    width: 100%;
    display: inline-block;
    margin: 80px 0px;
}
div.siteCart h1 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
}
div.siteCart .cart-section {
    display: flex;
    gap: 20px;
}
div.siteCart .products-container {
    background-color: #E7F9FD;
    border-radius: 20px;
    padding: 30px;
    flex: 2;
}
div.siteCart .cart-totals {
    border-radius: 12px;
    flex: 1;
}

div.siteCart .products-header, 
div.siteCart .totals-header {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}
div.siteCart .product-item .left {
    position: relative;
}
div.siteCart .product-item .left .removeItem {
    position: absolute;
    bottom: -35px;
}
div.siteCart .product-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 30px;
}
div.siteCart .product-item:last-of-type{
    margin-bottom: 0px;
}
div.siteCart .product-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}
div.siteCart .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
div.siteCart .product-details {
    flex: 1;
}
div.siteCart .product-name {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 20px;
    color: #000;
}
div.siteCart .product-price {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 24px;
}
div.siteCart .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
    margin-left: 5px;
}
div.siteCart .discount-tag {
    background-color: #2399B4;
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
}
div.siteCart .product-description {
    color: #000;
    font-size: 16px;
    margin: 12px 0;
}
div.siteCart .remove-btn {
    color: #ff4d4d;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 5px 0;
    font-weight: 600;
}
div.siteCart .quantity-control {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
div.siteCart .quantity-btn {
    background-color: #e0e0e0;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.siteCart .quantity-btn:hover {
    background: #2399B4;
    color: #fff;
}
div.siteCart .quantity-input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: none;
    background: none;
    margin: 0 5px;
}
div.siteCart .total-column {
    text-align: right;
    font-weight: 500;
    width: 80px;
    font-size: 20px;
}
div.siteCart .subtotal-row, div.siteCart .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
}

div.siteCart .total-row {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #cce5e8;
}
div.siteCart .checkout-btn {
    background-color: #2399B4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 500;
}
div.siteCart .checkout-btn:hover {
    background-color: #228a9c;
}
div.cartHeadins {
    display: flex;
    justify-content: space-between;
}
div.myCartTotal {
    background: #e7f9fd;
    padding: 30px;
    border-radius: 30px;
}
@media (max-width: 768px) {
    div.siteCart .cart-section {
        flex-direction: column;
    }
}
/***==========================
    CART PAGE START END
==========================***/



/***==========================
    CHECKOUT PAGE START
==========================***/
div.checkoutPage {
    width: 100%;
    display: inline-block;
    margin: 80px 0px;
}
div.checkoutPage h1 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}
div.checkoutPage .checkout-layout {
    display: flex;
    gap: 30px;
}
div.checkoutPage .checkout-layout .left-column {
    width: 65%;
}
div.checkoutPage .checkout-layout .right-column {
    width: 35%;
}
div.checkoutPage .form-section {
    background-color: #E7F9FD;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}
div.checkoutPage .section-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}
div.checkoutPage .section-subtitle {
    font-size: 16px;
    color: #000;
    margin: 10px 0px 25px;
}
div.checkoutPage .form-group {
    margin-bottom: 15px;
}
div.checkoutPage .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
div.checkoutPage label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}
div.checkoutPage input, div.checkoutPage select {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    text-indent: 15px;
    font-weight: 400;
    outline: none;
}
div.checkoutPage input::placeholder {
    color: #aaa;
}
div.checkoutPage .card-input {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 0px 10px;
    background-color: #fff;
}
div.checkoutPage .card-icon {
    margin-right: 10px;
}
div.checkoutPage .card-number-mask {
    color: #000;
    font-size: 14px;
    border: 0;
    height: 50px;
    outline: none;
}
div.checkoutPage .order-summary {
    background-color: #e7f9fd;
    border-radius: 20px;
    padding: 30px;
}
div.checkoutPage .summary-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
div.checkoutPage .summary-header h2 {
    font-size: 24px;
    font-weight: 500;
}
div.checkoutPage .summary-total {
    font-weight: 500;
    font-size: 20px;
}
div.checkoutPage .product-list {
    margin-bottom: 20px;
}
div.checkoutPage .product-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
div.checkoutPage .product-image {
    width: 110px;
    height: 110px;
    border-radius: 5px;
    margin-right: 15px;
    object-fit: cover;
}
div.checkoutPage .product-details {
    flex-grow: 1;
}
div.checkoutPage .product-name {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}
div.checkoutPage .product-price {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
div.checkoutPage .discount-tag {
    background-color: #2399B4;
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
}
div.checkoutPage .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
    margin-left: 5px;
}
div.checkoutPage .summary-totals {
    margin-top: 20px;
}
div.checkoutPage .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
}
div.checkoutPage .total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
}
div.checkoutPage .place-order-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #2399B4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
}
div.checkoutPage .place-order-btn:hover {
    background-color: #1c94b0;
}

@media (max-width: 992px) {
  div.checkoutPage .checkout-layout {
    flex-direction: column;
  }

  div.checkoutPage .checkout-layout .left-column,
  div.checkoutPage .checkout-layout .right-column {
    width: 100%;
  }

  div.checkoutPage .form-row {
    grid-template-columns: 1fr;
  }

  div.checkoutPage .product-item {
    flex-direction: column;
    align-items: flex-start;
  }

  div.checkoutPage .product-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  div.checkoutPage .product-details {
    width: 100%;
  }

  div.checkoutPage .product-price {
    font-size: 20px;
  }

  div.checkoutPage .summary-header h2 {
    font-size: 20px;
  }

  div.checkoutPage .section-title {
    font-size: 20px;
  }

  div.checkoutPage .place-order-btn {
    font-size: 15px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  div.checkoutPage {
    margin: 40px 0px;
  }

  div.checkoutPage h1 {
    font-size: 26px;
    text-align: center;
  }

  div.checkoutPage .section-title {
    font-size: 18px;
  }

  div.checkoutPage .section-subtitle {
    font-size: 14px;
  }

  div.checkoutPage input, 
  div.checkoutPage select {
    height: 36px;
    font-size: 13px;
  }

  div.checkoutPage .card-number-mask {
    height: 40px;
    font-size: 13px;
  }

  div.checkoutPage .product-name {
    font-size: 16px;
  }

  div.checkoutPage .product-price {
    font-size: 18px;
  }

  div.checkoutPage .summary-row,
  div.checkoutPage .total-row {
    font-size: 16px;
  }

  div.checkoutPage .place-order-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/***==========================
    CHECKOUT PAGE END
==========================***/



/***==============================
    START PRODUCT DETAIL PAGE
===============================***/
div.productDetailInfo {
    width: 100%;
    display: inline-block;
    margin: 20px 0px 70px;
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #000;
}
.breadcrumb a {
    text-decoration: none;
    color: #000;
    margin: 0px 12px;
}
.breadcrumb a.active {
    color: #2399B4;
}
div.product-detail {
    width: 100%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
}
div.product-detail .product-gallery {
    width: 50%;
}
div.product-gallery .main-slider {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 10px;
}
div.product-gallery .main-slider .slick-slide {
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.product-gallery .main-slider .slick-slide img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
}
div.product-gallery .thumbnail-slider .slide {
    height: 70px;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 5px;
}
div.product-gallery .thumbnail-slider .slide img {
    width: 100%;
    height: 100%;
}
div.product-gallery .thumbnail-slider {
    max-width: calc(100% - 200px);
    margin: 0 auto;
}
div.product-detail .product-info {
    width: 50%;
}
div.product-detail .product-title {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}
div.product-detail .price-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
div.product-detail .current-price {
    font-size: 28px;
    font-weight: 600;
    margin-right: 10px;
}
div.product-detail .original-price {
    font-size: 16px;
    color: #888;
    text-decoration: line-through;
    margin-right: 10px;
}
div.product-detail .discount-badge {
    background-color: #2399B4;
    color: white;
    padding: 3px 8px;
    font-size: 14px;
    border-radius: 90px;
}
div.product-detail .product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
    font-weight: 300;
}
div.product-detail .form-group {
    margin-bottom: 15px;
}
div.product-detail .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}
div.product-detail .form-control {
    width: 100%;
    padding: 12px 0px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
    background-color: white;
    cursor: pointer;
    text-indent: 15px
}
div.product-detail .form-control-icon {
    position: relative;
}
.form-control-icon .form-control {
    padding-right: 40px;
}
div.product-detail .btn {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}
div.product-detail .btn-primary {
    background-color: #2399B4;
    color: white;
    margin-bottom: 10px;
}
div.product-detail .btn-primary:hover {
    background-color: #1c94b0;
}
div.product-detail .btn-secondary {
    background-color: #EE3539;
    color: white;
}
div.product-detail .btn-secondary:hover {
    background-color: #d32f2f;
}
div.product-detail .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}
div.product-detail .feature {
    background-color: #e8f7fa;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
}
div.product-detail .feature-icon {
    margin-right: 10px;
    color: #27a9c8;
    width: 24px;
    height: 24px;
}
div.product-detail .feature-text {
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}
div.product-detail .package-title {
    font-size: 16px;
    font-weight: 500;
    margin: 30px 0 10px;
}
div.productTabs {
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: unset;
    overflow: hidden;
    margin: 40px 0px;
}  
div.productTabs .tabs {
    display: flex;
    background-color: #fff;
    border-bottom: 3px solid #ddd;
}   
div.productTabs .tab {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #000;
    border-bottom: 3px solid transparent;
}   
div.productTabs .tab.active {
    color: #2399B4;
    border-bottom: 3px solid #2399B4;
    background-color: #fff;
}    
div.productTabs .tab-content {
    display: none;
    padding: 20px;
}  
div.productTabs .tab-content.active {
    display: block;
}   
div.productTabs ul {
    list-style-type: none;
    margin-left: 20px;
}   
div.productTabs li {
    margin-bottom: 10px;
    position: relative;
} 
div.productTabs li::before {
    content: "•";
    color: #2399b4;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
} 
div.productTabs .sub-item {
    margin-left: 20px;
    color: #666;
}
div.mySimmilarExp {
    width: 100%;
    display: inline-block;
}
div.mySimmilarExp h1 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    div.mySimmilarExp h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
        margin-bottom: 15px; /* Adjust margin if necessary */
    }
}

/* Additional media queries as needed for other screen sizes */
@media (max-width: 480px) {
    div.mySimmilarExp h1 {
        font-size: 22px; /* Further adjust for smaller screens */
        margin-bottom: 10px; /* Adjust margin as needed */
    }
}


.experience-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 15px 10px;
    transition: transform 0.3s ease;
    border: 1px solid #ccc;
    padding: 12px;
}       
.experience-card:hover {
    transform: scale(1.05);
}
.experience-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.experience-details {
    padding: 15px 0px;
    text-align: center;
}
.experience-details .atLocation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}    
.experience-details h3 {
    margin-bottom: 6px;
    color: #000;
    text-align: left;
}
.experience-price {
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
}  
.experience-rating {
    color: #2399B4;
    margin-bottom: 16px;
    text-align: left;
    font-size: 20px;
}
.experience-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-flow: column;
}
.experience-actions .btn {
    display: inline-block;
    padding: 10px 0px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}
.experience-actions .btn-favorite {
    background-color: #fff;
    color: #EE3539;
    border: 1px solid #EE3539;
}
.experience-actions .btn-book {
    background-color: #fff;
    color: #2399B4;
    border: none;
    border: 1px solid #2399B4;
}
.experience-actions .btn-favorite:hover {
    background-color: #EE3539;
    color: #fff;
}
.experience-actions .btn-book:hover {
    background-color: #2399B4;
    color: #fff;
}
div.otp-container {
    display: flex;
    gap: 7px;
}
div.otp-container .otp-input {
    text-align: center;
    text-indent: 0 !important;
}
.faq-section {
    max-width: 1280px;
    margin: 0px auto 80px;
    padding: 0 15px;
}
.section-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 500;
}
.section-description {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 30px;
    color: #000;
    line-height: 1.5;
    font-size: 16px;
}
.accordion {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}
.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    font-weight: 500;
    color: #333;
    transition: background-color 0.3s;
}
.accordion-header:hover {
    background-color: #f9f9f9;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s;
}
.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordion-icon::before {
    width: 12px;
    height: 2px;
}
.accordion-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s;
}
.accordion.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}
.accordion.active .accordion-content {
    padding: 15px 20px;
    max-height: 500px;
}
.accordion-text {
    color: #000;
    line-height: 1.6;
    font-size: 16px;
}
/* Special style for the active accordion */
.accordion.active .accordion-header {
    border-bottom: 1px solid #000;
}

/* Tablet view */
@media (max-width: 992px) {
  div.product-detail {
    flex-direction: column;
  }

  div.product-detail .product-gallery,
  div.product-detail .product-info {
    width: 100%;
  }

  div.product-gallery .main-slider {
    height: 400px;
  }

  div.product-gallery .main-slider .slick-slide img {
    max-height: 400px;
  }

  div.product-detail .features {
    grid-template-columns: 1fr;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .breadcrumb a {
    margin: 0 5px;
  }

  div.product-gallery .main-slider {
    height: 300px;
  }

  div.product-gallery .main-slider .slick-slide img {
    max-height: 300px;
  }

  div.product-gallery .thumbnail-slider {
    max-width: 100%;
    flex-wrap: wrap;
  }

  div.product-detail .product-title {
    font-size: 24px;
  }

  div.product-detail .current-price {
    font-size: 22px;
  }

  div.product-detail .product-description {
    font-size: 14px;
  }

  div.productTabs .tabs {
    flex-direction: column;
  }

  div.productTabs .tab {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  div.productTabs .tab-content {
    padding: 15px;
  }

  .experience-card {
    margin: 10px 0;
  }

  .experience-card img {
    height: 180px;
  }

  .experience-details h3 {
    font-size: 16px;
  }

  .experience-actions {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 14px;
  }

  .accordion-header {
    padding: 12px 15px;
    font-size: 15px;
  }

  .accordion-content {
    padding: 10px 15px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  div.product-gallery .main-slider {
    height: 220px;
  }

  div.product-gallery .main-slider .slick-slide img {
    max-height: 220px;
  }

  div.product-detail .btn {
    padding: 12px;
    font-size: 14px;
  }

  .experience-details .atLocation {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .experience-rating {
    font-size: 16px;
  }

  .experience-actions .btn {
    font-size: 14px;
  }

  .accordion-text {
    font-size: 14px;
  }
}

/***==============================
    END PRODUCT DETAIL PAGE
===============================***/



/***==============================
    HOME PAGE START
===============================***/
/**HOME PAGE**/
/* ---------- Default Desktop View ---------- */
section#homeBanner {
    background: #E7F9FD;
}

section#homeBanner .bgImage {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    width: 100%;
    padding-top: 50px;
}

section#homeBanner .bgImage .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section#homeBanner .bgImage .mainBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bgImage .mainBox .left,
.bgImage .mainBox .right {
    width: 25%;
    text-align: center;
}

.bgImage .mainBox .center {
    width: 40%;
    text-align: center;
}

.bgImage .mainBox .center h3 {
    color: #000;
    font-weight: 300;
    font-size: 32px;
    margin: 5px 0;
}

.bgImage .mainBox .center h2 {
    font-size: 50px;
    color: #2399B4;
    margin: 5px 0;
}


@media (max-width: 768px) {
  section#homeBanner .bgImage .mainBox {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mainBox .left img,
  .mainBox .right img {
    width: 80px;
    height: auto;
  }


.bgImage .mainBox .center h3 {
    color: #000;
    font-weight: 300;
    font-size: 18px;
    margin: 5px 0;
}

  .bgImage .mainBox .center h2 {
    color: #000;
    font-weight: 300;
    font-size: 30px;
    margin: 5px 0;
}
}

@media (max-width: 468px){
    

.bgImage .mainBox .center h3 {
    color: #000;
    font-weight: 300;
    font-size: 13px;
    margin: 5px 0;
}

  .bgImage .mainBox .center h2 {
    color: #000;
    font-weight: 300;
    font-size: 22px;
    margin: 5px 0;
}
}
section#homeCategories .category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 170px;
}
section#homeCategories .category-label {
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-right: 10px;
}
section#homeCategories .category-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
section#homeCategories .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}
section#homeCategories .category-item:hover {
    transform: translateY(-5px);
}
section#homeCategories .category-icon {
    width: 80px;
    height: 80px;
    background-color: #e6f4f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
section#homeCategories .category-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
section#homeCategories .category-name {
    font-size: 16px;
    color: #000;
    margin-top: 8px;
    max-width: 150px;
    text-align: center;
    font-weight: 500;
}
section#homeCategories .category-item a {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
section#homeCategories .category-section {
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
}
section#homeCategories .category-section .category-items {
    width: calc(100% - 170px);
}
section#homeCategories {
    padding: 30px 0px;
}

/* =================== DESKTOP =================== */
/* (already added by you, keeping as is) */


/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  section#homeCategories .category-section {
    flex-direction: column;
    align-items: center;
  }

  section#homeCategories .category-header {
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }

  section#homeCategories .category-items {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  section#homeCategories .category-item {
    width: 45%; /* 2 items per row on mobile */
  }

  section#homeCategories .category-name {
    font-size: 14px;
    max-width: 100%;
  }

  section#homeCategories .category-label {
    font-size: 18px;
  }

  section#homeCategories .category-icon {
    width: 60px;
    height: 60px;
  }

  section#homeCategories .category-icon img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  section#homeCategories .category-item {
    width: 100%; /* 1 item per row for extra small screens */
  }
}

section#occasionExtra .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 30px 0;
}
section#occasionExtra .occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
section#occasionExtra .occasion-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
section#occasionExtra .occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
section#occasionExtra .occasion-image {
    width: 100%;
    /*height: auto; */
	height: 280px;
    object-fit: cover;
}
section#occasionExtra .occasion-name {
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
section#occasionExtra .occasions-row {
    margin-bottom: 30px;
}
section#occasionExtra .occasions-grid a {
    display: inline-block;
    text-decoration: none;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid #e7e5e5;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
    section#occasionExtra .occasions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    section#occasionExtra .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    section#occasionExtra .occasions-grid {
        grid-template-columns: 1fr;
    }
}
section#birthDaySec {
    width: 100%;
    display: inline-block;
    margin-top: 15px;
}
section#birthDaySec .mainImage {
    height: 600px;
    background-size: cover !important;
    background-position: 50% 0 !important;
    background-repeat: no-repeat !important;
}
section#birthDaySec .mainImage .container {
    height: 100%;
}
section#birthDaySec .mainImage .textBox {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 16%;
}
section#birthDaySec .mainImage .textBox h3 {
    font-size: 30px;
    font-weight: 500;
}
section#birthDaySec .mainImage .textBox h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 800;
}

@media (max-width: 768px) {
    section#birthDaySec .mainImage {
        height: 200px !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section#birthDaySec .mainImage .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section#birthDaySec .mainImage .textBox {
        margin-left: 0 !important;
        text-align: center;
        height: auto;
    }

    section#birthDaySec .mainImage .textBox h3 {
        font-size: 16px !important;
        font-weight: 500;
        margin: 4px 0;
    }

    section#birthDaySec .mainImage .textBox h2 {
        font-size: 22px !important;
        font-weight: 700;
        margin: 4px 0;
    }
}

@media (max-width: 468px) {
     section#birthDaySec .mainImage .textBox h3 {
        font-size: 13px !important;
        font-weight: 500;
        margin: 4px 0;
    }

    section#birthDaySec .mainImage .textBox h2 {
        font-size:18px !important;
        font-weight: 700;
        margin: 4px 0;
    }
}
div.mySimmilarExp .mainItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 11px;
}
div.mySimmilarExp .mainItem a {
    text-decoration: none;
    color: #EE3539;
    border: 1px solid #EE3539;
    padding: 6px 28px;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
}
div.mySimmilarExp .mainItem a:hover {
    background: #EE3539;
    color: #fff;
}
section#homeSlidebirthDay {
    margin: 50px 0px;
}
section#addGlamour {
    width: 100%;
    display: inline-block;
    height: 500px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
section#addGlamour .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section#addGlamour h3 {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
}
section#addGlamour h2 {
    color: #fff;
    text-align: center;
    font-size: 75px;
}
section#addGlamour .textBox {
    text-align: center;
}
section#addGlamour .textBox a {
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    margin-top: 25px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
section#addGlamour .textBox a:hover {
    background: #fff;
    color: #000;
}
section.WhyCooseUs {
    width: 100%;
    display: inline-block;
    background: #E7F9FD;
    padding: 80px 0px;
}
section.WhyCooseUs .section-title {
    text-align: center;
    margin-bottom: 10px;
    color: #2399B4;
    font-size: 35px;
    font-weight: 500;
}
section.WhyCooseUs .section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 500;
    color: #000;
}
section.WhyCooseUs .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
section.WhyCooseUs .feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
section.WhyCooseUs .icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.WhyCooseUs .icon-container svg {
    width: 40px;
    height: 40px;
    fill: #2a9cba;
}
section.WhyCooseUs .feature-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}
section.WhyCooseUs .feature-description {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    padding: 0px 30px;
}
@media (max-width: 900px) {
    section.WhyCooseUs .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    section.WhyCooseUs .features-grid {
        grid-template-columns: 1fr;
    }
}
section#getASolution {
    height: 420px;
    width: 100%;
    display: inline-block;
}
section#getASolution .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section#getASolution h3.blue {
  color: #2399B4;
  font-weight: 500;
  font-size: 35px;
}
section#getASolution .textBox {
    text-align: center;
}
section#getASolution h3.black {
  color: #fff;
  font-weight: 500;
  font-size: 35px;
}
section#getASolution .textBox {
  text-align: center;
  margin-top: -80px;
}
section#mainHomeForm {
    width: 100%;
    display: inline-block;
    background: #F2F3F5;
    padding-bottom: 80px;
}
section#mainHomeForm .contact-section {
    margin: 0 auto;
    display: flex;
}
section#mainHomeForm .office-info {
    width: 40%;
    padding: 40px;
    position: relative;
}
section#mainHomeForm .office-info-title {
    color: #2399B4;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
section#mainHomeForm .office-info h2 {
    font-size: 35px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 500;
}
section#mainHomeForm .office-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 60px;
    background-color: #2399B4;
}
section#mainHomeForm .address-details {
    margin-top: 35px;
}
section#mainHomeForm .address-details p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #000;
}
section#mainHomeForm .address-details a {
    color: #333;
    text-decoration: none;
}
section#mainHomeForm .consultation-form {
    width: calc(50% - 80px);
    padding: 40px;
    background: white;
    margin-top: -150px;
    z-index: 12345;
    position: relative;
    border-radius: 20px;
}
section#mainHomeForm .consultation-form h3 {
    color: #2399B4;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}
section#mainHomeForm .consultation-form h2 {
    font-size: 35px;
    margin-bottom: 25px;
    color: #000;
    font-weight: 500;
}
section#mainHomeForm .form-group {
    margin-bottom: 20px;
}
section#mainHomeForm .form-control {
    width: 100%;
    padding: 15px 0px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 16px;
    text-indent: 15px;
    outline: none;
}
section#mainHomeForm textarea.form-control {
    height: 120px;
    resize: none;
}
section#mainHomeForm .submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #EE3539;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
section#mainHomeForm .submit-btn:hover {
    background-color: #e62e3e;
}
section#mainHomeForm .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url('https://via.placeholder.com/800x200');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.7;
}


@media screen and (max-width: 992px) {
  section#mainHomeForm .contact-section {
    flex-direction: column;
    gap: 30px;
  }

  section#mainHomeForm .office-info,
  section#mainHomeForm .consultation-form {
    width: 100%;
    padding: 20px;
  }

  section#mainHomeForm .consultation-form {
    margin-top: 0;
    border-radius: 15px;
  }

  section#mainHomeForm .consultation-form h2,
  section#mainHomeForm .office-info h2 {
    font-size: 28px;
  }

  section#mainHomeForm .consultation-form h3,
  section#mainHomeForm .office-info-title {
    font-size: 18px;
  }

  section#mainHomeForm .background-image {
    height: 120px;
  }
}

@media screen and (max-width: 576px) {
  section#mainHomeForm .form-control {
    font-size: 14px;
    padding: 12px 0px;
  }

  section#mainHomeForm .submit-btn {
    font-size: 14px;
    padding: 10px;
  }

  section#mainHomeForm .consultation-form,
  section#mainHomeForm .office-info {
    padding: 15px;
  }
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .office-info, .consultation-form {
        width: 100%;
    }
}
section#homeFaqItem .faq-container {
    margin: 0 auto;
    padding: 40px 20px;
}
section#homeFaqItem .faq-title {
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 30px;
}
section#homeFaqItem .faq-accordion {
    list-style: none;
}
section#homeFaqItem .faq-item {
    background: #fff;
    border: 1px solid #2399B4;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}
section#homeFaqItem .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}
section#homeFaqItem .faq-question:hover {
    background-color: #f7f7f7;
}
section#homeFaqItem .faq-question:focus {
    outline: none;
}
section#homeFaqItem .question-text {
    display: flex;
    align-items: center;
}
section#homeFaqItem .question-text span {
    font-weight: bold;
    margin-right: 10px;
}
section#homeFaqItem .arrow {
    transition: transform 0.3s ease;
}
section#homeFaqItem .arrow svg {
    width: 20px;
    height: 20px;
    fill: #333;
}
section#homeFaqItem .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
section#homeFaqItem .faq-answer p {
    padding-bottom: 20px;
    color: #5B5B5B;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}
section#homeFaqItem .faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 0;
    padding-bottom: 20px;
}

section#homeFaqItem .faq-item.active .arrow {
    transform: rotate(180deg);
}
/***==============================
    HOME PAGE END
===============================***/
div#modalOverlay.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
div#modalOverlay .modal {
    background-color: white;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
div#modalOverlay .modal-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
div#modalOverlay .modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
div#modalOverlay .close-btn {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #000;
    padding: 0;
}
div#modalOverlay .modal-body {
    padding: 15px;
}
/* Item styles */
div#modalOverlay .item {
    display: flex;
    padding: 15px;
    border: 1px solid #ccc;
    align-items: center;
    margin-bottom: 13px;
    border-radius: 5px;
    position: relative;
}
div#modalOverlay .item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
div#modalOverlay .item-image img {
    max-width: 100%;
    max-height: 100%;
}
div#modalOverlay .item-details {
    flex-grow: 1;
}
div#modalOverlay .item-title {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 16px;
    color: #000;
}
div#modalOverlay .item-description {
    color: #000;
    font-size: 14px;
    font-weight: 400;
}
div#modalOverlay .item-price {
    font-weight: 500;
    margin-left: 10px;
    min-width: 60px;
    text-align: right;
    position: absolute;
    bottom: 7px;
    right: 20px;
}
div#modalOverlay .quantity-control {
    display: flex;
    align-items: center;
    margin: 0 2px;
}
div#modalOverlay .quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}
div#modalOverlay .quantity-btn:hover {  
    background: #2399B4;
    border: 0px solid #ddd;
    color: #fff;
}
div#modalOverlay .quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    font-size: 16px;
    margin: 0 5px;
}
/* Footer button */
div#modalOverlay .modal-footer {
    padding: 15px;
    text-align: center;
}
div#modalOverlay .confirm-btn {
    background-color: #2399B4;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}