* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background-color: #f7f7f7;
  color: #222;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}




/* ========================== css ============================ */

/* --- 1. Variables based on Createch Logo --- */
        :root {
            --primary-blue: #1a55b8; 
            --accent-yellow: #fecb34; 
            --text-white: #ffffff;
            --text-dark: #333333;
            --light-bg: #f8f9fa;




             --primary-blue: #1d4ed8;            
            --text-dark: #1a2433;
            --text-muted: #666;
            --light-bg: #fff;


            --primary-blue: #1d4ed8;
            --text-gray: #666;

             --primary-blue: #1d4ed8;            
            --text-dark: #1a2433;
            --text-muted: #666;
            --light-bg: #f4f7fc;

             --primary-blue: #1d4ed8;
            --brand-orange: #ff5a2c;
            --text-dark: #1a2433;
            --bg-light: #f8f9fa;

            --primary-blue: #1d4ed8;
            --brand-orange: #ff5a2c;
            --footer-bg: #0f172a; 
            --text-light: #cbd5e1; 


        }

              
        .top-bar {
            background-color: #fff;
            border-bottom: 1px solid #eee;
            padding: 5px 0;
            font-size: 14px;
            color: #666;
        }

      
        .main-header {
            background-color: var(--primary-blue);
            padding: 15px 0;
            color: var(--text-white);
        }

        .brand-logo img {
            max-height: 60px; 
        }

        /* Search Bar Styling */
        .search-container .form-control {
            border-radius: 4px 0 0 4px;
            border: none;
            padding: 10px;
        }
        .search-container .btn-search {
            background-color: var(--accent-yellow);
            color: var(--text-dark);
            font-weight: bold;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 0 20px;
        }
        .search-container .btn-search:hover {
            background-color: #e0b12d; 
        }

        /* Header Icons */
        .header-icon {
            color: var(--text-white);
            font-size: 20px;
            margin-left: 15px;
            text-decoration: none;
        }
        .header-contact {
            display: flex;
            align-items: center;
            color: var(--text-white);
        }

        /* --- 4. Navigation Bar & Mega Menu --- */
        .navbar-main {
            background-color: #0d6efd;
            background: linear-gradient(to bottom, #1a55b8, #154494); 
            padding: 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .navbar-nav .nav-link {
            color: var(--text-white) !important;
            font-weight: 600;
            padding: 15px 20px !important;
            text-transform: uppercase;
            font-size: 14px;
            transition: all 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-item.active .nav-link {
            background-color: rgba(255,255,255,0.1);
            color: var(--accent-yellow) !important;
        }


        #mobileMenu .dropdown-menu.show {
            display: block !important;
        }



        /* --- Desktop Hover Logic (Only for lg screens) --- */
        @media (min-width: 992px) {
            
            .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
                display: block;
                margin-top: 0; 
                animation: fadeIn 0.3s ease-in-out;
            }

            /* Standard Dropdown (Shop) */
            .dropdown-menu {
                border-radius: 0;
                border: none;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            /* Mega Menu Styling */
            .has-megamenu {
                position: static; 
            }
            
            .megamenu {
                left: 0;
                right: 0;
                width: 100%;
                padding: 20px;
                margin-top: 0;
                border-top: 3px solid var(--accent-yellow); 
            }
        }

       
        .megamenu-title {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid var(--accent-yellow);
            display: inline-block;
        }

        .megamenu-list {
            list-style: none;
            padding: 0;
        }

        .megamenu-list li a {
            color: #555;
            text-decoration: none;
            display: block;
            padding: 5px 0;
            font-size: 14px;
            transition: color 0.2s;
        }

        .megamenu-list li a:hover {
            color: var(--primary-blue);
            padding-left: 5px; 
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

     
        @media (max-width: 991px) {
            .navbar-main {
                display: none; 
            }
            
           
            .mobile-toggle-btn {
                background: transparent;
                border: none;
                color: white;
                font-size: 24px;
            }

            .offcanvas-header {
                background-color: var(--primary-blue);
                color: white;
            }
            
            .btn-close {
                filter: invert(1); 
            }

            .offcanvas-body .nav-link {
                color: #333 !important;
                border-bottom: 1px solid #eee;
                padding: 10px 0 !important;
            }

            .dropdown-menu {
                border: none;
                background-color: #f8f9fa;
                padding-left: 20px;
            }
        }


/* =============================== banner Crusal section css========================== */
/* Main container */
.banner-container {
    display: flex;
    gap: 0.7rem;
    height: 500px;
}

/* Carousel left */
.banner-carousel {
    flex: 0 0 75%;
    height: 100%;
}

.banner-carousel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*@media (max-width: 768px) {*/
/*            .carousel-inner img {*/
/*                height: 100% !important;  */
/*            }*/
/* Side images container */
.side-images {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
}

/* Image wrapper */
.img-box {
    flex: 1;
    background: #fff;
    padding: 0.5rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Actual image */
.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* ---- Sea Wave Corner Animation ---- */

/* Wave 1 - top-left */
.img-box::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle,rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.5) 70%, transparent 85%);
    transform: scale(0);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.5s ease;
}

/* Wave 2 - bottom-right */
.img-box::after {
    content: "";
    position: absolute;
    bottom: -60%;
    right: -60%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle,rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.5) 70%, transparent 85%);
    transform: scale(0);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.5s ease;
}

/* Hover animation triggers both waves */
.img-box:hover::before {
    animation: waveOne 0.7s forwards;
}

.img-box:hover::after {
    animation: waveTwo 0.7s forwards;
}

/* Zoom-in animation */
.img-box:hover img {
    transform: scale(1.08);
}

/* Keyframes */
@keyframes waveOne {
    0% {
        transform: scale(0);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes waveTwo {
    0% {
        transform: scale(0);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .banner-container {
        flex-direction: column;
        height: auto;
    }

    .banner-carousel {
        flex: 100%;
        height: 230px;
    }

    .side-images {
        flex-direction: row;
        gap: 0.7rem;
        height: auto;
    }

    .img-box {
        flex: 1 1 50%;
        height: 150px;
    }

    
}





/* ======================================= feature section css============================== */
.features-section {
            background-color: #fff; 
            border-bottom: 1px solid #eee; 
        }
        
       
        .feature-icon-wrap i {
            color: #999; 
            transition: 0.3s ease;
            color: var(--primary-blue);
        }
        
       
        .feature-item:hover .feature-icon-wrap i {
            color: var(--accent-yellow);
            transform: translateY(-3px);
        }

      
@media (max-width: 576px) {
    .feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .feature-icon-wrap {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .feature-icon-wrap i {
        margin: 0 auto;
    }
}





/* ================================================product section css ============================================ */


        /* --- HEADER & TABS --- */
        .section-header {
            border-bottom: 2px solid #eee;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }

        .tab-btn {
            background: none;
            border: none;
            font-weight: 700;
            color: #aaa;
            text-transform: uppercase;
            margin-right: 20px;
            padding-bottom: 10px;
            position: relative;
            cursor: pointer;
            transition: 0.3s;
        }

        .tab-btn.active {
            color: #333;
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-blue);
        }

        /* --- CAROUSEL CONTAINER (The Track) --- */
        .carousel-wrapper {
            position: relative;
            overflow: hidden; /* Hide scrollbar visuals */
            padding: 10px 0;
        }

        .product-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth; /* Smooth scrolling for buttons */
            cursor: grab;
            /* Hide Scrollbar */
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }

        .product-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }

        .product-container.active {
            cursor: grabbing;
            scroll-behavior: auto; /* Remove smooth scroll while dragging for instant feel */
        }

        /* --- PRODUCT CARD --- */
        .custom-card {
            /* Responsive Widths using CSS flex-basis */
            flex: 0 0 100%; /* Mobile: 1 item full width */
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            transition: 0.3s;
            position: relative;
            user-select: none; /* Text select na ho drag karte waqt */
        }

        @media (min-width: 576px) { .custom-card { flex: 0 0 calc(50% - 10px); } } /* Tablet: 2 items */
        @media (min-width: 992px) { .custom-card { flex: 0 0 calc(25% - 15px); } } /* Desktop: 4 items */
        @media (min-width: 1200px) { .custom-card { flex: 0 0 calc(20% - 16px); } } /* Large: 5 items */

        /* Image Zoom Effect */
        .img-box2 {
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        .img-box2 img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            pointer-events: none; /* Drag image ghosting prevent karne ke liye */
        }

        .custom-card:hover .img-box2 img {
            transform: scale(1.1); /* Zoom In */
        }

        /* Badges */
        .badge-tag {
            position: absolute;
            top: 10px;
            padding: 4px 8px;
            font-size: 11px;
            font-weight: bold;
            color: white;
            z-index: 2;
        }
        .bg-new { background-color: #2ecc71; left: 10px; }
        .bg-sale { background-color: #e74c3c; right: 10px; }

        /* Typography */
        .p-title { font-size: 14px; color: #555; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .p-price { font-weight: bold; color: var(--primary-blue); }
        .p-old-price { text-decoration: line-through; color: #bbb; font-size: 13px; margin-right: 5px; }
        
        /* Navigation Arrows */
        .nav-btns button {
            background: transparent;
            border: none;
            font-size: 20px;
            color: #888;
            transition: 0.3s;
        }
        .nav-btns button:hover { color: var(--primary-blue); }

        @media (max-width: 768px) {
            
            .img-box2 {
                /* flex: 1 1 50%; */
                height: 350px;
            }
        }









        /* =============================== About US==================================== */


        
        .about-section {
            padding: 40px 0;
            background-color: #fff;
        }

        /* Subheading (e.g., ABOUT US) */
        .sub-heading {
            color: var(--primary-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }

        /* Main section heading */
        .section-heading {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        /* Icon boxes (Reliable Freight, etc.) */
        .icon-feature-box {
            display: flex;
            align-items: center;
        }
        .icon-feature-box i {
            color: var(--primary-blue);
            margin-right: 15px;
            font-size: 2rem;
        }
        .icon-feature-box h6 {
            margin: 0;
            color: var(--primary-blue);
            font-weight: 700;
        }

        .text-justify{
            text-align: justify;
        }
        /* Custom Checklist */
        .custom-checklist {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        .custom-checklist li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
            color: var(--text-dark);
            font-weight: 500;
        }
        /* Custom checkmark icon using CSS pseudo-element */
        .custom-checklist li::before {
            content: '\f00c'; /* FontAwesome check icon code */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-blue);
        }

        /* Custom Button */
        .btn-brand-orange {
            background-color: var(--primary-blue);
            color: white;
            padding: 12px 35px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .btn-brand-orange:hover {
            background-color: var(--accent-yellow); /* Slightly darker orange on hover */
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 90, 44, 0.3);
        }

        /* --- IMAGE GRID & ZOOM EFFECTS --- */
        
        /* Wrapper needed for overflow:hidden to contain zoom */
        .img-zoom-wrap {
            overflow: hidden;
            border-radius: 8px;
            height: 100%; /* Ensures it fills the column height */
        }

        .img-zoom-wrap img {
            transition: transform 0.5s ease; /* Smooth zoom transition */
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures images cover the area without distorting */
        }

        /* Hover effect: Scale image up */
        .img-zoom-wrap:hover img {
            transform: scale(1.08);
        }

        /* 25+ Years Experience Box */
        .experience-box {
            background-color: var(--primary-blue);
            color: white;
            padding: 30px;
            border-radius: 8px;
            height: 100%; /* Important for alignment with the image next to it */
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: 0.3s;
        }
         .experience-box:hover {
             background-color: var(--accent-yellow);
         }
        .exp-number {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }
        .exp-text {
            font-size: 1.1rem;
            font-weight: 600;
        }






        /* ====================== banner section ================== */


.banner-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
}

/* Responsive Banner Image */
.banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.banner-heading {
    font-size: 32px;
    align-items: center !important;
    color: #0d6efd;
    font-weight: 500;
}


.banner-btn {
  position: absolute;
  bottom: 250px;
  right: 1000px;
  background: #1a55b8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.banner-btn:hover {
  background: #fecb34;
  transform: scale(1.08);
} 

@media (max-width: 991px) {
  .banner-btn {
    bottom: 13%;
    right: 40%;
    padding: 10px 24px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .banner-btn {
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 20px;
    font-size: 8px;
  }
}

@media (max-width: 1024px) {
  .banner-btn {
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    padding: 8px 20px;
    font-size: 8px;
  }
}



/* ============================testimonial section======================= */


        
        .testimonial-section {
            padding: 80px 0;
            background-color: #fff;
            overflow: hidden; 
        }

        
        .sub-title {
            color: var( --primary-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 10px;
        }

        .main-heading {
            color: var(--text-dark);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .desc-text {
            color: var(--text-muted);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .btn-orange {
            background-color: var( --primary-blue);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            transition: 0.3s;
        }
        .btn-orange:hover {
            background-color:var(--accent-yellow);
            color: white;
            transform: translateY(-2px);
        }

       
        .slider-viewport {
            overflow: hidden; 
            width: 100%;
            position: relative;
            padding: 20px 0; 
        }

        .testimonial-track {
            display: flex;
            gap: 25px;
            width: max-content; 
            cursor: grab;
          
        }

        .testimonial-track.active {
            cursor: grabbing;
        }

        /* --- TESTIMONIAL CARD --- */
        .testi-card {
            background: #fff;
            width: 350px; 
            flex-shrink: 0; 
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            border: 1px solid #f0f0f0;
            user-select: none;
        }

        /* Quote Icon Box */
        .quote-icon {
            position: absolute;
            top: 25px;
            right: 25px;
            background-color: var( --primary-blue);
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            border-radius: 4px;
        }

       
        .client-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
        }

        .client-info h6 {
            color: var( --primary-blue);
            font-weight: 700;
            margin: 0;
            font-size: 16px;
        }

        .client-role {
            font-size: 13px;
            color: #888;
            margin-bottom: 5px;
            display: block;
        }

        .rating-stars {
            color: var( --accent-yellow);
            font-size: 12px;
        }

       
        .review-text {
            color: #555;
            font-size: 15px;
            line-height: 1.6;
            border-left: 3px solid var(--accent-yellow); 
            padding-left: 15px;
            margin: 0;
        }

       
        @media (max-width: 991px) {
            .testi-card { width: 300px; }
            .main-heading { font-size: 2rem; }
        }
        @media (max-width: 576px) {
            .testi-card { width: 280px; }
        }


    

         .contact-section {
            padding: 0px 0;
            background-color: var(--bg-light);  
        }

        
        .contact-sub-title {
            color: var(--primary-blue);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        .contact-heading {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        /* Social Icons */
        .social-links {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
        }

        .social-btn {
            width: 45px;
            height: 45px;
            background-color: var(--primary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background-color: var(--accent-yellow);
            transform: translateY(-3px);  
            color: white;
        }

        
        .info-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px; 
            display: flex;
            align-items: flex-start; 
            margin-bottom: 15px;
            transition: 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .info-card:hover {
            transform: translateX(5px); 
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .info-icon {
            color: var(--primary-blue);
            font-size: 24px;
            margin-right: 20px;
            margin-top: 5px;
        }

        .info-content h5 {
            font-weight: 700;
            color: #444;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .info-content p {
            color: #777;
            margin: 0;
            font-size: 15px;
        }

        /* --- RIGHT SIDE: FORM --- */
        .custom-form .form-control {
            background-color: #fff;
            border: 1px solid #eee; 
            padding: 15px;
            border-radius: 4px;
            color: #555;
            font-size: 15px;
            margin-bottom: 20px; 
        }

        
        .custom-form .form-control::placeholder {
            color: var(--primary-blue);
            opacity: 0.8; 
            font-weight: 500;
        }

        .custom-form .form-control:focus {
            border-color: #8ab4f8; 
            box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1); 
            color: var(--text-dark);
        }

         
        .form-check-input:checked {
            background-color: var(--brand-orange);
            border-color: var(--brand-orange);
        }
        
        .form-check-label {
            color: #666;
            font-size: 14px;
        }

    
        .btn-submit {
            background-color: var(--primary-blue);
            color: white;
            width: 100%;
            padding: 15px;
            font-weight: 700;
            border: none;
            border-radius: 4px;
            transition: 0.3s;
            font-size: 16px;
        }

        .btn-submit:hover {
            background-color: var(--accent-yellow);
            box-shadow: 0 5px 15px rgba(255, 90, 44, 0.3);
        }

 
        @media (max-width: 991px) {
            .contact-heading { font-size: 2rem; }
        }



        /* ====================== footer section ========================== */

        

    

        /* --- FOOTER STYLES --- */
        .footer-section {
            background-color: #fff;
            color: #fff;
            position: relative;
            margin-top: auto;
        }

        
        .newsletter-wrap {
            background-color: #1e293b; 
            padding: 40px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .newsletter-heading {
            font-weight: 700;
            margin-bottom: 5px;
        }

        .newsletter-desc {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        .newsletter-form .form-control {
            background: #fff;
            border: none;
            height: 50px;
            padding-left: 20px;
            border-radius: 4px 0 0 4px;  
        }

        .newsletter-form .btn-subscribe {
            background-color: var(--primary-blue);
            color: white;
            font-weight: 600;
            border: none;
            padding: 0 30px;
            height: 50px;
            border-radius: 0 4px 4px 0;  
            transition: 0.3s;
        }

        .newsletter-form .btn-subscribe:hover {
            background-color:var(--accent-yellow);
        }

        /* --- MAIN FOOTER CONTENT --- */
        .main-footer {
            padding: 40px 0 20px 0;
        }

        .footer-logo {
            font-size: 26px;
            font-weight: 800;
            color:var(--primary-blue);
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        
        .footer-logo span { color: var(--accent-yellow); }

        .footer-desc {
            color: black;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 15px;
            text-align: justify;
        }

        .footer-heading {
            color:var(--primary-blue);
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 18px;
            position: relative;
        }

        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 3px;
            background-color: var(--accent-yellow);
        }

        /* Links List */
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;

             max-height: 225px; 
            overflow-y: auto;
        }

        .footer-links::-webkit-scrollbar {
            width: 6px;
        }

        .footer-links::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .footer-links::-webkit-scrollbar-thumb:hover {
            background: #999;
        }






        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color:var(--footer-bg);
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

      
        .footer-links a:hover {
            color: var(--accent-yellow);
            transform: translateX(5px);
        }

        /* Contact Info List */
        .contact-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: var(--footer-bg);
        }

        .contact-icon {
            color: var(--primary-blue);
            margin-right: 15px;
            font-size: 18px;
            margin-top: 3px; 
        }

       
        .bottom-footer {
            background:linear-gradient(to bottom, #1a55b8, #154494);
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 14px;
            color: #94a3b8;
        }

        .designer-link {
            color: var(--bg-light);
            text-decoration: none;
            font-weight: 600;
        }
        
      
        @media (max-width: 767px) {
            .newsletter-wrap { text-align: center; }
            .newsletter-form { margin-top: 15px; }
            .main-footer { padding-top: 40px; }
            .footer-col { margin-bottom: 30px; } 
        }






        /* ============================================================= */

        
.trusted-by-section {
  background-color: #ebf3ff;
  padding: 3rem 0;
}

.trusted-by-section h2 {
  font-family: "Playfair Display", serif;
  color: #004d40;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.logo-scroller-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.logo-scroller-container:hover .logo-scroller-inner {
  animation-play-state: paused;
}

.logo-scroller-inner {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.logo-scroller-inner img {
  max-height: 90px;
  width: auto;
  margin: 0 2.5rem;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (max-width: 767px) {
  .logo-scroller-inner img {
    max-height: 50px;
    width: auto;
    margin: 0 2.5rem;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

.logo-scroller-inner img:hover {
  opacity: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 1rem 0;
  }
  .trusted-by-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .logo-scroller-inner img {
    max-height: 30px;
    margin: 0 1.5rem;
  }
}





/* =======================sitemap section ======================= */


      
        .sitemap-section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-title {
            color: var(--text-dark);
            font-weight: 800;
            margin-bottom: 10px;
            text-align: center;
        }

        .section-desc {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        
        .btn-location {
            display: block;
            width: 100%;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            color: var(--text-dark);
            border: 1px solid #e2e8f0; 
            border-radius: 6px;
            background-color: white;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: color 0.4s ease-in-out, border-color 0.4s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

      
        .btn-location::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0; 
            bottom: 0;
            width: 0%; 
            background-color: var(--primary-blue); 
            z-index: -1; 
            transition: width 0.4s ease-in-out; 
        }

       
        .btn-location:hover {
            color: white; 
            border-color: var(--primary-blue);
            box-shadow: 0 5px 15px rgba(29, 78, 216, 0.2);
        }

        .btn-location:hover::before {
            width: 100%;
        }

        
        .btn-location i {
            margin-right: 8px;
            color: var(--accent-yellow);
            transition: color 0.4s;
        }

        .btn-location:hover i {
            color: white;
        }

        
        .row-gap-custom {
            --bs-gutter-y: 1.5rem; 
        }





















        
/* ============================= product details page css ================================= */
.image-text-section {
    width: 100%;
    max-width: 1250px;
    margin: 40px auto;
    
    line-height: 1.6;
    text-align: justify;
}

.side-img {
    float: left;
    width: 350px;
    margin: 0 20px 20px 0;
    border-radius: 6px;
}


.image-text-section::after {
    content: "";
    display: block;
    clear: both;
}


@media (max-width: 768px) {
    .side-img {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}



/*=========================== Breadcrumb Section =================================*/

.breadcrumb-section {
    /* background-image:url("assets/banner/1597532115.jpg"); */
    width: 100%;
    padding: 60px 20px;
    background:#ffcc2a;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.breadcrumb-content {
    max-width: 1200px;
    width: 100%;
}

.breadcrumb-section span {
    font-size: 32px;
    color: #0a0a0a;
    margin-bottom: 5px;
    font-weight: 900;
}

.breadcrumb-section p {
    font-size: 16px;
    color: #555;
}

.breadcrumb-section p a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}




/* flot icon  */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 15px;
    font-size: 26px;
  }
}

/*================================================
Services Area CSS
=================================================*/
.services-area {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.services-area .pagination-area {
  margin-bottom: 30px;
}

.single-services-box {
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 30px 25px;
  transition: 0.5s;
  position: relative;
}
.single-services-box .icon {
  margin-bottom: 18px;
  background-color: #6f91f0;
  border-radius: 5px;
  width: 75px;
  height: 75px;
  line-height: 90px;
  transition: 0.5s;
  text-align: center;
  color:var(--accent-yellow);
}
.single-services-box .icon i::before {
  font-size: 35px;
}
.single-services-box h3 {
  margin-bottom: 0;
  font-size: 23px;
  font-weight: 700;
}
.single-services-box p {
  margin-top: 12px;
  margin-bottom: 0;
}
.single-services-box::before {
  content: "";
  height: 3px;
  width: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color:var(--accent-yellow);
  transition: 0.5s;
}
.single-services-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
}
.single-services-box:hover .icon {
  background-color:var(--primary-blue);
  color: #ffffff;
}
.single-services-box:hover::before {
  width: 100%;
  height: 4px;
}

.services-section {
  position: relative;
  z-index: 1;
}

.services-tab-list .tabs {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.services-tab-list .tabs li {
  margin-bottom: 10px;
}
.services-tab-list .tabs li a {
  display: block;
  background-color: #ffffff;
  position: relative;
  padding: 20px;
  border-radius: 5px;
  color: #313e5b;
  font-size: 19px;
  font-weight: 600;
}
.services-tab-list .tabs li a i {
  display: inline-block;
  width: 55px;
  height: 55px;
  background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #ffffff);
  text-align: center;
  line-height: 55px;
  border-radius: 5px;
  margin-right: 7px;
  color: #ff4800;
}
.services-tab-list .tabs li a i::before {
  font-size: 30px;
}
.services-tab-list .tabs li a:hover {
  background-color: #ff4800;
  color: #ffffff;
}
.services-tab-list .tabs li.current a {
  background-color: #ff4800;
  color: #ffffff;
}
.services-tab-list .tabs li:last-child {
  margin-bottom: 0;
}
.services-tab-list .tab-content {
  padding-left: 30px;
}
.services-tab-list .tab-content .tabs-item .image {
  margin-bottom: 30px;
}
.services-tab-list .tab-content .tabs-item .content .btn {
  margin-top: 5px;
}
.section-title span {
            font-size: 30px;
            color: var(--primary-blue);
        }