* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;

}

body {
    font-family: Roboto, sans-serif;
    ;
}

/* topnav */
.topnav {
    background: white;
    padding: 1vw 0;
    transition: all 0.4s ease;
}

.topnav.hide {
    margin-top: -5vw;
    /* adjust according to your topnav height */
    opacity: 0;
}

.topnav-wrapper {
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 2vw;
}

.topnav .left {
    display: flex;
    gap: 2vw;
}

.topnav .left a {
    color: #4A4A4A;
    font-size: 1vw;
    font-weight: 400;
}

.topnav .left a i {
    margin-right: 5px;
    color: rgb(220, 4, 4);
}

.topnav .right {
    display: flex;
    gap: 1vw;
}

.topnav .right a i {
    font-size: 1.3vw;
    color: #4A4A4A;
}

.topnav .right i {
    background-color: rgb(220, 4, 4);
    color: white !important;
    padding: 0.5vw;
    border-radius: 50%;

}

/* header */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 0.5vw 0.6vw rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
    max-width: 100%;
    margin: 0 auto;
    height: 7vw;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left img {
    height: 6vw;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1vw;
}

/* ── Hamburger button (hidden on desktop) ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(220, 4, 4, 0.07);
}

.ham-line {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #2b2b2b;
    border-radius: 4px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        width 0.25s ease;
    transform-origin: center;
}

/* Animated X when open */
.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Desktop nav menu ── */
.menu {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.menu>li {
    position: relative;
    list-style: none;
}

.menu>li>a {
    color: #2b2b2b;
    font-size: 1.3vw;
    font-weight: 500;
    padding: 1vw 0;
    display: flex;
    align-items: center;
    gap: 1vw;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 0.2vw solid transparent;
}

.menu>li>a:hover {
    color: rgb(220, 4, 4);
    border-bottom-color: rgb(220, 4, 4);
}
.menu>li>a.active {
    color: rgb(220, 4, 4);
    border-bottom-color: rgb(220, 4, 4);
}
/* Dropdown Menu styling */
.menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 3vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5vw 0;
    min-width: 20vw;
    border: 0.5vw solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s;
}

/* Align rightmost dropdowns to prevent screen overflow */
.menu .dropdown-parent:nth-last-child(-n+3) .dropdown {
    left: auto;
    right: 0;
}

/* Show dropdown on hover, focus, or when active */
.menu .dropdown-parent:hover .dropdown,
.menu .dropdown-parent:focus-within .dropdown,
.menu .dropdown-parent.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .dropdown li {
    width: 100%;
    list-style: none;
}

.menu .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #4a4a4a;
    font-size: 1vw;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: left;
    white-space: nowrap;
}

.menu .dropdown li a:hover {
    background-color: rgba(220, 4, 4, 0.05);
    color: rgb(220, 4, 4);
}

/* Get in Touch Button */
.btn-get-in-touch {
    background-color: rgb(220, 4, 4);
    color: white;
    font-size: 1.1vw;
    font-weight: 600;
    padding: 1vw 2vw;
    margin-left: 2vw;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 0.5vw;
}

.btn-get-in-touch:hover {
    background-color: rgb(180, 2, 2);
    transform: translateY(-2px);
}

.btn-get-in-touch:active {
    transform: translateY(0);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 18px 28px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(37, 211, 102, 0.32);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 3.7rem;
        height: 3.7rem;
    }
}


/* ── Mobile nav overlay ── */
@media (max-width: 768px) {

    .header-wrapper {
        padding: 0 4vw;
        height: 18vw;
    }

    .header-left img {
        height: 14vw;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Mobile nav panel: slides in from top-right */
    .header-right {
        position: fixed;
        top: 18vw;
        /* just below the sticky header */
        right: 0;
        width: 75vw;
        max-width: 320px;
        height: calc(100vh - 18vw);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 4vw 6vw;
        box-shadow: -6px 0 30px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 0 20px;
        overflow-y: auto;
        z-index: 1050;

        /* Hidden by default — slides out to the right */
        transform: translateX(110%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0.38s;
    }

    /* Shown when .open is toggled */
    .header-right.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    /* Dim backdrop */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-backdrop.show {
        display: block;
        opacity: 1;
    }

    /* Menu list in mobile */
    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .menu>li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu>li>a {
        font-size: 4.5vw;
        padding: 3.5vw 0;
        border-bottom: none;
        width: 100%;
        justify-content: space-between;
    }

    /* Mobile dropdowns — expand inline */
    .menu .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 4vw;
        min-width: 0;
        background: transparent;
        display: none;
        transition: none;
    }

    .menu .dropdown-parent.active .dropdown {
        display: block;
    }

    .menu .dropdown li {
        width: 100%;
    }

    .menu .dropdown li a {
        font-size: 4vw;
        padding: 2.5vw 0;
        color: #555;
    }

    /* Hide "Get in Touch" button on mobile or style it */
    .btn-get-in-touch {
        font-size: 4vw;
        padding: 3vw 5vw;
        margin-left: 0;
        margin-top: 4vw;
        border-radius: 2vw;
        width: 100%;
        text-align: center;
        display: block;
    }
}

@media (max-width: 480px) {

    .header-wrapper {
        height: 22vw;
    }

    .header-left img {
        height: 17vw;
    }

    .header-right {
        top: 22vw;
        height: calc(100vh - 22vw);
        width: 85vw;
        padding: 5vw 7vw;
    }

    .menu>li>a {
        font-size: 5.5vw;
        padding: 4vw 0;
    }

    .menu .dropdown li a {
        font-size: 4.5vw;
    }
}


/* hero-slider */
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 15vw;
}

.slider {
    position: relative;
    width: 100%;
    height: 40vw;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 8vw;
    transform: translateY(-50%);
    width: 45vw;
    z-index: 2;
    color: #fff;
}

.overlay h1 {
    font-size: 4vw;
    line-height: 4.5vw;
    font-weight: 700;
    margin-bottom: 1.5vw;
}

.overlay p {
    font-size: 1.1vw;
    line-height: 2vw;
    margin-bottom: 2vw;
}

.hero-btn {
    display: inline-block;
    padding: 1vw 2.5vw;
    background: #c50000;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 1vw;
    transition: .4s;
}

.hero-btn:hover {
    background: #a00000;
}

.stats-container {
    position: absolute;
    bottom: -10vw;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    gap: 2vw;
    z-index: 5;
}

.stat-box {
    flex: 1;
    background: #fff;
    padding: 2vw;
    text-align: center;
    border-radius: 1vw;
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, .12);
    transition: .4s;
}

.stat-box:hover {
    transform: translateY(-0.5vw);
}

.stat-box h2 {
    color: #c50000;
    font-size: 3vw;
    margin-bottom: 1vw;
    font-weight: 700;
}

.stat-box h3 {
    font-size: 1.2vw;
    margin-bottom: 1vw;
    color: #222;
}

.stat-box p {
    font-size: 0.9vw;
    line-height: 1.7vw;
    color: #666;
}

/* aboutus */
.about {
    width: 100%;
    padding: 2vw 8vw;
    background: #fff;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4vw;
}

.about-left {
    width: 48%;
}

.about-left img {
    width: 100%;
    height: 35vw;
    object-fit: cover;
    border-radius: 2vw;
}

.about-right {
    width: 48%;
}

.about-tag {
    font-size: 1vw;
    color: #d71920;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1vw;
}

.about-right h2 {
    font-size: 3vw;
    line-height: 3.5vw;
    color: #222;
    margin-top: 1vw;
    margin-bottom: 1.5vw;
    font-weight: 700;
}

.about-right p {
    font-size: 1.2vw;
    line-height: 1.8vw;
    color: #666;
    margin-bottom: 2vw;
}

.about-features {
    list-style: none;
    margin-bottom: 2vw;
}

.about-features li {
    font-size: 1vw;
    margin-bottom: 1vw;
    color: #333;
}

.about-features i {
    color: #d71920;
    margin-right: .5vw;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: .7vw;
    padding: 1vw 2vw;
    background: #d71920;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 1vw;
    transition: .4s;
}

.about-btn:hover {
    transform: translateY(-0.2vw);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-top: 4vw;
}

.stat-card {
    width: 15vw;
    padding: 2vw;
    background: #fff;
    border-radius: 1vw;
    box-shadow: 0 .5vw 2vw rgba(0, 0, 0, .08);
    text-align: center;
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-0.4vw);
}

.stat-card h3 {
    font-size: 2.5vw;
    color: #d71920;
    margin-bottom: .5vw;
}

.stat-card span {
    font-size: .9vw;
    color: #666;
}

/* products section */
.products-section {
    width: 100%;
    padding: 6vw 8vw;
    background: #fdfdfd;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3vw;
}

.products-title span {
    font-size: 1vw;
    color: #d71920;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1vw;
}

.products-title h2 {
    font-size: 3vw;
    line-height: 3.5vw;
    color: #222;
    margin-top: 0.5vw;
    font-weight: 700;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    gap: .7vw;
    padding: 1vw 2vw;
    border: 0.15vw solid #d71920;
    color: #d71920;
    text-decoration: none;
    border-radius: 0.5vw;
    font-size: 1vw;
    font-weight: 600;
    transition: .4s;
}

.explore-more-btn:hover {
    background: #d71920;
    color: #fff;
}

.products-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.products-slider {
    display: flex;
    gap: 2vw;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 1vw 0.5vw;
}

/* Hide scrollbar */
.products-slider::-webkit-scrollbar {
    display: none;
}

.products-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.15);
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
    color: #333;
    font-size: 1.2vw;
}

.slider-btn:hover {
    background: #d71920;
    color: #fff;
}

.slider-btn.prev {
    left: -2vw;
}

.slider-btn.next {
    right: -2vw;
}

.product-card {
    position: relative;
    flex: 0 0 22vw;
    height: 30vw;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.08);
    background: #000;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 2vw;
    z-index: 2;
    transition: background 0.4s ease;
}

.product-overlay h3 {
    font-size: 1.5vw;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1vw;
    text-transform: capitalize;
    line-height: 2vw;
    text-align: left;
}

.product-overlay a {
    background-color: #d71920;
    color: #ffffff;
    font-size: 0.9vw;
    font-weight: 600;
    padding: 0.8vw 1.8vw;
    border-radius: 0.4vw;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.4vw 1vw rgba(215, 25, 32, 0.3);
    display: inline-block;
}

.product-overlay a:hover {
    background-color: #b01017;
    transform: translateY(-0.2vw);
    box-shadow: 0 0.6vw 1.5vw rgba(215, 25, 32, 0.5);
}

.product-card:hover img {
    transform: scale(1.08);
    opacity: 0.65;
}

.product-card:hover .product-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
}

/* our-strength */
.strength {
    width: 100%;
    padding: 2vw 8vw;
    background: #fff;
}

.strength-wrapper {
    display: flex;

    justify-content: space-between;

    gap: 4vw;
}

.strength-right {
    width: 48%;
}

.strength-right img {
    width: 100%;
    height: 35vw;
    object-fit: cover;
    border-radius: 2vw;
}

.strength-left {
    width: 48%;
}

.strength-tag {
    font-size: 1vw;
    color: #d71920;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1vw;
}

.strength-left h2 {
    font-size: 3vw;
    line-height: 3.5vw;
    color: #222;

    margin-top: 1vw;
    margin-bottom: 1.5vw;
    font-weight: 700;
}

.strength-list {
    font-size: 1.5vw;
    line-height: 2vw;
    color: #666;

    margin-bottom: 1vw;
    gap: 2vw;
}

.strength-list li {
    list-style-type: disc;
    line-height:3vw;
}

/* mobile responsive */

@media(max-width:480px) {
    .topnav {
        display: none;
    }

    /* HERO SECTION */
    .hero {
        margin-bottom: 65vw;
    }

    .slider {
        height: 120vw;
    }

    .overlay {
        width: 90%;
        left: 5vw;
        top: 50%;
    }

    .overlay h1 {
        font-size: 9vw;
        line-height: 10vw;
        margin-bottom: 4vw;
    }

    .overlay p {
        font-size: 3.8vw;
        line-height: 6vw;
        margin-bottom: 6vw;
    }

    .hero-btn {
        padding: 3vw 6vw;
        font-size: 3.5vw;
        border-radius: 1vw;
    }

    .stats-container {
        width: 90%;
        flex-direction: column;
        gap: 2vw;
        bottom: -18vw;
        height: 15vw;
    }

    .stat-box {
        padding: 1vw;
        border-radius: 3vw;
    }

    .stat-box h2 {
        font-size: 8vw;
    }

    .stat-box h3 {
        font-size: 4.5vw;
    }

    .stat-box p {
        font-size: 3.5vw;
        line-height: 5.5vw;
    }

    /* ABOUT SECTION */

    .about {
       padding: 8vw 6vw;
        padding-top: 36vw;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 8vw;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left img {
        height: 70vw;
    }

    .about-tag {
        font-size: 3.5vw;
    }

    .about-right h2 {
        font-size: 8vw;
        line-height: 9vw;
        margin-top: 3vw;
    }

    .about-right p {
        font-size: 3.8vw;
        line-height: 6vw;
    }

    .about-features li {
        font-size: 3.8vw;
        line-height: 6vw;
        margin-bottom: 2vw;
    }

    .about-btn {
        padding: 3vw 6vw;
        font-size: 3.5vw;
    }

    .about-stats {
        flex-direction: column;
        gap: 4vw;
        margin-top: 8vw;
    }

    .stat-card {
        width: 100%;
        padding: 5vw;
    }

    .stat-card h3 {
        font-size: 8vw;
    }

    .stat-card span {
        font-size: 3.5vw;
    }

    /* PRODUCTS SECTION */

    .products-section {
        padding: 2vw 6vw;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4vw;
        margin-bottom: 8vw;
    }

    .products-title span {
        font-size: 3.5vw;
    }

    .products-title h2 {
        font-size: 8vw;
        line-height: 9vw;
    }

    .explore-more-btn {
        padding: 3vw 6vw;
        font-size: 3.5vw;
    }

    .products-slider {
        gap: 4vw;
    }

    .product-card {
        flex: 0 0 80vw;
        height: 95vw;
        border-radius: 3vw;
    }

    .product-overlay {
        padding: 5vw;
    }

    .product-overlay h3 {
        font-size: 5vw;
        line-height: 6vw;
        margin-bottom: 3vw;
    }

    .product-overlay a {
        font-size: 3.5vw;
        padding: 2.5vw 5vw;
        border-radius: 1vw;
    }

    .slider-btn {
        width: 10vw;
        height: 10vw;
        font-size: 4vw;
    }

    .slider-btn.prev {
        left: -1vw;
    }

    .slider-btn.next {
        right: -1vw;
    }

    /* OUR STRENGTH */

    .strength {
        padding: 12vw 6vw;
    }

    .strength-wrapper {
        flex-direction: column-reverse;
        gap: 8vw;
    }

    .strength-left,
    .strength-right {
        width: 100%;
    }

    .strength-right img {
        height: 70vw;
    }

    .strength-tag {
        font-size: 3.5vw;
    }

    .strength-left h2 {
        font-size: 8vw;
        line-height: 9vw;
        margin-top: 3vw;
    }

    .strength-list {
        font-size: 3.8vw;
        line-height: 6vw;
    }

    .strength-list li {
        padding: 2vw 0;
        margin-left: 5vw;
    }
}

/* why-choose-us */
.why-choose {
    width: 100%;
    padding: 2vw 6vw;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2vw;
}

.why-heading span {
    font-size: 1vw;
    color: #d71920;
    font-weight: 600;
    letter-spacing: .1vw;
    position: relative;

}

/* .why-heading span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 2vw;
    height: .12vw;
    background: #d71920;
} */

.why-heading h2 {
    width: 80vw;
    font-size: 3vw;
    line-height: 3.6vw;
    margin-top: 1vw;
    color: #111;
    font-weight: 700;
}

.why-container {
    margin-top: 5vw;
    display: flex;
    justify-content: space-between;
    gap: 1.2vw;
}

.why-card {
    width: 18%;
    text-align: center;
    transition: .4s;
    cursor: pointer;
}

.why-card h1 {
    font-size: 6vw;
    color: #d8d8d8;
    font-weight: 800;
    line-height: 1;
    transition: .4s;
}


.why-card:hover h1 {
    color: #d71920;
}

.why-card h3 {
    margin-top: 1vw;
    font-size: 1.15vw;
    color: #111;
    font-weight: 600;
}

.why-card p {
    margin-top: .8vw;
    font-size: .9vw;
    color: #777;
    line-height: 1.6vw;
}

.why-card:hover {
    transform: translateY(-.7vw);
}

@media(max-width:768px) {

    .why-choose {
        padding: 2vw 6vw;
    }

    .why-heading span {
        font-size: 2.8vw;

    }

    .why-heading span::before {
        width: 5vw;
        height: .3vw;
    }

    .why-heading h2 {
        width: 100%;
        font-size: 6vw;
        line-height: 7vw;
        margin-top: 2vw;
    }

    .why-container {
        flex-wrap: wrap;
        gap: 5vw;
        margin-top: 8vw;
    }

    .why-card {
        width: 47%;
    }

    .why-card h1 {
        font-size: 14vw;
    }

    .why-card h3 {
        font-size: 3vw;
        margin-top: 2vw;
    }

    .why-card p {
        font-size: 2.4vw;
        line-height: 3.8vw;
    }

}

@media(max-width:480px) {

    .why-card {
        width: 100%;
    }

    .why-heading span {
        font-size: 3.5vw;
    }

    .why-heading h2 {
        font-size: 5vw;
        line-height: 6vw;
    }

    .why-card h1 {
        font-size: 18vw;
    }

    .why-card h3 {
        font-size: 4.5vw;
    }

    .why-card p {
        font-size: 3.5vw;
        line-height: 5.5vw;
    }

}

/* footer */
.footer {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 50%, rgba(238, 242, 247, 0.9) 100%),
        url("../uploads/2023/05/dr-team-img-1.jpg");
    background-size: cover;

    background-repeat: no-repeat;
    padding: 3vw 6vw 1vw;
    color: #fff;
}

.footer-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3vw;
    flex-wrap: wrap;
}

.footer-logo {
    width: 28%;
}

.footer-logo img {
    width: 12vw;
    height: auto;
}

.footer-logo p {
    margin-top: 1vw;
    font-size: 1vw;
    color: #666;
    line-height: 1.8vw;
    width: 20vw;


}

.navigation,
.quicklinks,
.reach-us {
    width: 20%;
}

.navigation p,
.quicklinks p,
.reach-us p {
    font-size: 1.4vw;
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5vw;
}

.navigation ul,
.quicklinks ul {
    padding: 0;
}

.navigation li,
.quicklinks li {
    list-style: none;
    margin-bottom: 1vw;
    font-size: 1vw;
    color: #666;
    cursor: pointer;
    transition: .3s;
}

.navigation li a,
.quicklinks li a {
    color: inherit;
    transition: inherit;
    display: inline-block;
}

.navigation li:hover,
.quicklinks li:hover {
    color: #e63946;
    transform: translateX(.5vw);
}

.reach-us {
    display: flex;
    flex-direction: column;
}

.reach-us .reach-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #666;
    font-size: 1vw;
    margin-bottom: 1.2vw;
    line-height: 1.7vw;
    transition: .3s;
}

.reach-us .reach-link:hover {
    color: #e63946;
}

.reach-us .reach-link i {
    width: 1.5vw;
    margin-right: .8vw;
    color: #e63946;
    margin-top: 0.2vw;
    flex-shrink: 0;

}

.reach-us .reach-emails {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2vw;
}

.reach-us .reach-emails i {
    width: 1.5vw;
    margin-right: .8vw;
    color: #e63946;
    margin-top: 0.2vw;
    flex-shrink: 0;
}

.reach-us .emails-list {
    display: flex;
    flex-direction: column;
}

.reach-us .emails-list a {
    text-decoration: none;
    color: #666;
    font-size: 1vw;
    line-height: 1.7vw;
    transition: .3s;
}

.reach-us .emails-list a:hover {
    color: #e63946;
}

.reach-us .social-icons {
    margin-left: 0.5vw;
    padding: 0.5vw;
    display: flex;
    gap: 1vw;
}

.reach-us .social-icons a {
    color: #666;
    transition: color 0.3s;
    font-size: 2vw;
}

.reach-us .social-icons a:hover {
    color: #e63946;
}

.reach-us .social-icons i {
    font-size: 1.3vw;
    margin-top: 1vw;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 1vw;
    padding-top: 1vw;
    text-align: center;
}

.footer-bottom p {
    font-size: 1vw;
    color: #666;
    font-weight: 500;
}

@media(max-width:480px) {

    .footer {
        padding: 10vw 7vw;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 8vw;
    }

    .footer-logo,
    .navigation,
    .quicklinks,
    .reach-us {
        width: 100%;
    }

    .footer-logo img {
        width: 38vw;
    }

    .footer-logo p {
        font-size: 3.8vw;
        line-height: 6vw;
        width: 70vw;
        margin-top: 2vw;
    }

    .navigation p,
    .quicklinks p,
    .reach-us p {
        font-size: 5vw;
        margin-bottom: 3vw;
    }

    .navigation li,
    .quicklinks li,
    .reach-us .reach-link,
    .reach-us .emails-list a {
        font-size: 3.8vw;
        line-height: 7vw;
    }

    .reach-us .reach-link i,
    .reach-us .reach-emails i {
        width: 5vw;
        margin-right: 2vw;
    }

    .reach-us .social-icons {
        gap: 4vw;
    }

    .reach-us .social-icons i {
        font-size: 5vw;
        margin-top: 2vw;
    }

    .footer-bottom {
        margin-top: 8vw;
        padding-top: 6vw;
    }

    .footer-bottom p {
        font-size: 3.8vw;
    }

}

/* faqs */
.faqs {
    width: 100%;
    height: 100%;
}

.faqs-wrapper {
    display: flex;
    
    justify-content: space-between;

    padding: 2vw;
}

.faqs-text {

    width: 48%;
}

.faqs-text span {
    font-size: 1vw;
    color: #d71920;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1vw;
}

.faqs-text h2 {
    font-size: 3vw;
    line-height: 3.5vw;
    color: #222;
    margin-top: 1vw;
    margin-bottom: 1.5vw;
    font-weight: 700;
}

.faqs-text p {
    font-size: 1.2vw;
    line-height: 1.8vw;
    color: #666;
    margin-bottom: 2vw;
}

.faqs-cards {
    display: flex;
    width: 48%;
    flex-direction: column;
}

.faq-items {

    /* padding:1vw; */

    margin-bottom: 1.5vw;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
}

.question {
    width: 100%;
    padding: 0.8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5vw;
    background: #d71920;
    color: white;
    border: none;
    outline: none;
    appearance: none;
    box-shadow: none;
    cursor: pointer;

}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 1.5vw;
    background: #FFF6F8;
    /* max-height: 32px; */
}

.answer p {
    padding: 1vw 1vw;
    line-height: 2.8vw;
    color: #444444;
}

@media(max-width:768px) {

    .faqs-text {
    width: 100%;
}

.faqs-text span {
    font-size: 3.5vw;
}
.faqs-text h2 {
    font-size: 6vw;
    padding: 1vw;
}

.faqs-text p {
    font-size: 3.2vw;
    line-height: 4.8vw;
    padding: 2vw;
}

.faqs-cards{
width: 100%;
}
    .faq-title h3 {
        font-size: 2.5vw;
    }

    .question {
        font-size: 3.5vw;
        padding: 3vw;
    }

    .answer {
        font-size: 3.5vw;
    }

    .answer p {
        line-height: 3.8vw;
    }
    .faqs-wrapper{
       flex-direction: column;
       padding: 2vw 6vw;
    }
}

/* marquee */
.marquee-section{
    width:100%;
    padding:1.2vw 0;
    background:#d71920;
    overflow:hidden;
}

.marquee{
    width:100%;
    overflow:hidden;
}

.marquee-content{
    display:flex;
    align-items:center;
    gap:5vw;
    width:max-content;
    animation:marquee 50s linear infinite;
}

.marquee:hover .marquee-content{
    animation-play-state:paused;
}

.marquee-item{
    display:flex;
    align-items:center;
    gap:0vw;
    flex-shrink:0;
    flex-direction: column;
}

.marquee-item img{
    width:10.2vw;
    height:10.2vw;
    object-fit:contain;
}

.marquee-item span{
    color:#fff;
    font-size:1.5vw;
    font-weight:500;
    white-space:nowrap;
}

@keyframes marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}
@media(max-width:768px){

.marquee-section{
    padding:2.5vw 0;
}

.marquee-content{
    gap:8vw;
}

.marquee-item{
    gap:2vw;
}

.marquee-item img{
    width:5vw;
    height:5vw;
}

.marquee-item span{
    font-size:2.5vw;
}

}

@media(max-width:480px){

.marquee-section{
    padding:3vw 0;
}

.marquee-content{
    gap:10vw;
}

.marquee-item img{
    width:7vw;
    height:7vw;
}

.marquee-item span{
    font-size:3.5vw;
}

}


.brochure-section{

    width:100%;
    padding:6vw;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(135deg,#fff,#fff5f5);

}

.brochure-content{

    width:55%;

}

.brochure-content span{

    color:#d71920;
    font-size:1vw;
    font-weight:600;
    letter-spacing:.15vw;

}

.brochure-content h2{

    font-size:3vw;
    margin:1vw 0;
    color:#222;

}

.brochure-content p{

    font-size:1vw;
    color:#666;
    line-height:1.8vw;
    margin-bottom:2vw;

}

.brochure-btn{

    display:flex;
    gap:1.5vw;

}

.download-btn,
.view-btn{

    text-decoration:none;
    padding:1vw 2vw;
    border-radius:.5vw;
    font-size:1vw;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:.8vw;
    transition:.4s;

}

.download-btn{

    background:#d71920;
    color:#fff;

}

.download-btn:hover{

    background:#b41419;
    transform:translateY(-.3vw);

}

.view-btn{

    border:.1vw solid #d71920;
    color:#d71920;

}

.view-btn:hover{

    background:#d71920;
    color:#fff;
    transform:translateY(-.3vw);

}

.brochure-image{

    width:35%;
    text-align:center;

}

.brochure-image img{

    width:100%;
    transition:.5s;

}

.brochure-image img:hover{

    transform:rotate(-3deg) scale(1.05);

}
@media(max-width:768px){

.brochure-section{

    flex-direction:column-reverse;
    gap:6vw;

}

.brochure-content,
.brochure-image{

    width:100%;
    text-align:center;

}

.brochure-content span{

    font-size:2.5vw;

}

.brochure-content h2{

    font-size:6vw;

}

.brochure-content p{

    font-size:2.4vw;
    line-height:4vw;

}

.brochure-btn{

    justify-content:center;
    flex-wrap:wrap;

}

.download-btn,
.view-btn{

    font-size:2.5vw;
    padding:2.5vw 5vw;
    gap:2vw;

}
}
/* blogs */

.blogs-section{
    width:100%;
    padding:3vw 7vw;
    background:#f7f7f7;
}

.blogs-heading{
    text-align:center;
    margin-bottom:3vw;
}

.blogs-heading h2{
    font-size:2.4vw;
    color:#111;
    font-weight:700;
    margin-bottom:.8vw;
}

.blogs-heading p{
    width:55%;
    margin:auto;
    font-size:1vw;
    color:#666;
    line-height:1.8vw;
}



.blogs{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:2vw;
}


.blog-card{
    background:#fff;
    border-radius:1.2vw;
    overflow:hidden;
    box-shadow:0 .6vw 1.5vw rgba(0,0,0,.08);
    transition:.4s ease;
}

.blog-card:hover{
    transform:translateY(-.5vw);
    box-shadow:0 1vw 2vw rgba(0,0,0,.15);
}

.blog-image{
    width:100%;
    height:13vw;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}



.blog-content{
    padding:1.5vw;
}

.blog-content span{
    display:inline-block;
    color:#b41419;
    font-size:.85vw;
    font-weight:600;
    margin-bottom:.8vw;
}

.blog-content h3{
    font-size:1.35vw;
    color:#222;
    line-height:1.8vw;
    margin-bottom: 0.8vw;
    min-height:4vw;
}

.blog-content p{
    font-size:.95vw;
    color:#666;
    line-height:1.7vw;
    margin-bottom:1.4vw;
}

.blog-content a{
    text-decoration:none;
    color:#b41419;
    font-size:.95vw;
    font-weight:600;
    transition:.3s;
}

.blog-content a:hover{
    letter-spacing:.08vw;
}



@media(max-width:991px){

.blogs-section{
    padding:8vw 5vw;
}

.blogs-heading{
    margin-bottom:5vw;
}

.blogs-heading h2{
    font-size:4vw;
}

.blogs-heading p{
    width:80%;
    font-size:1.8vw;
    line-height:3vw;
}

.blogs{
    grid-template-columns:repeat(2,1fr);
    gap:3vw;
}

.blog-image{
    height:28vw;
}

.blog-content{
    padding:2.5vw;
}

.blog-content span{
    font-size:1.6vw;
}

.blog-content h3{
    font-size:2.4vw;
    line-height:3.2vw;
    min-height:auto;
}

.blog-content p{
    font-size:1.7vw;
    line-height:2.9vw;
}

.blog-content a{
    font-size:1.8vw;
}

}



@media(max-width:600px){

.blogs-section{
    padding:12vw 5vw;
}

.blogs-heading{
    margin-bottom:8vw;
}

.blogs-heading h2{
    font-size:7vw;
}

.blogs-heading p{
    width:100%;
    font-size:3.8vw;
    line-height:6vw;
}

.blogs{
    grid-template-columns:1fr;
    gap:6vw;
}

.blog-card{
    border-radius:4vw;
    box-shadow:0 2vw 5vw rgba(0,0,0,.08);
}

.blog-image{
    height:55vw;
}

.blog-content{
    padding:5vw;
}

.blog-content span{
    font-size:3vw;
    margin-bottom:2vw;
}

.blog-content h3{
    font-size:5vw;
    line-height:6.8vw;
    margin-bottom:3vw;
}

.blog-content p{
    font-size:3.6vw;
    line-height:6vw;
    margin-bottom:5vw;
}

.blog-content a{
    font-size:3.8vw;
}
.blog-image img {
    height: 73vw;
}
}
