    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
     :root {
        --primary-color: #00AEEF;
        /* Bright Blue */
        --secondary-color: #1C2F5C;
        /* Dark Navy */
        --accent-color: #223463;
        /* Medium Navy */
        --text-color: #333333;
        /* Dark Gray for text */
        --background-color: #ffffff;
        /* White background */
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: var(--secondary-color);
    }
    
    body,
    p,
    li,
    a,
    span {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        color: var(--text-color);
    }
    
    .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 */
    
    .heading-wrapper {
        text-align: center;
        /* Center karega heading ko */
    }
    
    .heading-border {
        display: inline-block;
        /* Isse sirf text width ka border banega */
        font-family: 'Montserrat', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--secondary-color);
        /* margin-bottom: 2rem; */
        border-bottom: 4px solid transparent;
        border-image: linear-gradient(to right, var(--primary-color) 50%, var(--secondary-color) 50%);
        border-image-slice: 1;
        padding-bottom: 0.5rem;
        text-transform: uppercase;
    }
    /* Responsive */
    
    @media (max-width: 991px) {
        .heading-border {
            font-size: 2.2rem;
        }
    }
    
    .btn-theme {
        padding: 10px;
        background-color: var(--primary-color);
        color: #ffff;
        text-decoration: none;
    }
    
    .btn-theme:hover {
        background-color: #ffff;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    /* Topbar with right-to-left text animation */
    
    .info-topbar {
        background-color: var(--primary-color);
        height: 45px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 3rem;
        font-size: 0.95rem;
        color: #fff;
    }
    
    .info-topbar .info-left span {
        margin-right: 2rem;
        color: #fff;
    }
    
    .info-topbar .info-left i,
    .info-topbar .info-right i {
        margin-right: 0.3rem;
        color: #fff;
    }
    
    .info-topbar .info-right a {
        color: #fff;
        margin-left: 1rem;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .info-topbar .info-right a:hover {
        color: var(--accent-color);
        transform: translateY(-2px);
    }
    /* Navbar improvements */
    
    .navbar {
        background-color: var(--background-color);
        padding: 1.5rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
    
    .navbar-links {
        display: flex;
        gap: 2.5rem;
        /* thoda zyada gap */
        font-size: 1.4rem;
        /* thoda bada */
    }
    
    .navbar-links a {
        color: var(--secondary-color);
        /* dark color */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s, transform 0.3s;
    }
    
    .navbar-links a:hover {
        color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .navbar-links a.active {
        color: var(--primary-color);
        border-bottom: 2px solid var(--primary-color);
    }
    /* Navbar logo */
    
    .navbar-brand img {
        height: 80px;
    }
    /* Basic Dropdown Styling */
    
    .dropdown {
        position: relative;
        display: inline-block;
    }
    
    .dropdown-toggle {
        color: var(--text-color);
        text-decoration: none;
        /* padding: 10px 18px; */
        display: inline-block;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.592);
        width: 200px;
        z-index: 1000;
        transition: all 0.3s ease;
        border-top: 3px solid var(--primary-color);
    }
    
    .dropdown-menu a {
        display: block;
        padding: 10px 16px;
        color: var(--secondary-color);
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: var(--primary-color);
        color: #fff;
    }
    /* Show on Hover */
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    /* Toggler modern style */
    
    #menuToggler {
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        font-size: 1.6rem;
        padding: 0.8rem 1.2rem;
        /* border-radius: 12px; */
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    #menuToggler:hover {
        background-color: var(--accent-color);
        transform: scale(1.05);
    }
    /* Mega overlay */
    
    .mega-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--background-color);
        display: flex;
        z-index: 1050;
        transition: left 0.6s ease;
        overflow-y: auto;
    }
    
    .mega-overlay.active {
        left: 0;
    }
    /* Left side: Form + Map + Background image */
    
    .mega-left {
        flex: 1;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        position: relative;
        background: url('https://img.freepik.com/free-vector/wave-gradient-background-luxury-dark-modern-design_343694-3088.jpg') center/cover no-repeat;
        color: #fff;
    }
    
    .mega-left::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.521);
        /* overlay */
        z-index: 0;
    }
    
    .mega-left h3,
    .mega-left form,
    .mega-left .map {
        position: relative;
        z-index: 1;
    }
    
    .mega-left h3 {
        font-family: 'Times New Roman', Times, serif;
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .mega-left form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mega-left form input,
    .mega-left form textarea {
        padding: 0.8rem;
        /* border-radius: 0.4rem; */
        border: none;
        font-size: 1rem;
    }
    
    .mega-left form button {
        background-color: var(--primary-color);
        border: none;
        color: #fff;
        padding: 0.8rem;
        border-radius: 0.4rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mega-left form button:hover {
        background-color: var(--accent-color);
        transform: scale(1.05);
    }
    
    .map-container {
        width: 100%;
        /* container full width */
        max-width: 100%;
        /* prevent overflow */
        height: 400px;
        /* desired height */
        overflow: hidden;
        /* border-radius: 12px; */
        /* optional rounded corners */
        z-index: 1;
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    /* Right side: Logo + links + social */
    
    .mega-right {
        flex: 1;
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .mega-right .logo img {
        height: 90px;
    }
    
    .mega-right .mega-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mega-right .mega-links a {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.3s, transform 0.3s;
    }
    
    .mega-right .mega-links a:hover {
        color: var(--primary-color);
        transform: translateX(10px);
    }
    
    .mega-right .mega-links .dropdown .dropdown-menu a:hover {
        color: var(--background-color);
    }
    
    .mega-right .mega-links a.active {
        color: var(--primary-color);
        font-weight: 700;
        position: relative;
    }
    
    .mega-right .mega-links a.active::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 13%;
        height: 2px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }
    /* Social Icons */
    
    .mega-right .social-icons {
        display: flex;
        gap: 1rem;
    }
    
    .mega-right .social-icons a {
        color: var(--primary-color);
        font-size: 1.8rem;
        transition: color 0.3s, transform 0.3s;
    }
    
    .mega-right .social-icons a:hover {
        color: var(--primary-color);
        transform: translateY(-3px);
    }
    /* Close button */
    
    .mega-close {
        position: absolute;
        top: 2rem;
        right: 3rem;
        font-size: 3rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--primary-color);
    }
    /* Hide desktop navbar, topbar, mega overlay on tablet & mobile */
    
    @media (max-width: 991px) {
        .topbar.info-topbar,
        .navbar,
        .mega-overlay {
            display: none !important;
        }
    }
    /* Show desktop navbar & topbar on large screens */
    
    @media (min-width: 992px) {
        .topbar.info-topbar,
        .navbar {
            display: flex !important;
        }
        .mega-overlay {
            display: flex;
            /* controlled by toggler */
        }
    }
    /* Responsive Navbar */
    
    .rsp-nav {
        display: none;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        background-color: var(--background-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 100;
    }
    
    .rsp-logo img {
        height: 70px;
    }
    
    #rsp-menu-btn {
        font-size: 1.8rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--secondary-color);
    }
    /* Overlay Menu */
    
    .rsp-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        background-color: var(--secondary-color);
        transition: height 0.5s ease;
        z-index: 200;
        color: #fff;
    }
    
    .rsp-overlay.open {
        height: 100%;
    }
    
    .rsp-overlay-wrapper {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        padding: 3rem 2rem;
    }
    
    .rsp-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .rsp-links li {
        margin-bottom: 1.8rem;
        font-size: 1.4rem;
        font-weight: 600;
        position: relative;
    }
    
    .rsp-links li a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
    }
    
    .rsp-links li a:hover {
        color: var(--primary-color);
    }
    /* Dropdown */
    
    .rsp-submenu {
        display: none;
        list-style: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .rsp-dropdown:hover .rsp-submenu {
        display: block;
    }
    /* Socials at bottom */
    
    .rsp-socials {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .rsp-socials a {
        color: #fff;
        font-size: 1.5rem;
        transition: all 0.3s;
    }
    
    .rsp-socials a:hover {
        color: var(--primary-color);
    }
    /* Close Button */
    
    .rsp-close-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }
    /* Show mobile navbar on tablet & mobile */
    
    @media (max-width: 991px) {
        .rsp-nav {
            display: flex;
        }
        .desktop-navbar {
            display: none;
        }
    }
    /* hero section */
    
    .hero-section {
        position: relative;
        width: 100%;
        height: 80vh;
        overflow: hidden;
        font-family: 'Open Sans', sans-serif;
    }
    
    .hero-slider {
        display: flex;
        width: 100%;
        /* 3 slides */
        height: 100%;
        transition: transform 1s ease-in-out;
    }
    
    .slide {
        width: 100%;
        flex-shrink: 0;
        height: 100%;
        background-size: cover;
        background-position: center;
        transform: scale(1);
        transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        position: relative;
        opacity: 0;
    }
    
    .slide.active {
        opacity: 1;
        transform: scale(1.1);
    }
    
    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.582);
        /* black overlay */
        top: 0;
        left: 0;
        z-index: 2;
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        color: #fff;
        z-index: 5;
        max-width: 700px;
    }
    
    .hero-content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        text-transform: uppercase;
        font-weight: 600;
    }
    
    .hero-content h3 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: #ffff;
    }
    
    .hero-btn {
        display: inline-block;
        padding: 0.8rem 2rem;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .hero-btn:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
    }
    /* Thumbnail navigation */
    
    .hero-thumbnails {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .hero-thumbnails .thumb {
        width: 80px;
        height: 50px;
        background-size: cover;
        background-position: center;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .hero-thumbnails .thumb.active {
        border: 2px solid var(--primary-color);
        transform: scale(1.1);
    }
    /* hero section */
    /* hero banner for all pages */
    /* Hero Banner */
    
    .er-hero-banner {
        position: relative;
        width: 100%;
        min-height: 80vh;
        /* 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(--primary-color);
        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 */
    
    @media (max-width: 991px) {
        .about-left-image {
            background-attachment: scroll;
            /* disable fixed on mobile */
            height: 300px;
        }
        .about-content-modern {
            padding: 2rem 1rem;
        }
        .content-cards {
            grid-template-columns: 1fr;
        }
        .about-content-modern h2 {
            font-size: 2.2rem;
        }
    }
    /* Hide left image on medium and small devices */
    
    @media (max-width: 991px) {
        .about-left-image {
            display: none;
        }
    }
    
    @media(max-width:600px) {
        .shape-1,
        .shape-2,
        .shape-3 {
            background-color: #ffff;
        }
    }
    /* about us */
    /* ===== Right Side Content Styling ===== */
    
    .about-content {
        font-family: 'Poppins', sans-serif;
        color: #333;
    }
    
    .about-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1c2f5c;
        /* Dark navy blue tone */
        position: relative;
        display: inline-block;
        margin-bottom: 1.2rem;
    }
    
    .about-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background-color: #007bff;
        margin-top: 8px;
        border-radius: 3px;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 2rem;
    }
    /* Highlights (Icon + Text Boxes) */
    
    .about-highlights {
        margin-top: 10px;
    }
    
    .about-highlights .icon-box {
        background: #eaf3ff;
        color: #007bff;
        font-size: 1.6rem;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        margin-right: 12px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .about-highlights .icon-box:hover {
        background-color: #007bff;
        color: #fff;
        transform: scale(1.1);
    }
    
    .about-highlights h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1c2f5c;
        margin-bottom: 5px;
    }
    
    .about-highlights p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
        margin-bottom: 0;
    }
    /* Button Styling */
    
    .about-content .btn-primary {
        background-color: #007bff;
        border: none;
        border-radius: 50px;
        padding: 10px 28px;
        font-weight: 500;
        font-size: 1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .about-content .btn-primary:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }
    /* Responsive Adjustments */
    
    @media (max-width: 991px) {
        .about-title {
            font-size: 1.8rem;
        }
        .about-highlights .icon-box {
            width: 42px;
            height: 42px;
            font-size: 1.3rem;
        }
    }
    /* About Images Stack Layout */
    
    .img-stack {
        position: relative;
        width: 100%;
        height: 420px;
    }
    
    .img-box {
        position: absolute;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    /* Left Image */
    
    .img-left {
        top: 50px;
        left: -160;
        width: 48%;
        height: 300px;
        z-index: 1;
    }
    /* Right Image */
    
    .img-right {
        top: 0;
        right: 0;
        width: 48%;
        height: 300px;
        z-index: 1;
    }
    /* Center Overlapping Image */
    
    .img-center {
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 55%;
        height: 350px;
        z-index: 3;
        border: 4px solid #fff;
    }
    
    .img-text {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        text-align: center;
        background: rgba(0, 0, 0, 0.45);
        padding: 15px;
        color: #fff;
    }
    
    .img-text h5 {
        font-size: 18px;
        margin: 0;
        font-weight: 500;
    }
    /* Responsive */
    
    @media (max-width: 992px) {
        .img-stack {
            height: 350px;
        }
        .img-left,
        .img-right,
        .img-center {
            height: 260px;
        }
        .img-center {
            top: 90px;
        }
    }
    
    @media (max-width: 768px) {
        .img-stack {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: auto;
            gap: 20px;
        }
        .img-box {
            position: relative;
            width: 90%;
            height: 240px;
            transform: none;
        }
    }
    
    .about-content .btn-primary {
        background: linear-gradient(135deg, #007bff, #00c6ff);
        border: none;
        border-radius: 0;
        /* No rounded corners */
        padding: 12px 32px;
        font-weight: 600;
        font-size: 1rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }
    
    .about-content .btn-primary::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
        transform: rotate(45deg);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }
    
    .about-content .btn-primary:hover {
        background: linear-gradient(135deg, #00c6ff, #007bff);
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
    }
    
    .about-content .btn-primary:hover::before {
        opacity: 1;
        animation: glass-swipe 1.2s ease forwards;
    }
    /* Glass Reflection Animation */
    
    @keyframes glass-swipe {
        0% {
            transform: translateX(-100%) rotate(45deg);
            opacity: 0.3;
        }
        50% {
            opacity: 0.6;
        }
        100% {
            transform: translateX(100%) rotate(45deg);
            opacity: 0;
        }
    }
    /* our products */
    
    .product-section {
        padding: 6rem 0;
        background-color: #f9f9f9;
    }
    
    .section-title {
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    
    .section-subtitlee {
        text-align: center;
        font-family: 'Open Sans', sans-serif;
        font-size: 1.2rem;
        color: var(--text-color) !important;
        /* max-width: 800px; */
        margin: 0 auto 3rem auto;
        line-height: 1.6;
    }
    
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .product-card {
        position: relative;
        overflow: hidden;
        /* border-radius: 15px; */
        cursor: pointer;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        border-bottom: 3px solid var(--primary-color);
    }
    
    .product-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-card:hover img {
        transform: scale(1.2);
    }
    
    .product-card .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .product-card:hover .overlay {
        opacity: 1;
    }
    
    .product-card .overlay i {
        color: #fff;
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .product-card .product-name {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: #FFD700;
        background: rgba(0, 0, 0, 0.5);
        padding: 0.4rem 1rem;
        border-radius: 20px;
    }
    
    .product-info {
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
    }
    
    .product-info i {
        font-size: 1.4rem;
        color: var(--primary-color);
    }
    
    .product-info h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--secondary-color);
        margin: 0;
    }
    /* Lightbox Modal */
    
    .product-lightbox {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
    }
    
    .product-lightbox img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
    }
    
    .close-lightbox {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 3rem;
        color: #fff;
        cursor: pointer;
    }
    /* our products */
    /* new section */
    
    .features-section {
        text-align: center;
        padding: 60px 20px;
    }
    
    .main-heading {
        font-size: 4rem;
        font-weight: bold;
        color: #fff;
        -webkit-text-stroke: 1px var(--primary-color);
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    
    .sub-heading {
        font-size: 1.5rem;
        color: var(--accent-color);
        max-width: 800px;
        margin: auto;
        margin-bottom: 50px;
    }
    
    .features-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .feature-box {
        width: 300px;
    }
    
    .feature-box img {
        width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #eee;
        transition: 0.3s ease;
    }
    
    .feature-box img:hover {
        transform: scale(1.05);
        border-color: var(--primary-color);
    }
    
    .feature-box p {
        text-transform: lowercase;
        font-size: 1.5rem;
        margin-top: 12px;
        color: var(--text-color);
        font-weight: 600;
    }
    /* Responsive */
    
    @media (max-width: 768px) {
        .features-container {
            flex-direction: column;
            align-items: center;
        }
        .main-heading {
            font-size: 2rem;
        }
        .feature-box img {
            width: 250px;
            height: 250px;
        }
    }
    
    @media (max-width: 768px) {
        .feature-box img {
            width: 200px;
            height: 200px;
        }
    }
    /* gallery */
    
    .river-stone-d {
        padding: 50px 0;
        text-align: center;
        background-color: var(--primary-color);
    }
    
    .ml-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 3rem;
        color: #fff;
        margin-bottom: 10px;
        text-transform: uppercase;
    }
    
    .ml-tagline {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 1.5rem;
        margin-bottom: 30px;
        color: var(--background-color);
        text-transform: uppercase;
    }
    
    .ml-slider-wrapper {
        position: relative;
        max-width: 1250px;
        margin: auto;
        overflow: hidden;
    }
    
    .ml-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    
    .ml-slide {
        min-width: 33.333%;
        margin: 0 10px;
    }
    /* 3 slides on desktop */
    
    .ml-slide img {
        width: 100%;
        /* border-radius: 10px; */
    }
    
    .ml-prev,
    .ml-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--accent-color);
        color: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 2rem;
        /* border-radius: 50%; */
    }
    
    .ml-prev {
        left: -10px;
    }
    
    .ml-next {
        right: -10px;
    }
    
    .ml-prev:hover,
    .ml-next:hover {
        background-color: var(--accent-color);
    }
    /* Responsive */
    
    @media(max-width: 1024px) {
        .ml-slide {
            min-width: 50%;
        }
        /* tablet 2 slides */
    }
    
    @media(max-width: 600px) {
        .ml-slide {
            min-width: 100%;
        }
        /* mobile 1 slide */
    }
    /* gallery */
    /* blog */
    
    .blog-section {
        background: #fff;
    }
    
    .blog-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }
    
    .blog-subtitle {
        color: #555;
        font-size: 1rem;
    }
    
    .blog-card {
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }
    
    .blog-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .blog-content h5 {
        color: #000;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }
    
    .blog-content p {
        color: #444;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .read-more {
        text-decoration: none;
        color: #000;
        border-bottom: 2px solid #f5c400;
        transition: all 0.3s ease;
    }
    
    .read-more:hover {
        color: #f5c400;
    }
    
    .btn-warning {
        background: #f5c400;
        border: none;
        color: #000;
        border-radius: 5px;
    }
    /* blog */
    /* CTA Section */
    
    .cta-wrapper {
        position: relative;
        background: url("https://hometriangle.com/blogs/content/images/2021/10/Homtriangle_office_Furniture-1.jpg") center/cover no-repeat;
        background-attachment: fixed;
        /* 👈 ye add kiya */
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        overflow: hidden;
    }
    
    .cta-wrapper .cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.623);
        /* backdrop-filter: blur(2px); */
    }
    
    .cta-content {
        position: relative;
        max-width: 800px;
        padding: 20px;
        z-index: 2;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .cta-content h2 span {
        color: var(--primary-color);
        /* apna brand color use karo */
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
        line-height: 1.6;
        color: #fff;
    }
    
    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    
    .cta-btn {
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 1rem;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .primary-btn {
        background: var(--primary-color);
        color: #fff;
    }
    
    .primary-btn:hover {
        background: var(--secondary-color);
    }
    
    .secondary-btn {
        border: 2px solid var(--primary-color);
        color: #fff;
        background: transparent;
    }
    
    .secondary-btn:hover {
        background: var(--primary-color);
        color: #fff;
    }
    /* CTA Section */
    /* 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 black;
        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(--primary-color);
    }
    
    .testimonial-text {
        font-size: 17px;
        line-height: 1.7;
        color: #000;
        margin-bottom: 30px;
    }
    
    .testimonial-name {
        font-size: 20px;
        color: var(--primary-color);
        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(--primary-color);
        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(--primary-color);
        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 */
    
    .footer {
        background: var(--background-color);
        color: var(--primary-color);
        padding: 50px 20px 20px;
        border-top: 16px solid var(--primary-color);
    }
    
    .container {
        max-width: 1200px;
        margin: auto;
    }
    
    .footer-top {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 26px;
        margin-bottom: 15px;
        font-weight: 800;
        text-transform: uppercase;
    }
    
    .footer-col ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-col ul li {
        margin: 10px 0;
    }
    
    .footer-col ul li a {
        color: #000000b9;
        text-decoration: none;
        transition: 0.3s;
        font-size: 17px;
        font-weight: 600;
    }
    
    .footer-col ul li a i {
        margin-right: 8px;
        color: var(--primary-color);
    }
    
    .footer-col ul li a:hover {
        color: var(--primary-color);
    }
    
    .newsletter-form {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .newsletter-form input {
        flex: 1;
        padding: 10px;
        border: 1px solid var(--primary-color);
        border-radius: 5px;
        outline: none;
    }
    
    .newsletter-form button {
        background: var(--primary-color);
        border: none;
        padding: 10px 20px;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
        transition: 0.3s;
    }
    
    .newsletter-form button:hover {
        background: #000000d3;
        color: var(--black);
    }
    
    .social-icons {
        margin: 15px 0;
    }
    
    .social-icons a {
        color: #000000d3;
        font-size: 18px;
        margin-right: 10px;
        display: inline-block;
        transition: 0.3s;
    }
    
    .social-icons a:hover {
        color: var(--primary-color);
    }
    
    .contact-info,
    .footer-col p {
        color: #000000d3;
        font-size: 17px;
        margin: 5px 0;
        font-weight: 500;
    }
    
    .footer-col p i {
        margin-right: 6px;
        color: #000000d3;
    }
    
    .footer-bottom {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom p {
        color: #000000d3 !important;
        font-weight: 600;
    }
    
    .footer-bottom .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .footer-bottom img {
        width: 180px;
    }
    
    hr {
        border: none;
        border-top: px solid rgb(255, 255, 255);
        margin: 20px 0;
    }
    /* Responsive */
    
    @media (max-width: 768px) {
        .newsletter-form {
            flex-direction: column;
        }
        .newsletter-form button {
            width: 100%;
        }
    }
    
    .con-footer p {
        color: #000000d3 !important;
    }
    /* footer end */
    /* about us page start */
    /* About Section Styling */
    
    .about-section {
        background-color: #f9f9f9;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }
    
    .section-subtitle {
        color: #007bff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .feature-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: transform 0.3s ease;
        color: #333;
    }
    
    .feature-link:hover {
        transform: translateY(-5px);
        color: #007bff;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-right: 15px;
        color: #007bff;
    }
    
    .feature-title {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-highlights p {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }
    
    .highlight-check {
        color: #007bff;
        margin-right: 10px;
    }
    /* Button Styling */
    
    .contact-btn {
        padding: 12px 30px;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .contact-btn:hover {
        background-color: #0056b3;
        color: #fff;
    }
    /* Image Section */
    
    .about-images {
        position: relative;
        height: 100%;
    }
    
    .main-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .experience-badge {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
    }
    
    .badge-inner {
        background-color: #007bff;
        color: #fff;
        padding: 25px;
        text-align: center;
        border-radius: 10px 0 0 0;
    }
    
    .years {
        font-size: 2.5rem;
        font-weight: 700;
    }
    
    .experience-text {
        font-size: 1rem;
        margin: 0;
    }
    
    .secondary-img-wrapper {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        padding: 0 15px 15px 0;
    }
    
    .secondary-img {
        width: 100%;
        border-radius: 10px;
    }
    /* Animations */
    
    .fade-in-left {
        animation: fadeInLeft 1s ease forwards;
    }
    
    .fade-in-right {
        animation: fadeInRight 1s ease forwards;
    }
    
    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
     :root {
        --primary-color: #00AEEF;
        /* Bright Blue */
        --secondary-color: #1C2F5C;
        /* Dark Navy */
        --accent-color: #223463;
        /* Medium Navy */
        --text-color: #333333;
        /* Dark Gray for text */
        --background-color: #ffffff;
        /* White background for cards */
    }
    /* ===== Choose Section Dark Background with Primary Wave ===== */
    
    .choose-section {
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
        z-index: 1;
        padding: 100px 0;
        background: #000;
        /* pure black background */
    }
    /* Animated primary color wave using pseudo elements */
    
    .choose-section::before,
    .choose-section::after {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: radial-gradient(circle at 50% 50%, var(--primary-color) 20%, transparent 70%);
        opacity: 0.1;
        border-radius: 50%;
        animation: waveMove 25s linear infinite;
        z-index: 0;
    }
    
    .choose-section::after {
        animation-delay: 12s;
        /* offset second wave */
    }
    /* Smooth wave movement */
    
    @keyframes waveMove {
        0% {
            transform: translateX(0) translateY(0) rotate(0deg);
        }
        50% {
            transform: translateX(60px) translateY(40px) rotate(30deg);
        }
        100% {
            transform: translateX(0) translateY(0) rotate(0deg);
        }
    }
    /* Container above waves */
    
    .choose-section .container {
        position: relative;
        z-index: 2;
    }
    /* Section Main Title */
    
    .section-main-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: #fff;
        text-align: center;
        position: relative;
    }
    
    .section-main-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        margin: 10px auto 0;
        border-radius: 2px;
    }
    /* ===== Cards Styling (Light Cards) ===== */
    
    .choose-card {
        background: var(--background-color);
        border-radius: 15px;
        padding: 35px 25px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    /* Ripple / Water drop hover animation inside card */
    
    .choose-card::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 15px;
        pointer-events: none;
        background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 10%, transparent 10.5%);
        background-size: 100% 100%;
        transform: scale(0);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }
    
    .choose-card:hover::after {
        transform: scale(4);
        opacity: 1;
    }
    /* Card hover lift effect */
    
    .choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    }
    /* Icon wrapper + rotation */
    
    .icon-wrapper {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .card-icon {
        font-size: 2.5rem;
        z-index: 2;
        transition: transform 0.7s ease;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .choose-card:hover .card-icon {
        transform: rotate(360deg);
    }
    /* Card Titles */
    
    .card-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--secondary-color);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    /* Card Text */
    
    .card-text {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-color);
    }
    /* Responsive Styling */
    
    @media (max-width: 991px) {
        .choose-card {
            padding: 25px 15px;
        }
        .card-title {
            font-size: 1.25rem;
        }
        .card-text {
            font-size: 0.95rem;
        }
    }
    /* Hero Banner */
    
    .hero-banner {
        position: relative;
        overflow: hidden;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-us/team-img.jpeg') center/cover no-repeat;
        z-index: 1;
        min-height: 500px;
        display: flex;
        align-items: center;
    }
    
    .hero-banner .container {
        position: relative;
        z-index: 10;
    }
    /* Decorative overlays */
    
    .hero-overlay-left,
    .hero-overlay-right {
        position: absolute;
        width: 50px;
        height: 500px;
        background: var(--bs-primary);
        transform: rotate(45deg);
        z-index: 2;
    }
    
    .hero-overlay-left {
        top: -150px;
        left: -25px;
    }
    
    .hero-overlay-right {
        bottom: -150px;
        right: -25px;
    }
    /* Banner Text */
    
    .hero-content {
        color: #fff;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary-color);
        /* Golden for premium feel */
        margin-bottom: 0.5rem;
    }
    
    .heroe-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #fff !important;
    }
    /* Button Styling */
    
    .hero-btn-wrapper .hero-btn {
        background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
        color: #fff;
        font-weight: 600;
        padding: 12px 35px;
        border-radius: 0;
        /* Removed rounded corners */
        text-transform: uppercase;
        transition: all 0.3s ease;
    }
    
    .hero-btn-wrapper .hero-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    }
    /* Optional small decorative dark overlays for depth */
    
    .hero-banner::before,
    .hero-banner::after {
        content: "";
        position: absolute;
        width: 30px;
        height: 500px;
        background: rgba(0, 0, 0, 0.3);
        transform: rotate(45deg);
        z-index: 1;
    }
    
    .hero-banner::before {
        top: -120px;
        left: 0;
    }
    
    .hero-banner::after {
        bottom: -120px;
        right: 0;
    }
    /* Responsive */
    
    @media (max-width: 991px) {
        .heroe-title {
            font-size: 2rem;
        }
        .hero-btn-wrapper {
            justify-content: flex-start !important;
            margin-top: 20px;
        }
    }
    /* about us page end */
    /* Default: sab images visible on large screens */
    
    .img-box {
        display: block;
    }
    /* Small devices (below 768px) par sirf center image visible */
    
    @media (max-width: 767px) {
        .img-left,
        .img-right {
            display: none !important;
        }
        .img-center {
            display: block !important;
            margin: 0 auto;
            position: initial !important;
        }
        .img-center img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            bottom: 0px;
        }
        .img-text {
            text-align: center;
            /* display: none; */
        }
        .img-box {
            width: 100% !important;
            height: 100% !important;
        }
    }
    
    @media (max-width: 900px) {
        .hero-content {
            top: 30%;
        }
    }
    
    @media (max-width: 550px) {
        .hero-content {
            top: 23%;
        }
        .er-hero-btn {
            padding: 10px;
        }
    }
    
    @media (max-width: 350px) {
        .hero-content {
            top: 19%;
        }
        .er-hero-btn {
            padding: 10px;
        }
        .hero-content h1 {
            font-size: 1.8rem !important;
        }
        .hero-content p {
            font-size: 20px;
        }
    }