* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0C4169;
    /* Deep Blue */
    --color-secondary: #B8DD52;
    /* Fresh Green */
    --color-accent: #6B2056;
    /* Royal Purple */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --text-main: #222222;
    --text-light: #666666;
    --bg-main: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

body,
p,
span,
li,
a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.fixed-sticker {
    position: fixed;
    bottom: -55px;
    /* bottom se thoda upar */
    left: -30px;
    /* right side */
    width: 180px;
    /* size tu apne hisaab se adjust kar sakta hai */
    z-index: 9999;
    /* taaki sabke upar dikhe */
    cursor: pointer;
}


/* fixed icons */

.fixed-icons {
    position: fixed;
    top: 70%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-icons .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.fixed-icons .icon.call {
    background: #007bff;
    /* Blue */
}

.fixed-icons .icon.whatsapp {
    background: #25d366;
    /* WhatsApp Green */
}

.fixed-icons .icon.mail {
    background: #ff5e5e;
    /* Red */
}

.fixed-icons .icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* fixed icons */


/* icons */


/* whtsapp icon */


/* ✅ WhatsApp Floating Button */

.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    }
}


/* icons */


/* Main Heading Styling */

.mainnn-head {
    font-weight: 700;
    /* Bold */
    text-transform: uppercase;
    /* Uppercase letters */
    font-size: 2.5rem;
    /* Large size for main headings */
    color: var(--color-primary);
    /* Dark text color */
    letter-spacing: 1px;
    /* Slight spacing between letters */
    line-height: 1.2;
    /* Comfortable line height */
    margin: 20px 0;
    /* Top & bottom spacing */
    text-align: center;
    /* Center align headings */
    position: relative;
    /* For pseudo-element decorations */
}


/* Optional underline or decorative line */

.mainnn-head::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    /* Accent color */
    margin: 10px auto 0;
    border-radius: 2px;
}


/* Responsive adjustments */

@media (max-width: 768px) {
    .mainnn-head {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mainnn-head {
        font-size: 1.5rem;
    }
}

.btn-theme {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: 2px solid var(--color-primary);
    border-radius: 0;
    /* no rounding */
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}


/* Gradient shine animation on hover */

.btn-theme::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.3));
    transform: rotate(25deg) translateX(-100%);
    transition: all 0.5s ease;
}


/* Hover Effects */

.btn-theme:hover::before {
    transform: rotate(25deg) translateX(100%);
}

.btn-theme:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-black);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(184, 221, 82, 0.6);
    transform: scale(1.08) translateY(-2px);
}


/* Active click effect */

.btn-theme:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Pseudo underline animation */

.btn-theme::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: var(--color-white);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.btn-theme:hover::after {
    width: 100%;
}


/* Text shine effect */

.btn-theme span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.4s ease;
}

.btn-theme:hover span {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(155, 204, 19, 0.932);
}


/* Topbar */

.topbar {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.9rem;
}

.topbar a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.topbar a:hover {
    color: var(--color-secondary);
}


/* Navbar */

.navbar {
    background: var(--bg-main);
    padding: 0.7rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar .nav-link {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--color-primary);
}

.logo {
    height: 70px;
}


/* Products button */

.products-btn {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    padding: 10px;
}

.products-btn:hover {
    color: var(--color-secondary);
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
}


/* Toggler button */

.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 999;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


/* Drawers */

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: var(--bg-main);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.side-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
}

.drawer-header button {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
}

.drawer-logo {
    width: 130px;
}

.social-links a {
    color: var(--color-primary);
    margin-right: 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-secondary);
}


/* Products Drawer */

.products-drawer {
    background: var(--color-accent);
    color: var(--color-white);
}

.products-drawer a {
    color: var(--color-white);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.products-drawer a:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .navbar .nav-link {
        display: none;
    }
    .side-drawer {
        width: 100%;
    }
}


/* Navbar Link Hover Animation */

.navbar .nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}


/* underline animation */

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}


/* hover effects */

.navbar .nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.navbar .nav-link:hover::after {
    width: 100%;
}


/* active link styling */

.navbar .nav-link.active {
    color: var(--color-primary);
}

.navbar .nav-link.active::after {
    width: 100%;
}


/* Navbar Container */

.sm-navbar {
    width: 100%;
    background-color: var(--bg-main);
    color: var(--color-white);
    position: relative;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* Inner Flex Container */

.sm-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}


/* Logo */

.sm-navbar-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sm-navbar-logo a:hover {
    color: var(--color-secondary);
}


/* Toggler */

.sm-navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 21px;
    cursor: pointer;
}

.sm-navbar-toggler span {
    display: block;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Menu Hidden Initially */


/* Fullscreen menu with overlay */

.sm-navbar-menu {
    display: none;
    flex-direction: column;
    background-color: var(--color-primary);
    width: 100%;
    height: 100vh;
    /* Full screen */
    position: fixed;
    /* Fix it above all content */
    top: 0;
    left: 0;
    z-index: 9999;
    /* Highest layer so underlying sections hide */
    overflow-y: auto;
    padding-top: 80px;
    /* space from top for logo/toggler */
}


/* Close button inside menu */

.sm-navbar-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--color-white);
    cursor: pointer;
}


/* Links */

.sm-navbar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sm-navbar-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-navbar-links li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-white);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.sm-navbar-links li a:hover {
    background-color: var(--color-secondary);
    color: var(--color-black);
}


/* Dropdown */

.sm-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: var(--color-accent);
}

.sm-dropdown:hover .sm-dropdown-menu {
    display: block;
}

.sm-dropdown-menu li a {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.sm-dropdown-menu li a:hover {
    background-color: var(--color-secondary);
    color: var(--color-black);
}


/* Social Media */

.sm-navbar-social {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
    gap: 1rem;
}

.sm-navbar-social a {
    color: var(--color-white);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sm-navbar-social a:hover {
    color: var(--color-secondary);
    transform: scale(1.2);
}


/* Toggler Active Animation */

.sm-navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sm-navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.sm-navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Logo Image */

.sm-navbar-logo .sm-logo {
    height: 50px;
    object-fit: contain;
}


/* Menu full height on toggler click */


/* Navbar Menu */

.sm-navbar-menu {
    display: none;
    flex-direction: column;
    background-color: var(--color-primary);
    width: 100%;
    height: 100vh;
    /* Full screen */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /* Full overlay */
    overflow-y: auto;
    padding-top: 80px;
    /* space for logo & toggler */
    justify-content: flex-start;
}


/* Links stay at top, social at bottom */

.sm-navbar-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    /* take available space */
}


/* Social media bottom */

.sm-navbar-social {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    gap: 1rem;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}

.sm-navbar-social a {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.sm-navbar-social a:hover {
    color: var(--color-secondary);
    transform: scale(1.2);
}


/* Responsive */

@media (max-width: 1024px) {
    .sm-navbar-menu {
        display: none;
    }
}


/* Hide topbar and desktop navbar on tablets and mobiles */

@media (max-width: 1024px) {
    /* Topbar */
    .topbar,
    .topbar.d-flex,
    .topbar.d-block,
    .topbar.d-inline {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    /* Desktop Navbar */
    .navbar {
        display: none !important;
    }
    /* Show small/mobile navbar */
    .sm-navbar {
        display: flex !important;
        flex-direction: column;
    }
}


/* Hide small navbar on desktop */

@media (min-width: 1025px) {
    .sm-navbar {
        display: none !important;
    }
}


/* sliders */

.slider-container {
    position: relative;
    width: 100%;
    /* Full width instead of max-width */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 80vh;
}

.slide {
    min-width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: var(--color-white);
}

.slide-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 600;
}


/* .slide h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
} */

.slide p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    /* border: 2px solid var(--color-primary); */
}

.slide-btn:hover {
    background-color: transparent;
    color: var(--color-whitewhite);
    border: 2px solid var(--color-white);
}

.slide-btn.light {
    background-color: transparent;
    border: 2px solid var(--color-white);
    margin-left: 15px;
    color: var(--color-secondary);
}

.slide-btn.light:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--color-secondary);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    border: none;
}

.nav-btn:hover {
    background-color: var(--color-secondaryy);
}

.badge {
    display: inline-block;
    padding: 12px 16px !important;
    background-color: transparent;
    color: var(--color-white) !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-secondary);
}

.wood-texture {
    z-index: 0;
}

.sliderr {
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
}


/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .slides {
        height: 450px;
    }
    .slide-overlay {
        padding: 40px;
    }
    .slide h2 {
        font-size: 34px;
    }
    .slide p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .slides {
        height: 400px;
    }
    .slide-overlay {
        padding: 30px;
    }
    .slide h2 {
        font-size: 28px;
    }
    .slide p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .slides {
        height: 350px;
    }
    .slide-overlay {
        padding: 20px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    }
    .slide h2 {
        font-size: 22px;
    }
    .slide h2::after {
        width: 60px;
        height: 3px;
    }
    .slide p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .slide-btn {
        padding: 8px 16px;
        font-size: 12px;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    .slide-btn.light {
        margin-left: 0;
    }
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .slider-controls {
        bottom: 15px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .badge {
        padding: 4px 10px;
        font-size: 10px;
    }
}


/* Hero Banner */

.er-hero-banner {
    position: relative;
    width: 100%;
    min-height: 65vh;
    /* taller for impact */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.er-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.699), rgba(0, 0, 0, 0.705));
}

.er-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    max-width: 700px;
    margin: 0 auto;
}


/* Headline with elegant tracking & shadow */

.er-hero-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}


/* Subtitle slightly lighter */

.er-hero-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}


/* Call-to-action button */

.er-hero-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
    font-weight: 600;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.er-hero-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-3px);
}


/* hero banner for all pages */

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}


/* Buttons */

.btn-modern {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.btn-modern:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}


/* Responsive */


/********       Slider End      ***********/


/* .about-us-area {
    padding: 50px 0;       
} */

.about-section {
    /* background-color: #f8fbff; */
}

.counter-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.counter {
    font-size: 30px;
    font-weight: 700;
    color: #ffff;
}

.counter {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-secondary);
}

.abt-t {
    color: var(--color-primary) !important;
}

.abt-h {
    color: var(--color-secondary) !important;
    font-size: 2.4rem;
}

.about-us-area .about-thumbnail {
    position: relative;
    z-index: 1;
}

.about-us-area .about-thumbnail.homepage .first-img {
    position: relative;
    width: 50%;
    margin-left: auto;
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
}

.about-us-area .about-thumbnail.homepage .second-img {
    position: relative;
    z-index: 1;
    width: 55%;
    margin-top: -60%;
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
}

.about-us-area .about-thumbnail.homepage .third-img {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 45%;
    margin-top: -30%;
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
}


/* contact buttons style */


/* Gradient Background with Animation */


/* .info-box {
    background: linear-gradient(90deg, #F4B400 50%, #0F1F47 50%);
    background-size: 200% 100%;
    background-position: left;
    color: white;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    border-radius: 5px;
    padding: 1.5rem 2rem;
    min-height: 100px;
    transition: background-position 0.5s ease;
} */


/* Hover Animation */

.info-box:hover {
    background-position: right;
}


/* Icon Circle */

.icon-circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #F4B400;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}


/* Optional Hover Effect for Icon */

.info-box:hover .icon-circle-btn {
    transform: scale(1.1);
}


/* .about-us-area .about-key-text h6 {

    display: flex;

    align-items: center;

    justify-content: center;
    margin-bottom: 20px;
    font-size: 16px;
} */


/* .about-us-area .about-key-text h6 span {

    flex: 0 0 30px;
    max-width: 30px;
    width: 30px;
    margin-right: 15px;
    height: 30px;
    text-align: center;
    font-size: 12px;
    background-color: #cb8670;
    border-radius: 50%;
    line-height: 30px;
    color: #ffffff;
} */

@media(max-width:991px) {
    .right-images-div {
        margin-top: 100px;
    }
}

@media(max-width:576px) {
    .right-images-div {
        margin-top: 50px;
    }
}


/* about end */


/* why choose */

.mission-section {
    background: linear-gradient(to bottom, #0C4169, #6B2056);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.title {
    font-size: 32px;
    font-weight: 700;
}

.subtitless {
    margin-top: 10px;
    font-size: 18px;
    color: #cbe0ff;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.card {
    background: transparent;
    width: 220px !important;
    height: 280px !important;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    position: relative;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    /* border-radius: 30px; */
    background: var(--color-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    padding: 20px;
}

.card-front img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.card-front h3 {
    font-size: 18px;
    font-weight: 600;
}

.card-back {
    transform: rotateY(180deg);
    font-size: 15px;
    line-height: 1.4;
}


/* Responsive */

@media (max-width: 768px) {
    .card {
        width: 80%;
    }
}


/* why choose */


/* products */

.product-slider-section {
    background-color: #f8f9fa;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-containers {
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.product-card {
    width: 360px;
    /* height: 360px; */
    flex: 0 0 auto;
    background: #fff;
    /* border-radius: 10px; */
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* border-radius: 10px 10px 0 0; */
}

.product-card p {
    margin: 0;
    padding: 12px 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 30px;
    padding: 5px 12px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.slider-arrow.left {
    left: -10px;
}

.slider-arrow.right {
    right: -10px;
}


/* Hide arrows on small devices */

@media (max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}


/* products */

.services-section {
    padding: 80px 20px;
    /* background: var(--bg-main); */
    background: url(https://heritagewindoors.in/images/section-bg-shape.png) no-repeat center center;
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

h2 {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.intro {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-item img {
    width: 40px;
    height: 40px;
}

.service-item h3 {
    color: var(--color-accent);
    margin: 0 0 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-image img {
    width: 100%;
    max-width: 280px;
    display: block;
    margin: auto;
}


/* Responsive Design */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-item {
        justify-content: center;
    }
    .service-image img {
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 1.7rem;
    }
    .service-item img {
        width: 35px;
    }
    .service-item h3 {
        font-size: 1rem;
    }
}


/* new */

.vision-mission-section {
    background: url('../images/banner/crafting-background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 60px 20px;
}

.content-box {
    max-width: 1000px;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

.content-box h2 {
    color: var(--color-primary);
    font-size: 2rem;
}

.content-box p {
    color: #222;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .content-box {
        padding: 30px 20px;
    }
    .content-box h2 {
        font-size: 1.5rem;
    }
    .content-box p {
        font-size: 1rem;
    }
}

.service-item {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* testimonials  */

.testimonial-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

.testimonial-heading {
    font-size: 36px;
    font-weight: 700;
    color: #2a2e33;
    margin-bottom: 60px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-card {
    background: #d5d2d235;
    border: 1px solid var(--color-accent);
    padding: 60px 30px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 3px solid var(--color-accent);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 30px;
}

.testimonial-name {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 15px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--color-accent);
    top: 40%;
    width: 35px;
    height: 35px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-accent);
    color: #fff;
}

.swiper-pagination {
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #333;
}

@media screen and (max-width: 768px) {
    .testimonial-card {
        max-width: 100%;
        margin: 0 auto;
    }
}


/* footer start */

.custom-footer {
    background-color: #f7f9fb;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #ddd;
}

.footer-logo {
    max-width: 180px;
}

.footer-text {
    font-size: 14px;
    color: #555;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d49452;
    padding-left: 5px;
}

.custom-footer h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.social-icons a {
    font-size: 16px;
    color: #333;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #d49452;
    transform: scale(1.2);
}

.custom-footer p {
    font-size: 14px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .custom-footer .col-md-2,
    .custom-footer .col-md-3 {
        margin-bottom: 30px;
    }
}

.social-icon i {
    font-size: 30px;
    transition: transform 0.3s, color 0.3s;
}


/* Brand colors */

.instagram i {
    color: #E1306C;
}

.facebook i {
    color: #1877F2;
}

.linkedin i {
    color: #0A66C2;
}


/* Hover effect */

.social-icon:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #ffcc00);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}


/* Brand colors */

.instagram {
    /* background: #E1306C; */
}

.facebook {
    /* background: #1877F2; */
}

.linkedin {
    /* background: #0A66C2; */
}


/* Hover effect */

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #ffcc00);
}

.social-icon i {
    font-size: 24px;
}


/* footer end */


/* about us page start */


/* ===== Manufacturing Excellence Section ===== */

.wmw-manufacturing-section {
    background: linear-gradient(135deg, var(--color-primary) 5%, var(--color-accent) 95%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.wmw-manufacturing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.wmw-manufacturing-subtitle {
    color: var(--color-white);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.wmw-process-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.wmw-process-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wmw-process-icon {
    font-size: 40px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}


/* ===== Our Presence Section ===== */

.wmw-presence-section {
    background-color: var(--bg-main);
    color: var(--text-main);
    position: relative;
}

.wmw-presence-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.wmw-presence-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-light);
}

.wmw-presence-map img {
    border: 3px solid var(--color-secondary);
    transition: transform 0.3s ease;
}

.wmw-presence-map img:hover {
    transform: scale(1.03);
}

.wmw-stat-box {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 15px;
    padding: 25px 10px;
    transition: 0.3s;
}

.wmw-stat-box:hover {
    background: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wmw-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
}

.wmw-trusted-text {
    color: var(--text-light);
    font-size: 15px;
}

.wmw-client-logo {
    height: 60px;
    /* filter: grayscale(100%);
    opacity: 0.7; */
    transition: 0.3s;
}

.wmw-client-logo:hover {
    /* filter: none;
    opacity: 1; */
    transform: scale(1.05);
}


/* ===== Our Presence Section ===== */

.wmw-presence-section {
    background-color: var(--bg-main);
    color: var(--text-main);
    position: relative;
}

.wmw-presence-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
}

.wmw-presence-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-light);
}


/* Right Section Content */

.wmw-presence-heading {
    font-size: 29px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.wmw-presence-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.wmw-presence-map img {
    border: 3px solid var(--color-secondary);
    transition: transform 0.3s ease;
}

.wmw-presence-map img:hover {
    transform: scale(1.03);
}

.wmw-stat-box {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 15px;
    padding: 25px 10px;
    transition: 0.3s;
}

.wmw-stat-box:hover {
    background: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.wmw-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
}

.wmw-trusted-text {
    color: var(--text-light);
    font-size: 15px;
}

.wmw-client-logo {
    height: 40px;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: 0.3s;
}

.wmw-client-logo:hover {
    /* filter: none; */
    /* opacity: 1; */
    transform: scale(1.05);
}


/* ===== Trusted Logos Section ===== */

.wmw-trusted-logos {
    margin-top: 40px;
}

.wmw-trusted-text {
    color: var(--text-light);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.wmw-client-logo {
    height: 55px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: all 0.3s ease;
}

.wmw-client-logo:hover {
    /* filter: none; */
    /* opacity: 1; */
    transform: scale(1.08);
}


/* about us page end */


/* contact us page start */


/* ===================== CONTACT PAGE STYLES ===================== */

.wmw-contact-page {
    background-color: var(--bg-main);
}

.wmw-contact-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.385);
    transition: all 0.4s ease;
    height: 180px;
}

.wmw-contact-card i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.wmw-contact-card h5 {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.wmw-contact-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.wmw-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Contact Form */

.wmw-contact-form {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.wmw-contact-form h3 {
    color: var(--color-primary);
    font-weight: 700;
}

.wmw-contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px 15px;
    transition: 0.3s;
}

.wmw-contact-form .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(184, 221, 82, 0.3);
}


/* Primary Button */

.wmw-btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.wmw-btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: translateY(-2px);
}


/* Map */

.wmw-map-wrapper {
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wmw-map {
    width: 100%;
    height: 400px;
    border: 0;
}


/* CTA Section */

.wmw-cta-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.wmw-btn-light {
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.wmw-btn-light:hover {
    background: var(--color-secondary);
    color: var(--color-black);
    transform: scale(1.05);
}


/* Responsive */

@media (max-width: 991px) {
    .wmw-map {
        height: 300px;
    }
}


/* contact us page end */


/* blogs page css start */


/* ===== Premium Blog Section Styles ===== */

.hb-blog-premium {
    font-family: 'Poppins', sans-serif;
}


/* Section Heading */

.hb-blog-premium-title {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hb-blog-premium-desc {
    font-size: 1rem;
    color: var(--text-light);
}


/* Blog Card */

.hb-blog-card-premium {
    position: relative;
    background-color: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hb-blog-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


/* Image + Overlay */

.hb-blog-img-premium {
    position: relative;
    overflow: hidden;
}

.hb-blog-img-premium img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hb-blog-card-premium:hover .hb-blog-img-premium img {
    transform: scale(1.05);
    filter: brightness(1.1);
}


/* Glass Wave Animation */

.hb-glass-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.15) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: left 0.6s ease;
}

.hb-blog-card-premium:hover .hb-glass-wave {
    left: 100%;
}


/* Content */

.hb-blog-content-premium {
    position: relative;
    z-index: 2;
}


/* Premium Heading for Cards */

.hb-blog-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    position: relative;
}


/* Optional underline animation */

.hb-blog-title-premium::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background: var(--color-accent);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.hb-blog-card-premium:hover .hb-blog-title-premium::after {
    width: 40%;
}


/* Button */

.hb-blog-btn-premium {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--color-secondary);
    color: var(--color-accent);
    /* border-radius: 10px; */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hb-blog-btn-premium:hover {
    background-color: var(--color-accent);
}


/* Responsive */

@media (max-width: 992px) {
    .hb-blog-premium .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .hb-blog-premium .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Fade-in Animation (if not using AOS) */

@keyframes hb-fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hb-blog-card-premium[data-aos] {
    opacity: 0;
    animation: hb-fadeInUp 1s forwards;
}


/* blogs page css end */

.counter::after {
    content: "+";
}

.wmw-presence-counter::after {
    content: "+";
}