/* Top Bar */
.topbar {
    background-color: #1A2A49;
    color: #fff;
    font-size: 14px;
    padding: 5px 0;
}
.topbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 4px;
}
.social-icon i {
    color: #1A2A49;
}
.social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #1A2A49;
    margin-left: 5px;
    font-size: 14px;
    transition: 0.3s;
}
.social-icon:hover {
    opacity: 0.8;
}
/* Main Navbar */
.navbar-custom {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.navbar-custom .nav-link {
    color: #1A2A49 !important;
    font-weight: 500;
    margin-left: 15px;
    transition: 0.3s;
}
.navbar-custom .nav-link:hover {
    color: #D7A543 !important;
}
.whatsapp-btn {
    background-color: #25D366;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.whatsapp-btn:hover {
    background-color: #20b358;
    color: #fff !important;
}
/* Custom Arrows */
.custom-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: 0.3s;
    top: 50% !important;
    transform: translateY(-50%);
}
.custom-arrow:hover {
    opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 60% 60%;
    filter: invert(1);
}
.carousel-control-prev {
    left: 40px;
}
.carousel-control-next {
    right: 40px;
}
/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.product-card img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}
.product-card h4 {
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
.product-card:hover img {
    transform: scale(1.1);
}
.product-card:hover .overlay {
    background: rgba(0, 0, 0, 0.65);
}
.about-section {
    background-color: #f4f6fa;
}
.about-heading {
    color: #1A2A49;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-subheading {
    color: #1A2A49;
    margin-bottom: 20px;
}
.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}
.about-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.btn-custom {
    background-color: #1A2A49;
    color: #fff;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-custom:hover {
    background-color: #D7A543;
    color: #fff;
}
.products-section {
    background: url("../image/productbackimage.png") no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.products-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.product-box {
    background: #fff;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.product-box img {
    margin-bottom: 15px;
}
.product-box h5 {
    font-size: 18px;
    padding-bottom: 15px;
    font-weight: 600;
    color: #1A2A49;
    margin: 0;
}
.btn-custom {
    background-color: #1A2A49;
    color: #fff;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-custom:hover {
    background-color: #D7A543;
    color: #fff;
}
/* Testimonial Card */
.custom-testimonial-card {
    background: #DFA84B;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-height: 300px;
    display: flex;
    border: 1px solid #eee;
    flex-direction: column;
    justify-content: space-between;
}
/* Image */
.custom-testimonial-img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/* Texts */
.custom-testimonial-text {
    font-style: italic;
    font-size: 17px;
    color: #fff;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.custom-testimonial-name {
    font-weight: bold;
    margin-top: 10px;
    color: #fff;
}
.custom-testimonial-location {
    color: #fff;
}
/* Arrows */
.custom-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.carousel-control-prev.custom-arrow-btn {
    left: -70px;
}
.carousel-control-next.custom-arrow-btn {
    right: -70px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0) brightness(0) saturate(100%);
    width: 20px;
    height: 20px;
}
/* Responsive */
@media (max-width: 991px) {
    .carousel-item .col-md-4.d-none.d-md-block {
        display: none !important;
    }
}
.footer-section {
    background-color: #1A2A49;
}
.footer-title {
    font-weight: 700;
    color: #D7A543;
    margin-bottom: 15px;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #D7A543;
}
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #D7A543;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #ddd;
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), #1A2A49;
    padding-top: 50px;
    padding-bottom: 40px;
}
.page-header h1 {
    color: #fff;
    font-size: 2rem;
}
.page-header .breadcrumb {
    background: transparent;
}
.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
.page-header .breadcrumb-item.active {
    color: #f1f1f1;
}
.list-unstyled li a {
    color: #000;
    text-decoration: none;
}
.footer-links li a {
    color: #fff !important;
    text-decoration: none;
}
.contact-box {
    background: #fff;
}
.contact-box h3 {
    font-weight: 600;
    color: #1A2A49;
}
.social-icons a {
    transition: 0.3s;
}
.social-icons a:hover {
    color: #E4B24E;
}
/* Slider CSS */
.slider-wrapper {
    overflow: hidden;
    position: relative;
}
.slider-container {
    overflow: hidden;
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider-item {
    flex: 0 0 calc(33.333% - 10px);
    margin: 0 5px;
}
@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
    }
}
/* Arrow Buttons */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}
/* Properly visible arrows */
.left-arrow {
    left: 10px;
}
.right-arrow {
    right: 10px;
}

/* === Mobile Responsive CSS === */

@media (max-width: 767.98px) {
    /* Logo adjustments for mobile */
    .navbar-brand img {
        height: 40px; 
        width: auto;
    }

    /* Slider icons size and position */
    .custom-arrow,
    .custom-arrow-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev,
    .carousel-arrow-btn-prev {
        left: 5px; 
    }
    
    .carousel-control-next,
    .carousel-arrow-btn-next {
        right: 5px; 
    }

    /* Testimonial slider icons position */
    .carousel-control-prev.custom-arrow-btn {
        left: 5px;
    }
    

    .carousel-control-next.custom-arrow-btn {
        right: 5px;
    }

    /* Padding for all sections */
    section.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Product button fix for mobile */
    .my-btn-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    
    .my-btn-box a {
        width: 100%;
        text-align: center;
        margin: 0 !important;
        float: none;
    }

      /* Footer mobile response */
    @media (max-width: 767.98px) {
  
    .footer-section .container .row > div {
        text-align: center;
    }
}
    @media (max-width: 767.98px) {
    .topbar {
        display: none;
    }
}
}