   :root {
            --dark-navy: #2B2A2E;
            --indigo-blue: #312B5B;
            --pink-accent: #EC456D;
            --gold: #D4B66C;
            --dark-gold: #836F4E;
            --white: #FFFFFF;
            --light-grey: #EAEAEA;
            --gradient-bg: linear-gradient(135deg, var(--dark-navy) 0%, var(--indigo-blue) 100%);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-navy);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Modern Navigation */
        .navbar-modern {
            background: #FAFAFA ;
            backdrop-filter: blur(10px);
            /* padding: 0.8rem 0; */
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(212, 182, 108, 0.1);
            transition: all 0.4s ease;
            z-index: 1030;
        }
        
        .navbar-modern.scrolled {
            /* padding: 0.5rem 0; */
            background: #FAFAFA;
        }
        
        .navbar-brand-logo {
            height: 50px;
            width: auto;
            transition: all 0.3s;
        }
        
        .navbar-brand-text {
            font-weight: 700;
            color: var(--white);
            font-size: 1.5rem;
            margin-left: 10px;
        }
        
        .navbar-brand-text span {
            color: var(--gold);
        }

                .dropdown-toggle-modern{
                    background-color: #1a365d;
                    color:whitesmoke
                }
        
        .nav-link-modern {
            color: #1a365d !important;
            font-size: medium;
            font-weight: 700;
            padding-top: 0.5rem !important;
              padding-bottom: 0.5rem !important;
        margin-left:17px !important;
            /* padding-right:1rem !important; */
            margin: 0 0.2rem;
            border-radius: 6px;
            transition: all 0.3s;
            position: relative;
            text-decoration: none;
            text-align: center;
        }
        
        .nav-link-modern:hover {
            color: var(--gold) !important;
            background-color: rgba(212, 182, 108, 0.1);
            padding:1rem;
        
        }
        
        .nav-link-modern.active {
            color: var(--gold) !important;
            font-weight: 600;
        }
        
        .nav-link-modern.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 5%;
            width: 100% !important;
            height: 3px;
            background: var(--gold);
            border-radius: 3px;
        }
        
        /* Dropdown Styling */
        .dropdown-menu-modern {
            background: var(--dark-navy);
            border: 1px solid rgba(212, 182, 108, 0.2);
            border-radius: 10px;
            padding: 0.5rem;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-item-modern {
            color: var(--light-grey);
            padding: 0.7rem 1rem;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
        }
        
        .dropdown-item-modern:hover {
            background: rgba(236, 69, 109, 0.1);
            color: var(--gold);
            padding-left: 1.3rem;
        }
        
        .dropdown-item-modern i {
            width: 20px;
            margin-right: 10px;
            color: var(--gold);
        }
        
        .btn-contact-modern {
            background: linear-gradient(135deg, var(--pink-accent) 0%, #d43d62 100%);
            font-size: large;
            color: white;
            border-radius: 30px;
            padding: 0.6rem 1.8rem;
            font-weight: 600;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(236, 69, 109, 0.3);
        }
        
        .btn-contact-modern:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(236, 69, 109, 0.4);
            color: white;
        }
        
        /* Sliding Banner / Carousel */
        .hero-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-top: 30px;
            height: 85vh;
            min-height: 900px;
        }
        
        .carousel-inner {
            height: 100%;
        }
        
        .carousel-item {
            height: 100%;
            transition: transform 0.8s ease-in-out;
            position: relative;
        }
        
        .carousel-slide {
            height: 100% !important;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
     
        
        /* .slide-1 {
            background-image: url('./assets/jai-bhavani-banner-1.png');
         
        }
        
        .slide-2 {
            background-image: url('./assets/jai-bhavani-banner-2.png');
                        background-size: cover;

        }
        
        .slide-3 {
            background-image: url('./assets/jai-bhavani-banner-3.png');
                        background-size: cover;

        }
        
        .slide-4 {
            background-image: url('./assets/jai-bhavani-banner-4.png');
                        background-size: cover;

        } */
        
        .carousel-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 0 2rem;
            max-width: 800px;
        }
        
        .carousel-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .carousel-title span {
            color: var(--gold);
            background: linear-gradient(90deg, var(--gold), #f5d37c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .carousel-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 700px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .highlight-modern {
            color: var(--gold);
            font-weight: 700;
            position: relative;
            padding: 0 5px;
        }
        
        .highlight-modern:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: rgba(212, 182, 108, 0.2);
            z-index: -1;
        }
        
        /* Carousel Controls */
        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
            z-index: 10;
        }
        
        .carousel-btn {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(212, 182, 108, 0.3);
            color: var(--gold);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-btn:hover {
            background: rgba(212, 182, 108, 0.2);
            color: white;
            border-color: var(--gold);
            transform: scale(1.1);
        }
        
        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 15px;
            z-index: 10;
        }
        
        .carousel-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-indicator.active {
            background: var(--gold);
            transform: scale(1.2);
            border-color: white;
        }
        
        /* Years Badge */
        .years-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(212, 182, 108, 0.3);
            animation: fadeIn 0.8s ease;
        }
        
        /* Company Intro */
        .intro-section-modern {
            background-color: var(--white);
            padding: 6rem 0;
            position: relative;
        }
        
     
      
        
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .intro-text-modern {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
        }
        
        .iso-badge-modern {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 1.5rem;
            box-shadow: 0 5px 15px rgba(49, 43, 91, 0.2);
        }
        
        .intro-image-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s;
        }
        
        .intro-image-container:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .intro-image-container:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(212, 182, 108, 0.1), rgba(49, 43, 91, 0.1));
            z-index: 1;
        }
        
        /* Products Section */
        .products-section-modern {
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
            padding: 6rem 0;
            position: relative;
        }
        
        .products-section-modern:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--white);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
        }
        
        .product-card-modern {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .product-card-modern:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .product-card-modern:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .product-card-modern:hover:after {
            transform: scaleX(1);
        }
        
        .product-img-modern {
            height: 200px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .product-img-modern:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .product-card-modern:hover .product-img-modern:before {
            transform: translateX(100%);
        }
        
        .product-body-modern {
            padding: 2rem;
        }
        
        .product-title-modern {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        
        .product-link-modern {
            color: var(--pink-accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .product-link-modern:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Footer */
        .footer-modern {
            background: var(--dark-navy);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .footer-modern .container > .row {
            justify-content: center;
            align-items: center;
        }
        
        .footer-modern .col-lg-4 {
            margin-bottom: 2.5rem;
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        
        .footer-title-modern:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--pink-accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-links-modern a {
            color: var(--light-grey);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: all 0.3s;
            padding: 0.3rem 0;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .contact-info-modern {
            margin-bottom: 1rem;
        }
        
        .contact-info-modern p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-info-modern i {
            color: var(--gold);
            width: 20px;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .copyright-modern {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .qr-code-modern {
            background: white;
            width: 130px;
            height: 130px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-top: 1rem;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .qr-code-modern:hover {
            transform: scale(1.05);
        }
        
        .company-tagline {
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        /* Category Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .category-item {
            background: white;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(212, 182, 108, 0.3);
        }
        
        .category-icon {
            font-size: 2.5rem;
            color: var(--indigo-blue);
            margin-bottom: 1rem;
        }
        
        .category-title {
            font-weight: 600;
            color: var(--indigo-blue);
            margin-bottom: 0.5rem;
        }
        
        .category-count {
            color: var(--pink-accent);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Offcanvas Mobile Menu */
        .offcanvas-modern {
            background: var(--dark-navy);
        }
        
        .offcanvas-header-modern {
            background: var(--indigo-blue);
            color: white;
            padding: 1.5rem;
        }
        
        .offcanvas-title-modern {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .offcanvas-body-modern {
            padding: 0;
        }
        
        .offcanvas-nav-modern .nav-link {
            color: white !important;
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .offcanvas-nav-modern .nav-link:hover {
            background: rgba(212, 182, 108, 0.1);
            color: var(--gold) !important;
            padding-left: 2rem;
        }
        
        .offcanvas-nav-modern .nav-link i {
            width: 25px;
            margin-right: 10px;
            color: var(--gold);
        }
        
        .offcanvas-dropdown {
            padding-left: 2.5rem;
            background: rgba(0, 0, 0, 0.1);
        }
        
        .offcanvas-dropdown .nav-link {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            border-bottom: none;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .carousel-title {
                font-size: 2.8rem;
            }
            
            .carousel-subtitle {
                font-size: 1.2rem;
            }
            
            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .hero-carousel {
                height: 70vh;
                min-height: 500px;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
            
            .navbar-brand-logo {
                height: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-title {
                font-size: 2.3rem;
            }
            
            .carousel-subtitle {
                font-size: 1.1rem;
            }
            
            .carousel-btn {
                width: 45px;
                height: 45px;
                padding: 0 1rem;
            }
            
            .carousel-controls {
                padding: 0 1rem;
            }
            
            .hero-carousel {
                height: 60vh;
                min-height: 400px;
               
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .footer-modern .col-lg-4 {
                text-align: center;
            }
            
            .contact-info-modern p {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-title {
                font-size: 1.8rem;
            }
            
            .carousel-subtitle {
                font-size: 1rem;
            }
            
            .hero-carousel {
                height: 50vh;
                min-height: 350px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

         :root {
            --dark-navy: #2B2A2E;
            --indigo-blue: #312B5B;
            --pink-accent: #EC456D;
            --gold: #D4B66C;
            --dark-gold: #836F4E;
            --white: #FFFFFF;
            --light-grey: #EAEAEA;
            --gradient-bg: linear-gradient(135deg, var(--dark-navy) 0%, var(--indigo-blue) 100%);
        }
   
        
        /* Hero Banner - Attractive Design */
        .about-hero-banner {
        
           
               position: relative;
               width:100%;
    height: 30vh;
    min-height: 600px;
     background-image:url("./assets/img/about-banner2.jpeg") ;
    background-size: cover;

    display: flex;
    align-items: center;
    margin-top: 100px;
    overflow: hidden;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Company Intro Section */
        .company-intro-section {
            padding-top: 6rem ;
            padding-bottom:2rem;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
            position: relative;
        }
        
        .company-intro-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--white);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
        }
        
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .intro-text-modern {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        /* Leadership Section */
        .leadership-section {
            padding: 6rem 0;
            background: var(--white);
            position: relative;
        }
        
        .leadership-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(180deg, var(--light-grey) 0%, var(--white) 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
        }
        
        .leadership-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
            padding: 3rem 2rem;
        }
        
        .leadership-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .leader-img-placeholder {
            width: 400px;
            height: 400px;
            
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 2px 3px 5px solid black;
        }
        
        .leader-name {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        
        .leader-title {
            color: var(--pink-accent);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .leader-experience {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        /* Mission Vision Section */
        .mission-vision-section {
            padding-bottom: 2rem ;
             padding-top: 2rem ;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581092580497-e0d4cb184827?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .mission-card, .vision-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            
            border-radius: 15px;
            padding-left: 3rem;
            padding-right: 3rem;
            padding-bottom: 3rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
        }
        
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .mission-icon, .vision-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .mission-title, .vision-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        /* Speciality Section */
        .speciality-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .speciality-item {
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s;
            height: 100%;
            border: 1px solid var(--gold);
        }
        
        .speciality-item:hover {
            background: var(--light-grey);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .speciality-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .speciality-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        /* Quality Section */
        .quality-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .quality-badge {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(49, 43, 91, 0.2);
        }
        
        .quality-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .quality-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-navy);
            font-size: 1.5rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
       
        
        /* Responsive */
        @media (max-width: 992px) {
            .banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .banner-title {
                font-size: 2.5rem;
            }
            
            .banner-subtitle {
                font-size: 1.2rem;
            }
            
            .about-hero-banner {
                height: 60vh;
                min-height: 500px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .banner-title {
                font-size: 2rem;
            }
            
            .banner-subtitle {
                font-size: 1rem;
            }
            
            .about-hero-banner {
                height: 50vh;
                min-height: 400px;
                margin-top: 70px;
            }
        }

        /* our works */

            /* Works Hero Banner */
        .works-hero-banner {
            position: relative;
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(rgba(43, 42, 46, 0.85), rgba(49, 43, 91, 0.9)),url("./assets/img/motorized-rolling-shutter-3.png");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .works-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .works-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            animation: pulse 2s infinite;
        }
        
        .works-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .works-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Portfolio Section */
        .portfolio-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .filter-btn {
            background: white;
            color: var(--indigo-blue);
            border: 2px solid var(--indigo-blue);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--indigo-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(49, 43, 91, 0.2);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            height: 100%;
            position: relative;
        }
        
        .portfolio-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .portfolio-item:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .portfolio-item:hover:after {
            transform: scaleX(1);
        }
        
        .portfolio-img {
            height: 250px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.05);
        }
        
        .portfolio-img:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
            z-index: 1;
        }
        
        .portfolio-item:hover .portfolio-img:before {
            transform: translateX(100%);
        }
        
        .portfolio-body {
            padding: 1.8rem;
        }
        
        .portfolio-category {
            display: inline-block;
            background: rgba(212, 182, 108, 0.15);
            color: var(--dark-gold);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .portfolio-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        
        .portfolio-description {
            color: #666;
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }
        
        .portfolio-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        
        .portfolio-feature {
            background: var(--light-grey);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--indigo-blue);
        }
        
        .portfolio-link {
            color: var(--pink-accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .portfolio-link:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Statistics Section */
        .statistics-section {
            padding: 5rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581092580497-e0d4cb184827?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .stat-item {
            padding: 2rem;
            transition: transform 0.3s;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-navy);
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--gold);
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Client Testimonials */
        .testimonials-section {
            /* padding: 6rem 0; */
            background: var(--white);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.3s;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-rating {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .testimonial-text {
            color: #666;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            font-weight: 600;
        }
        
        .testimonial-author-info h5 {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 0.2rem;
        }
        
        .testimonial-author-info p {
            color: var(--pink-accent);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        /* Call to Action */
        .works-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            text-align: center;
        }
        
        .works-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .works-cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .works-banner-title {
                font-size: 3rem;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .works-banner-title {
                font-size: 2.5rem;
            }
            
            .works-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .works-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .works-banner-title {
                font-size: 2rem;
            }
            
            .works-banner-subtitle {
                font-size: 1rem;
            }
            
            .works-hero-banner {
                height: 45vh;
                min-height: 350px;
            }
            
            .portfolio-filters {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }
            
            .works-cta-title {
                font-size: 2rem;
            }
        }

        /* services */

            :root {
            --dark-navy: #2B2A2E;
            --indigo-blue: #312B5B;
            --pink-accent: #EC456D;
            --gold: #D4B66C;
            --dark-gold: #836F4E;
            --white: #FFFFFF;
            --light-grey: #EAEAEA;
            --gradient-bg: linear-gradient(135deg, var(--dark-navy) 0%, var(--indigo-blue) 100%);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-navy);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Services Hero Banner */
        .services-hero-banner {
            position: relative;
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(rgba(43, 42, 46, 0.85), rgba(49, 43, 91, 0.9));
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .services-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .services-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .services-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .services-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Services Section */
        .services-main-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            margin-bottom: 2rem;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .service-card:hover:after {
            transform: scaleX(1);
        }
        
        .service-icon {
            height: 150px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .service-card:hover .service-icon:before {
            transform: translateX(100%);
        }
        
        .service-body {
            padding: 2rem;
        }
        
        .service-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            min-height: 3rem;
        }
        
        .service-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            margin-bottom: 1.5rem;
        }
        
        .service-feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.7rem;
            color: #555;
        }
        
        .service-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        /* Warranty Section */
        .warranty-section {
            padding: 6rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581092580497-e0d4cb184827?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .warranty-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
            text-align: center;
        }
        
        .warranty-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .warranty-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .warranty-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        /* Clients Section */
        .clients-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .client-item {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .client-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(212, 182, 108, 0.3);
        }
        
        .client-name {
            font-weight: 600;
            color: var(--indigo-blue);
            margin-top: 1rem;
        }
        
        /* Service Process Section */
        .process-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: linear-gradient(to bottom, var(--gold), var(--pink-accent));
            transform: translateX(-50%);
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
        }
        
        .process-step:nth-child(odd) {
            flex-direction: row;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            flex: 1;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(212, 182, 108, 0.2);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 2rem;
            position: relative;
            z-index: 2;
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--gold);
        }
        
        .step-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        /* Service CTA Section */
        .service-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            text-align: center;
        }
        
        .service-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .service-cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Section Title Styling */
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .section-title-center {
            text-align: center;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Navigation Styles - Matching Existing */
       
        /* Responsive */
        @media (max-width: 992px) {
            .services-banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
            
            .process-timeline:before {
                left: 30px;
            }
            
            .process-step {
                flex-direction: row !important;
                align-items: flex-start;
            }
            
            .step-number {
                margin-right: 2rem;
                margin-left: 0;
            }
            
            .step-content {
                margin-top: 0;
            }
        }
        
        @media (max-width: 768px) {
            .services-banner-title {
                font-size: 2.5rem;
            }
            
            .services-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .services-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .service-cta-title {
                font-size: 2rem;
            }
            
            .process-step {
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .services-banner-title {
                font-size: 2rem;
            }
            
            .services-banner-subtitle {
                font-size: 1rem;
            }
            
            .services-hero-banner {
                height: 45vh;
                min-height: 350px;
            }
            
            .process-timeline:before {
                left: 20px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                margin-right: 1rem;
            }
            
            .step-content {
                padding: 1.5rem;
            }
        }


        /* contact page */


          :root {
            --dark-navy: #2B2A2E;
            --indigo-blue: #312B5B;
            --pink-accent: #EC456D;
            --gold: #D4B66C;
            --dark-gold: #836F4E;
            --white: #FFFFFF;
            --light-grey: #EAEAEA;
            --gradient-bg: linear-gradient(135deg, var(--dark-navy) 0%, var(--indigo-blue) 100%);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-navy);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Modern Navigation */
    
        
        /* Contact Hero Banner */
        .contact-hero-banner {
            position: relative;
            height: 60vh;
            min-height: 400px;
                background:url("./assets/img/contact.png");

          
            background-size: cover;
            background-position: center -60px;
            display: flex;
            align-items: center;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .contact-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .contact-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
        }
        
        .contact-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .contact-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-main-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Contact Cards */
        .contact-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding: 2.5rem;
            text-align: center;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .contact-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .contact-card:hover:after {
            transform: scaleX(1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }
        
        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .contact-card-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        
        .contact-info p {
            color: #666;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .contact-link {
            color: var(--pink-accent);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .contact-link:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            position: relative;
        }
        
        .map-container {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(43, 42, 46, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        
        .map-button {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            border: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            text-decoration: none;
        }
        
        .map-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(212, 182, 108, 0.5);
            color: var(--dark-navy);
        }
        
        .map-button i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Contact Form */
        .form-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .contact-form-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            padding: 3rem;
            border: 1px solid rgba(212, 182, 108, 0.2);
        }
        
        .form-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .form-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .form-control-modern {
            border: 2px solid rgba(49, 43, 91, 0.1);
            border-radius: 10px;
            padding: 0.8rem 1rem;
            font-size: 1rem;
            transition: all 0.3s;
            margin-bottom: 1.5rem;
        }
        
        .form-control-modern:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 182, 108, 0.25);
        }
        
        .form-label {
            color: var(--indigo-blue);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* Business Hours */
        .hours-section {
            padding: 4rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .hours-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
        }
        
        .hours-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .hours-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
        }
        
        .hours-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        /* Footer */
        .footer-modern {
            background: var(--dark-navy);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        
        .footer-title-modern:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--pink-accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-links-modern a {
            color: var(--light-grey);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: all 0.3s;
            padding: 0.3rem 0;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .contact-info-modern {
            margin-bottom: 1rem;
        }
        
        .contact-info-modern p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-info-modern i {
            color: var(--gold);
            width: 20px;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .copyright-modern {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .contact-banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact-banner-title {
                font-size: 2.5rem;
            }
            
            .contact-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .contact-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .contact-form-container {
                padding: 2rem;
            }
            
            .map-container {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-banner-title {
                font-size: 2rem;
            }
            
            .contact-banner-subtitle {
                font-size: 1rem;
            }
            
            .contact-hero-banner {
                height: 45vh;
                min-height: 350px;
            }
            
            .map-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* shutter */

                /* Shutters Hero Banner */
                .shutters-hero-banner {
                    position: relative;
                    height: 40vh;
                    min-height: 300px;
                    background: linear-gradient(rgba(43, 42, 46, 0.85), rgba(49, 43, 91, 0.7)), url('./assets/img/motorized-rolling-shutter-3.png');
                    background-size: cover;
                    background-position: center;
                    display: flex;
                    align-items: center;
                    margin-top: 80px;
                    overflow: hidden;
                }
        
        .shutters-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .shutters-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .shutters-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .shutters-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Section Styles */
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }
        
        /* Company Intro Section */
        .company-intro-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .company-tagline {
            color: var(--pink-accent);
            font-weight: 600;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .intro-text-modern {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .quality-badge {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 1.5rem;
            box-shadow: 0 5px 15px rgba(49, 43, 91, 0.2);
        }
        
        /* Shutter Types Section */
        .shutter-types-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .shutter-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .shutter-type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .shutter-type-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .shutter-type-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .shutter-type-card:hover:after {
            transform: scaleX(1);
        }
        
        .shutter-img-placeholder {
            height: 250px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .shutter-img-placeholder:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .shutter-type-card:hover .shutter-img-placeholder:before {
            transform: translateX(100%);
        }
        
        .shutter-type-body {
            padding: 2rem;
        }
        
        .shutter-type-badge {
            display: inline-block;
            background: rgba(212, 182, 108, 0.15);
            color: var(--dark-gold);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .shutter-type-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            min-height: 3rem;
        }
        
        .shutter-type-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .shutter-features {
            margin-bottom: 1.5rem;
        }
        
        .shutter-feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.7rem;
            color: #555;
        }
        
        .shutter-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .shutter-link-modern {
            color: var(--pink-accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .shutter-link-modern:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Features Section */
        .features-section {
            padding: 6rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581092580497-e0d4cb184827?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-navy);
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        /* Applications Section */
        .applications-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .application-item {
            display: flex;
            align-items: center;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .application-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(212, 182, 108, 0.3);
        }
        
        .application-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-right: 2rem;
            flex-shrink: 0;
        }
        
        .application-content h4 {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        /* Shutter CTA Section */
        .shutter-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            text-align: center;
        }
        
        .shutter-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .shutter-cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
       
        /* Responsive */
        @media (max-width: 992px) {
            .shutters-banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
            
            .shutter-types-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .shutters-banner-title {
                font-size: 2.5rem;
            }
            
            .shutters-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .shutters-hero-banner {
                height: 60vh;
                min-height: 500px;
                margin-top:0px;
                padding-top:10px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .shutter-cta-title {
                font-size: 2rem;
            }
            
            .application-item {
                flex-direction: column;
                text-align: center;
            }
            
            .application-icon {
                margin-right: 0;
                margin-bottom: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .shutters-banner-title {
                font-size: 2rem;
            }
            
            .shutters-banner-subtitle {
                font-size: 1rem;
            }
            
            .shutters-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .shutter-types-grid {
                grid-template-columns: 1fr;
            }
        }


        /* accessories */

          :root {
            --dark-navy: #2B2A2E;
            --indigo-blue: #312B5B;
            --pink-accent: #EC456D;
            --gold: #D4B66C;
            --dark-gold: #836F4E;
            --white: #FFFFFF;
            --light-grey: #EAEAEA;
            --gradient-bg: linear-gradient(135deg, var(--dark-navy) 0%, var(--indigo-blue) 100%);
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-navy);
            /* overflow-x: hidden; */
            line-height: 1.6;
        }
     
        
        /* Accessories Hero Banner */
        .accessories-hero-banner {
            position: relative;
            height: 70vh;
            max-height: 600px;
            background: linear-gradient(rgba(43, 42, 46, 0.85), rgba(49, 43, 91, 0.9))
                        ;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .accessories-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .accessories-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .accessories-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .accessories-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Section Styles */
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }
        
        /* Accessories Intro Section */
        .accessories-intro-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .intro-text-modern {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .quality-badge {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 1.5rem;
            box-shadow: 0 5px 15px rgba(49, 43, 91, 0.2);
        }
        
        /* Accessories Categories Section */
        .categories-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
            padding: 2.5rem 2rem;
            position: relative;
        }
        
        .category-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .category-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .category-card:hover:after {
            transform: scaleX(1);
        }
        
        .category-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }
        
        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
        }
        
        .category-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .category-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Products Grid Section */
        .products-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .product-img-placeholder {
            height: 200px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .product-img-placeholder:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .product-card:hover .product-img-placeholder:before {
            transform: translateX(100%);
        }
        
        .product-body {
            padding: 1.5rem;
        }
        
        .product-badge {
            display: inline-block;
            background: rgba(212, 182, 108, 0.15);
            color: var(--dark-gold);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .product-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        
        .product-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .product-specs {
            margin-bottom: 1.5rem;
        }
        
        .product-spec {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: #555;
            font-size: 0.9rem;
        }
        
        .product-spec i {
            color: var(--gold);
            margin-right: 8px;
            font-size: 0.8rem;
        }
        
        .product-link-modern {
            color: var(--pink-accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        
        .product-link-modern:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Features Section */
        .features-section {
            padding: 6rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-navy);
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        /* Specifications Section */
        .specifications-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .spec-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 2rem;
        }
        
        .spec-header {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            padding: 1.5rem;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .spec-row {
            display: grid;
            grid-template-columns: 1fr 2fr;
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .spec-row:nth-child(even) {
            background: rgba(49, 43, 91, 0.03);
        }
        
        .spec-row:last-child {
            border-bottom: none;
        }
        
        .spec-label {
            color: var(--indigo-blue);
            font-weight: 600;
        }
        
        .spec-value {
            color: #555;
        }
        
        /* Accessories CTA Section */
        .accessories-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            text-align: center;
        }
        
        .accessories-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .accessories-cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
        .footer-modern {
            background: var(--dark-navy);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .footer-modern .container > .row {
            justify-content: center;
            align-items: center;
        }
        
        .footer-modern .col-lg-4 {
            margin-bottom: 2.5rem;
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        
        .footer-title-modern:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--pink-accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-links-modern a {
            color: var(--light-grey);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: all 0.3s;
            padding: 0.3rem 0;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .contact-info-modern {
            margin-bottom: 1rem;
        }
        
        .contact-info-modern p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-info-modern i {
            color: var(--gold);
            width: 20px;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .copyright-modern {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .qr-code-modern {
            background: white;
            width: 130px;
            height: 130px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-top: 1rem;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .qr-code-modern:hover {
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .accessories-banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .accessories-banner-title {
                font-size: 2.5rem;
            }
            
            .accessories-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .accessories-hero-banner {
                height: 60vh;
                min-height: 500px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .accessories-cta-title {
                font-size: 2rem;
            }
            
            .spec-row {
                grid-template-columns: 1fr;
                padding: 1rem;
            }
            
            .spec-label {
                margin-bottom: 0.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .accessories-banner-title {
                font-size: 2rem;
            }
            
            .accessories-banner-subtitle {
                font-size: 1rem;
            }
            
            .accessories-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .category-card {
                padding: 2rem 1.5rem;
            }
        }

        /* products */

              
        /* Products Hero Banner */
        .products-hero-banner {
            position: relative;
            height: 30vh;
            min-height: 300px;
            background: url("./assets/img/products-banner.jpg");

            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .products-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .products-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
        }
        
        .products-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .products-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Featured Products Section */
        .featured-products-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
            left: 0;
            border-radius: 5px;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }
        
        /* Product Categories */
        .product-categories {
            padding: 5rem 0;
            background: var(--white);
        }
        
        .category-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .category-btn {
            background: white;
            color: var(--indigo-blue);
            border: 2px solid var(--indigo-blue);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--indigo-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(49, 43, 91, 0.2);
        }
        
        .category-btn i {
            margin-right: 10px;
        }
        
        /* Product Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }
        
        .product-card-modern {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .product-card-modern:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .product-card-modern:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .product-card-modern:hover:after {
            transform: scaleX(1);
        }
        
        .product-img-modern {
            height: 250px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .product-img-modern:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .product-card-modern:hover .product-img-modern:before {
            transform: translateX(100%);
        }
        
        .product-body-modern {
            padding: 2rem;
        }
        
        .product-badge {
            display: inline-block;
            background: rgba(212, 182, 108, 0.15);
            color: var(--dark-gold);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .product-title-modern {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            min-height: 3rem;
        }
        
        .product-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .product-features {
            margin-bottom: 1.5rem;
        }
        
        .product-feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.7rem;
            color: #555;
        }
        
        .product-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .product-link-modern {
            color: var(--pink-accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .product-link-modern:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Product Highlight Section */
        .product-highlight-section {
            padding: 2rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581092580497-e0d4cb184827?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        
        .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
            text-align: center;
        }
        
        .highlight-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .highlight-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .highlight-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        /* Accessories Section */
        .accessories-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .accessories-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            text-align: center;
            padding: 2rem;
        }
        
        .accessories-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .accessories-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }
        
        .accessories-card:hover .accessories-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* Product CTA Section */
        .product-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            text-align: center;
        }
        
        .product-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .product-cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
        .footer-modern {
            background: var(--dark-navy);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .footer-modern .container > .row {
            justify-content: center;
            align-items: center;
        }
        
        .footer-modern .col-lg-4 {
            margin-bottom: 2.5rem;
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        
        .footer-title-modern:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--pink-accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-links-modern a {
            color: var(--light-grey);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: all 0.3s;
            padding: 0.3rem 0;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .contact-info-modern {
            margin-bottom: 1rem;
        }
        
        .contact-info-modern p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-info-modern i {
            color: var(--gold);
            width: 20px;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .copyright-modern {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .qr-code-modern {
            background: white;
            width: 130px;
            height: 130px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-top: 1rem;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .qr-code-modern:hover {
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .products-banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .products-banner-title {
                font-size: 2.5rem;
            }
            
            .products-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .products-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .product-cta-title {
                font-size: 2rem;
            }
            
            .category-nav {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .products-banner-title {
                font-size: 2rem;
            }
            
            .products-banner-subtitle {
                font-size: 1rem;
            }
            
            .products-hero-banner {
                height: 45vh;
                min-height: 350px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
        }
       
        /* boom barrier */

                :root {
            --primary: #1a365d;
            --secondary: #c53030;
            --accent: #d69e2e;
            --light: #f7fafc;
            --dark: #2d3748;
            --gold: #d69e2e;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light);
            color: var(--dark);
           
        }
        
       
        /* Boom Barriers Hero Banner */
        .boom-hero-banner {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(45, 55, 72, 0.9)),url("./assets/img/automatic-boom-barrier.jpg");
            background-size: cover;
            background-position: top;
            padding: 120px 0 100px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .boom-banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .boom-banner-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .boom-banner-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .boom-banner-title span {
            color: var(--gold);
            position: relative;
        }
        
        .boom-banner-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            animation: underline 2s infinite;
        }
        
        @keyframes underline {
            0%, 100% { width: 100%; }
            50% { width: 0%; left: 100%; }
        }
        
        .boom-banner-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* Company Intro Section */
        .company-intro-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title-modern {
            color: var(--primary);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
    
        
        .section-title-center {
            text-align: center;
        }
        
        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .company-tagline {
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .intro-text-modern {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #4a5568;
        }
        
        .quality-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .intro-image-container {
            position: relative;
            padding: 20px;
        }
        
        .boom-img-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 8rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        /* Boom Types Section */
        .boom-types-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        }
        
        .section-subtitle {
            color: #4a5568;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
            line-height: 1.6;
        }
        
        .boom-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .boom-type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .boom-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--gold);
        }
        
        .boom-img-placeholder-sm {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 4rem;
        }
        
        .boom-type-body {
            padding: 25px;
        }
        
        .boom-type-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .boom-type-title {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .boom-type-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 80px;
        }
        
        .boom-features {
            margin-bottom: 25px;
        }
        
        .boom-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #4a5568;
        }
        
        .boom-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .boom-link-modern {
            display: inline-flex;
            align-items: center;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .boom-link-modern:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        /* Specifications Section */
        .specifications-section {
            padding: 100px 0;
            background: white;
        }
        
        .specs-card {
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            padding: 40px;
            color: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 3px solid var(--gold);
        }
        
        .specs-title {
            color: var(--gold);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .specs-list {
            list-style: none;
            padding: 0;
        }
        
        .specs-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }
        
        .specs-list li:last-child {
            border-bottom: none;
        }
        
        .specs-list i {
            color: var(--gold);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            position: relative;
            overflow: hidden;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--gold), var(--accent));
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Applications Section */
        .applications-section {
            padding: 100px 0;
            background: white;
        }
        
        .application-item {
            display: flex;
            align-items: flex-start;
            padding: 30px;
            background: white;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .application-item:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        /* .application-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.8rem;
            margin-right: 25px;
            flex-shrink: 0;
        } */
        
        .application-content h4 {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .application-content p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Boom CTA Section */
        .boom-cta {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(45, 55, 72, 0.95)), 
                        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }
        
        .boom-cta-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .boom-cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* Footer Modern */
        .footer-modern {
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            color: white;
            padding: 80px 0 30px;
            border-top: 5px solid var(--gold);
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        /* .footer-title-modern::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
        } */
        
        .footer-links-modern {
            display: flex;
            flex-direction: column;
        }
        
        .footer-links-modern a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* .footer-links-modern a::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            opacity: 0;
            transition: all 0.3s ease;
        } */
        
        .footer-links-modern a:hover::before {
            opacity: 1;
        }
        
        .contact-info-modern p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-info-modern i {
            color: var(--gold);
            margin-right: 15px;
            width: 20px;
        }
        
        .qr-code-modern {
            background: white;
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .copyright-modern {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright-modern p {
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .boom-banner-title {
                font-size: 2.5rem;
            }
            
            .section-title-modern {
                font-size: 2.2rem;
            }
            
            .boom-types-grid {
                grid-template-columns: 1fr;
            }
            
            .application-item {
                flex-direction: column;
            }
            
            .application-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .boom-cta-title {
                font-size: 2.2rem;
            }
            
            .boom-img-placeholder {
                height: 200px;
                font-size: 5rem;
            }
        }
        
        @media (max-width: 576px) {
            .boom-banner-title {
                font-size: 2rem;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .nav-link-modern {
                padding: 8px 15px !important;
                margin: 0 2px;
            }
        }

        /* doors.html */

          .doors-hero-banner {
            position: relative;
            height: 70vh;
            min-height: 600px;
            background: linear-gradient(rgba(43, 42, 46, 0.85), rgba(49, 43, 91, 0.9)), 
                        url('https://images.unsplash.com/photo-1600585154340-043788447eb7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .doors-banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .doors-banner-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-navy);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 2rem;
             margin-top: 2rem;
            box-shadow: 0 8px 20px rgba(212, 182, 108, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .doors-banner-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--gold), #f5d37c, var(--pink-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .doors-banner-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Section Styles */
        .section-title-modern {
            color: var(--indigo-blue);
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .section-title-modern:after {
            content: '';
          
                    left: 50%;
                    transform: translateX(-50%);
            position: absolute;
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            bottom: 0;
          
            border-radius: 5px;
        }
        
        .section-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }
        
        /* Doors Intro Section */
        .doors-intro-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .intro-text-modern {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .quality-badge {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 1.5rem;
            box-shadow: 0 5px 15px rgba(49, 43, 91, 0.2);
        }
        
        /* Door Types Section */
        .door-types-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .door-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .door-category-btn {
            background: white;
            color: var(--indigo-blue);
            border: 2px solid var(--indigo-blue);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .door-category-btn:hover, .door-category-btn.active {
            background: var(--indigo-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(49, 43, 91, 0.2);
        }
        
        .door-category-btn i {
            margin-right: 10px;
        }
        
        .door-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }
        
        .door-type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .door-type-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .door-type-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--pink-accent));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .door-type-card:hover:after {
            transform: scaleX(1);
        }
        
        .door-img-placeholder {
            height: 250px;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .door-img-placeholder:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .door-type-card:hover .door-img-placeholder:before {
            transform: translateX(100%);
        }
        
        .door-type-body {
            padding: 2rem;
        }
        
        .door-type-badge {
            display: inline-block;
            background: rgba(212, 182, 108, 0.15);
            color: var(--dark-gold);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .door-type-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            min-height: 3rem;
        }
        
        .door-type-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .door-features {
            margin-bottom: 1.5rem;
        }
        
        .door-feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.7rem;
            color: #555;
        }
        
        .door-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .door-link-modern {
            color: var(--pink-accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .door-link-modern:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* Technology Features */
        .tech-features-section {
            padding: 6rem 0;
            background: linear-gradient(rgba(43, 42, 46, 0.95), rgba(49, 43, 91, 0.95)), 
                        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .tech-feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
            border: 1px solid rgba(212, 182, 108, 0.2);
            transition: all 0.4s;
            text-align: center;
        }
        
        .tech-feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .tech-feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-navy);
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s;
        }
        
        .tech-feature-card:hover .tech-feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .tech-feature-title {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        /* Applications Section */
        .applications-section {
            padding: 6rem 0;
            background: var(--white);
        }
        
        .application-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .application-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(212, 182, 108, 0.3);
        }
        
        /* .application-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        } */
        
        .application-title {
            color: var(--indigo-blue);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        /* Specifications Section */
        .specifications-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #f8f9fa 0%, var(--light-grey) 100%);
        }
        
        .spec-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 2rem;
        }
        
        .spec-header {
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            padding: 1.5rem;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .spec-row {
            display: grid;
            grid-template-columns: 1fr 2fr;
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .spec-row:nth-child(even) {
            background: rgba(49, 43, 91, 0.03);
        }
        
        .spec-row:last-child {
            border-bottom: none;
        }
        
        .spec-label {
            color: var(--indigo-blue);
            font-weight: 600;
        }
        
        .spec-value {
            color: #555;
        }
        
        /* Doors CTA Section */
        .doors-cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--indigo-blue) 0%, #4a4290 100%);
            color: white;
            text-align: center;
        }
        
        .doors-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .doors-cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
        .footer-modern {
            background: var(--dark-navy);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }
        
        .footer-modern .container > .row {
            justify-content: center;
            align-items: center;
        }
        
        .footer-modern .col-lg-4 {
            margin-bottom: 2.5rem;
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }
        
        .footer-title-modern:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--pink-accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-links-modern a {
            color: var(--light-grey);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            transition: all 0.3s;
            padding: 0.3rem 0;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .contact-info-modern {
            margin-bottom: 1rem;
        }
        
        .contact-info-modern p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-info-modern i {
            color: var(--gold);
            width: 20px;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .copyright-modern {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .qr-code-modern {
            background: white;
            width: fit-content;
            height: fit-content;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-top: 1rem;
            padding: 2px !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .qr-code-modern:hover {
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .doors-banner-title {
                font-size: 3rem;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
            
            .door-types-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .doors-banner-title {
                font-size: 2.5rem;
            }
            
            .doors-banner-subtitle {
                font-size: 1.2rem;
            }
            
            .doors-hero-banner {
                height: 60vh;
                min-height: 500px;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .doors-cta-title {
                font-size: 2rem;
            }
            
            .door-categories {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }
            
            .spec-row {
                grid-template-columns: 1fr;
                padding: 1rem;
            }
            
            .spec-label {
                margin-bottom: 0.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .doors-banner-title {
                font-size: 2rem;
            }
            
            .doors-banner-subtitle {
                font-size: 1rem;
            }
            
            .doors-hero-banner {
                height: 50vh;
                min-height: 400px;
            }
            
            .door-types-grid {
                grid-template-columns: 1fr;
            }
        }

        /* gates   */

         /* Gates Hero Banner */
        .gates-hero-banner {
            background: linear-gradient(rgba(26, 54, 93, 0.7), rgba(45, 55, 72, 0.7)), 
                        url('./assets/img/motorized-sliding-gate-2.png');
            background-size: cover;
            background-position: center;
            padding: 120px 0 100px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .gates-banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .gates-banner-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .gates-banner-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .gates-banner-title span {
            color: var(--gold);
            position: relative;
        }
        
        .gates-banner-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            animation: underline 2s infinite;
        }
        
        @keyframes underline {
            0%, 100% { width: 100%; }
            50% { width: 0%; left: 100%; }
        }
        
        .gates-banner-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* Company Intro Section */
        .company-intro-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title-modern {
            color: var(--primary);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
       
        
        .section-title-center {
            text-align: center;
        }
        
        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .company-tagline {
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .intro-text-modern {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #4a5568;
        }
        
        .quality-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .intro-image-container {
            position: relative;
            padding: 20px;
        }
        
        .gate-img-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 8rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        /* Gates Types Section */
        .gates-types-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        }
        
        .section-subtitle {
            color: #4a5568;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
            line-height: 1.6;
        }
        
        .gates-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .gate-type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .gate-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--gold);
        }
        
        .gate-img-placeholder-sm {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 4rem;
        }
        
        .gate-type-body {
            padding: 25px;
        }
        
        .gate-type-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .gate-type-title {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .gate-type-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 80px;
        }
        
        .gate-features {
            margin-bottom: 25px;
        }
        
        .gate-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #4a5568;
        }
        
        .gate-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .gate-link-modern {
            display: inline-flex;
            align-items: center;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .gate-link-modern:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            position: relative;
            overflow: hidden;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--gold), var(--accent));
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
        /* Applications Section */
        .applications-section {
            padding: 100px 0;
            background: white;
        }
        
        .application-item {
            display: flex;
            align-items: flex-start;
            padding: 30px;
            background: white;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .application-item:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
/*         
        .application-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.8rem;
            margin-right: 25px;
            flex-shrink: 0;
        }
         */
        .application-content h4 {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .application-content p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Gates CTA Section */
        .gates-cta {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(45, 55, 72, 0.95)), 
                        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }
        
        .gates-cta-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .gates-cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* Footer Modern */
        .footer-modern {
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            color: white;
            padding: 80px 0 30px;
            border-top: 5px solid var(--gold);
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        /* .footer-title-modern::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
        } */
        
        .footer-links-modern {
            display: flex;
            flex-direction: column;
        }
        
        .footer-links-modern a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* .footer-links-modern a::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            opacity: 0;
            transition: all 0.3s ease;
        } */
        
        .footer-links-modern a:hover::before {
            opacity: 1;
        }
        
        .contact-info-modern p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-info-modern i {
            color: var(--gold);
            margin-right: 15px;
            width: 20px;
        }
        
        .qr-code-modern {
            background: white;
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .copyright-modern {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright-modern p {
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .gates-banner-title {
                font-size: 2.5rem;
            }
            
            .section-title-modern {
                font-size: 2.2rem;
            }
            
            .gates-types-grid {
                grid-template-columns: 1fr;
            }
            
            .application-item {
                flex-direction: column;
            }
            
            .application-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .gates-cta-title {
                font-size: 2.2rem;
            }
            
            .gate-img-placeholder {
                height: 200px;
                font-size: 5rem;
            }
        }
        
        @media (max-width: 576px) {
            .gates-banner-title {
                font-size: 2rem;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .nav-link-modern {
                padding: 8px 15px !important;
                margin: 0 2px;
            }
        }

         /* Fabrication Hero Banner */
        .fabrication-hero-banner {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(45, 55, 72, 0.9)),url("./assets/img/staircase.webp");
            background-size: cover;
            background-position: center;
            padding: 120px 0 100px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .fabrication-banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .fabrication-banner-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .fabrication-banner-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .fabrication-banner-title span {
            color: var(--gold);
            position: relative;
        }
        
        .fabrication-banner-title span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            animation: underline 2s infinite;
        }
        
        @keyframes underline {
            0%, 100% { width: 100%; }
            50% { width: 0%; left: 100%; }
        }
        
        .fabrication-banner-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* Company Intro Section */
        .company-intro-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title-modern {
            color: var(--primary);
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
      
        
        .section-title-center {
            text-align: center;
        }
        
        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .company-tagline {
            color: var(--gold);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .intro-text-modern {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #4a5568;
        }
        
        .quality-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .intro-image-container {
            position: relative;
            padding: 20px;
        }
        
        .fabrication-img-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 8rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        /* Fabrication Types Section */
        .fabrication-types-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        }
        
        .section-subtitle {
            color: #4a5568;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
            line-height: 1.6;
        }
        
        .fabrication-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .fabrication-type-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .fabrication-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: var(--gold);
        }
        
        .fabrication-img-placeholder-sm {
            height: 200px;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 4rem;
        }
        
        .fabrication-type-body {
            padding: 25px;
        }
        
        .fabrication-type-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .fabrication-type-title {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .fabrication-type-description {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 80px;
        }
        
        .fabrication-features {
            margin-bottom: 25px;
        }
        
        .fabrication-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #4a5568;
        }
        
        .fabrication-feature i {
            color: var(--gold);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .fabrication-link-modern {
            display: inline-flex;
            align-items: center;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .fabrication-link-modern:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        /* Materials Section */
        .materials-section {
            padding: 100px 0;
            background: white;
        }
        
        .materials-card {
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            border-radius: 15px;
            padding: 40px;
            color: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 3px solid var(--gold);
        }
        
        .materials-title {
            color: var(--gold);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .material-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .material-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }
        
        .material-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 1.5rem;
        }
        
        .material-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .material-desc {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            position: relative;
            overflow: hidden;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--gold), var(--accent));
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }
        
   
        
        /* Fabrication CTA Section */
        .fabrication-cta {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(45, 55, 72, 0.95)), 
                        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }
        
        .fabrication-cta-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .fabrication-cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* Footer Modern */
        .footer-modern {
            background: linear-gradient(135deg, var(--primary) 0%, #2d3748 100%);
            color: white;
            padding: 80px 0 30px;
            border-top: 5px solid var(--gold);
        }
        
        .footer-title-modern {
            color: var(--gold);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        /* .footer-title-modern::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
        } */
        
        .footer-links-modern {
            display: flex;
            flex-direction: column;
        }
        
        .footer-links-modern a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        .footer-links-modern a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        /* .footer-links-modern a::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            opacity: 0;
            transition: all 0.3s ease;
        } */
        
        .footer-links-modern a:hover::before {
            opacity: 1;
        }
        
        .contact-info-modern p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .contact-info-modern i {
            color: var(--gold);
            margin-right: 15px;
            width: 20px;
        }
        
        .qr-code-modern {
            background: white;
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .copyright-modern {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright-modern p {
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .fabrication-banner-title {
                font-size: 2.5rem;
            }
            
            .section-title-modern {
                font-size: 2.2rem;
            }
            
            .fabrication-types-grid {
                grid-template-columns: 1fr;
            }
            
            .application-item {
                flex-direction: column;
            }
            
            .application-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .fabrication-cta-title {
                font-size: 2.2rem;
            }
            
            .fabrication-img-placeholder {
                height: 200px;
                font-size: 5rem;
            }
            
            .materials-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .fabrication-banner-title {
                font-size: 2rem;
            }
            
            .section-title-modern {
                font-size: 1.8rem;
            }
            
            .nav-link-modern {
                padding: 8px 15px !important;
                margin: 0 2px;
            }
        }

/* video */

 .video-section {
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
        }
        
        .video-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .video-title span {
            display: inline-block;
            background: var(--primary-red);
            color:var(--indigo-blue);
            font-weight: bold;
            padding: 10px 30px;
            border-radius: 30px;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .video-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            aspect-ratio: 16/9;
            background: var(--dark-gray);
        }
        
        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        
        .video-item:hover .video-thumbnail {
            opacity: 1;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            z-index: 2;
        }
        
        .play-button:hover {
            background: var(--dark-red);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(79, 95, 42, 0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-item:hover .video-overlay {
            opacity: 1;
        }

        

        /* Responsive Logo Styling */
.logo-responsive {
    height: auto;
    max-height: 150px; /* Default for desktop */
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

/* Navbar container adjustments */
.navbar-modern .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: nowrap;
}


/* Adjust for medium screens */
@media (max-width: 1199px) {
    .logo-responsive {
        max-height: 60px;
        max-width: 180px;
    }
}

/* For tablets and smaller */
@media (max-width: 991px) {
    .logo-responsive {
        max-height: 50px;
        max-width: 150px;
    }
    
    /* Adjust navbar toggler positioning */
    .navbar-toggler {
        margin-left: auto;
        padding: 0.25rem 0.5rem;
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    /* Custom navbar toggler icon */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5em;
        height: 1.5em;
    }
}

/* For mobile phones */
@media (max-width: 767px) {
    .logo-responsive {
        max-height: 45px;
        max-width: 130px;
    }
    
    /* Ensure navbar items are properly spaced */
    .navbar-modern {
        /* padding: 0.5rem 0; */
    }
    
    /* Adjust Get Quote button for mobile */
    .btn-contact-modern {
        margin: 10px auto;
        display: block;
        width: 90%;
    }
    .about-hero-banner{
        height:100% !important;
        padding-top:50px
    }

    .hero-carousel{
          height:100% !important;
    }

     .shutters-hero-banner{
        height:100% !important;
        padding-top:50px
    }
     .doors-hero-banner{
        height:100% !important;
        padding-top:50px
    }
     .gates-hero-banner{
        height:100% !important;
        padding-top:50px
    }
     .about-hero-banner{
        height:100% !important;
        padding-top:50px
    }
     .about-hero-banner{
        height:100% !important;
        padding-top:50px
    }
}

/* Force content visibility */

/* FIX 1: Reset application item styles */
.application-item {
    position: relative !important;
    z-index: 1 !important;
    background: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    min-height: 120px !important;
}

/* FIX 2: Force content visibility */
.application-content {
    position: relative !important;
    z-index: 100 !important;
    flex: 1 !important;
    min-width: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    color: #4a5568 !important;
}

/* FIX 3: Make sure parent containers don't hide content */
.applications-section .row,
.applications-section .container,
.applications-section {
    overflow: visible !important;
    position: relative !important;
}

/* FIX 4: Ensure text elements are visible */
.application-content h4,
.application-content p {
    position: relative !important;
    z-index: 101 !important;
    color: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Styles for image gallery section */
.shutter-types-section .row {
    display: flex;
    flex-wrap: wrap;
}

.shutter-image-card {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
}

.shutter-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.shutter-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.shutter-image-card:hover img {
    transform: scale(1.05);
}

/* For mobile devices */
@media (max-width: 768px) {
    .shutter-types-section .row {
        gap: 15px;
    }
    
    .shutter-image-card {
        height: 300px;
        margin: 0;
    }
    
    /* Ensure 2 images per row on mobile */
    .shutter-types-section .col-6 {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        padding: 0 4px;
    }
}

/* For tablets */
@media (min-width: 769px) and (max-width: 991px) {
    .shutter-image-card {
        height: 350px;
    }
}

/* For larger screens */
@media (min-width: 992px) {
    .shutter-types-section .row {
        gap: 30px;
    }
    
    .shutter-image-card {
        height: 400px;
    }
    
    /* Ensure 2 images per row on desktop */
    .shutter-types-section .col-md-6 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}


/* Dropdown Arrow Styling */
.navbar-modern .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-modern .dropdown-toggle .dropdown-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--gold);
    margin-left: 4px;
}

.navbar-modern .dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Active state for dropdown */
.navbar-modern .dropdown-toggle.active {
    color: var(--gold) !important;
}

/* Hover effect */
.navbar-modern .dropdown-toggle:hover .dropdown-arrow {
    transform: translateY(2px);
}

.navbar-modern .dropdown-toggle.show:hover .dropdown-arrow {
    transform: rotate(180deg) translateY(-2px);
}

/* Mobile menu button styling */
.mobile-menu-btn {
    background-color: var(--gold);
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
}

/* Ensure proper alignment in navbar */
.navbar-modern .navbar-nav {
    align-items: center;
}

.navbar-modern .nav-item {
    margin: 0 2px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-modern .dropdown-toggle .dropdown-arrow {
        font-size: 1rem;
    }
}

/* Remove default Bootstrap dropdown caret */
.dropdown-toggle::after {
    display: none !important;
}

/* Keep your custom arrow styling */
.navbar-modern .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-modern .dropdown-toggle .dropdown-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--gold);
    margin-left: 4px;
    display: inline-block;
}

.navbar-modern .dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Active state for dropdown */
.navbar-modern .dropdown-toggle.active {
    color: var(--gold) !important;
}

/* Hover effect */
.navbar-modern .dropdown-toggle:hover .dropdown-arrow {
    transform: translateY(2px);
}

.navbar-modern .dropdown-toggle.show:hover .dropdown-arrow {
    transform: rotate(180deg) translateY(-2px);
}


/* about page */

/* 30+ Years of Excellence Banner */
.excellence-banner {
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    padding: 40px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.excellence-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.excellence-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(212, 182, 108, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.excellence-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4B66C 0%, #b3924d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #1a365d;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.excellence-content {
    flex: 1;
    min-width: 280px;
}

.excellence-badge {
    display: inline-block;
    background: rgba(212, 182, 108, 0.2);
    color: #D4B66C;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

.excellence-title {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.excellence-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    color: #D4B66C;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 182, 108, 0.5), transparent);
}

.excellence-award {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(212, 182, 108, 0.3);
}

.excellence-award i {
    font-size: 24px;
    color: #D4B66C;
}

.excellence-award span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Quality Section Styles */
.quality-statement-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(212, 182, 108, 0.2);
    transition: all 0.3s ease;
}

.quality-statement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
    border-color: #D4B66C;
}

.statement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D4B66C;
    flex-shrink: 0;
}

.statement-content {
    flex: 1;
}

.quality-text {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

.highlight-text {
    color: #1a365d;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 8px;
}

/* Parameter Cards */
.parameter-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 182, 108, 0.2);
    position: relative;
    overflow: hidden;
}

.parameter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a365d, #D4B66C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.parameter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border-color: #1a365d;
}

.parameter-card:hover::before {
    transform: scaleX(1);
}

.parameter-icon-wrapper {
    margin-bottom: 20px;
}

.parameter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #D4B66C;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.parameter-card:hover .parameter-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #D4B66C 0%, #b3924d 100%);
    color: #1a365d;
}

.parameter-title {
    color: #1a365d;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.parameter-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4B66C, transparent);
    margin: 15px auto;
}

.parameter-description {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.parameter-badge {
    background: rgba(212, 182, 108, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-block;
}

.parameter-badge span {
    color: #1a365d;
    font-size: 12px;
    font-weight: 600;
}

/* Certificates and Ratings */
.certificates-wrapper {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 182, 108, 0.2);
    margin-top: 40px;
}

.certificate-showcase {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px dashed #D4B66C;
}

.certificate-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #D4B66C;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.certificate-title {
    color: #1a365d;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.certificate-subtitle {
    color: #D4B66C;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.certificate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.certificate-badge i {
    color: #D4B66C;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rating-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 182, 108, 0.2);
    transition: all 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border-color: #D4B66C;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating-header i {
    color: #D4B66C;
    font-size: 20px;
}

.rating-score {
    color: #1a365d;
    font-size: 18px;
    font-weight: 700;
}

.rating-stars {
    color: #D4B66C;
    margin-bottom: 10px;
    font-size: 14px;
}

.rating-stars i {
    margin-right: 2px;
}

.rating-label {
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rating-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a365d, #D4B66C);
    border-radius: 10px;
}

.certificate-logos-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 182, 108, 0.2);
}

.certificate-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 50px;
    border: 1px solid rgba(212, 182, 108, 0.2);
}

.certificate-logo-item i {
    color: #D4B66C;
    font-size: 20px;
}

.certificate-logo-item span {
    color: #1a365d;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .excellence-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .excellence-stats {
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .rating-grid {
        grid-template-columns: 1fr;
    }

    .certificates-wrapper {
        padding: 30px 20px;
    }

    .certificate-logos-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .quality-statement-card {
        flex-direction: column;
        text-align: center;
    }

    .statement-icon {
        margin: 0 auto;
    }

    .parameter-card {
        padding: 20px 15px;
    }
}

/* about-certificates */

/* Certificate Showcase Section */
.certificate-showcase-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.certificate-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 182, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 54, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.certificate-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Certificate Frame */
.certificate-frame {
    position: relative;
    width: 320px;
    height: 380px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

.certificate-frame:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 60px -15px rgba(26, 54, 93, 0.4);
    border-color: #D4B66C;
}

/* Glow Effect */
.certificate-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 182, 108, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.certificate-frame:hover .certificate-glow {
    opacity: 1;
}


/* Medal Icon */
.certificate-medal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4B66C 0%, #b3924d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(212, 182, 108, 0.3);
    z-index: 3;
    animation: medalSpin 10s linear infinite;
}

@keyframes medalSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Badge Icon */
.certificate-badge-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 4px solid #D4B66C;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
    transition: all 0.3s ease;
}

.certificate-frame:hover .certificate-badge-icon {
    transform: scale(1.05) rotate(5deg);
    border-color: white;
}

.certificate-badge-icon i {
    font-size: 48px;
    color: #D4B66C;
    transition: all 0.3s ease;
}

.certificate-frame:hover .certificate-badge-icon i {
    color: white;
    transform: scale(1.1);
}

/* Certificate Name */
.certificate-name {
    color: #1a365d;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.certificate-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D4B66C, #1a365d);
    border-radius: 3px;
}

/* Certificate Issuer */
.certificate-issuer {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seal Mark */
.certificate-seal-mark {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(212, 182, 108, 0.1) 0%, rgba(26, 54, 93, 0.05) 100%);
    padding: 8px 20px;
    border-radius: 30px;
    margin: 15px 0;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

.certificate-seal-mark i {
    color: #D4B66C;
    font-size: 16px;
}

.certificate-seal-mark span {
    color: #1a365d;
    font-weight: 600;
    font-size: 14px;
}

/* Certificate Year */
.certificate-year {
    color: #1a365d;
    font-size: 14px;
    font-weight: 600;
    background: rgba(212, 182, 108, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px dashed #D4B66C;
    margin-top: 5px;
}

/* Decorative Elements */
.certificate-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#D4B66C 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    pointer-events: none;
}

.certificate-lines {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(45deg, #1a365d 0px, #1a365d 2px, transparent 2px, transparent 10px);
    opacity: 0.1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .certificate-row {
        gap: 30px;
    }

    .certificate-frame {
        width: 280px;
        height: 340px;
    }

    .certificate-badge-icon {
        width: 80px;
        height: 80px;
    }

    .certificate-badge-icon i {
        font-size: 40px;
    }

    .certificate-name {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .certificate-frame {
        width: 260px;
        height: 320px;
    }

    .certificate-medal {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}


/* Material Brands Section */
.material-brands-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.brands-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.brand-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    flex: 1 1 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 182, 108, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a365d, #D4B66C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border-color: #D4B66C;
}

.brand-item:hover::before {
    transform: scaleX(1);
}

.brand-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #D4B66C;
    font-size: 32px;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #D4B66C 0%, #b3924d 100%);
    color: #1a365d;
}

.brand-item h4 {
    color: #1a365d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.brand-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-badge {
    display: inline-block;
    background: rgba(212, 182, 108, 0.1);
    color: #1a365d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

.material-guarantee {
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(212, 182, 108, 0.05) 100%);
    padding: 20px;
    border-radius: 50px;
    max-width: 700px;
    margin: 30px auto 0;
    border: 2px dashed #D4B66C;
}

.material-guarantee i {
    color: #D4B66C;
    font-size: 24px;
    margin-right: 10px;
}

.material-guarantee span {
    color: #1a365d;
    font-weight: 600;
    font-size: 16px;
}

/* Certificate Showcase Section */
.certificate-showcase-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.certificate-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 182, 108, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 54, 93, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.certificate-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-frame {
    position: relative;
    width: 260px;
    height: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

.certificate-frame:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 50px -15px rgba(26, 54, 93, 0.3);
    border-color: #D4B66C;
}

.certificate-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 182, 108, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.certificate-frame:hover .certificate-glow {
    opacity: 1;
}

.certificate-content {
    position: relative;
    z-index: 2;
    text-align: center;
  
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.certificate-medal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4B66C 0%, #b3924d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 5px 10px rgba(212, 182, 108, 0.3);
    z-index: 3;
}

.certificate-badge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 3px solid #D4B66C;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
    transition: all 0.3s ease;
}

.certificate-frame:hover .certificate-badge-icon {
    transform: scale(1.05) rotate(5deg);
}

.certificate-badge-icon i {
    font-size: 36px;
    color: #D4B66C;
    transition: all 0.3s ease;
}

.certificate-frame:hover .certificate-badge-icon i {
    color: white;
    transform: scale(1.1);
}

.certificate-name {
    color: #1a365d;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.certificate-issuer {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.certificate-seal-mark {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 182, 108, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

.certificate-seal-mark i {
    color: #D4B66C;
    font-size: 14px;
}

.certificate-seal-mark span {
    color: #1a365d;
    font-weight: 600;
    font-size: 12px;
}

/* Dealers Section */
.dealers-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.dealers-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5 L55 20 L55 40 L30 55 L5 40 L5 20 Z" fill="none" stroke="%23D4B66C" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.dealers-horizontal-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
}

.dealer-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    flex: 0 1 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 182, 108, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dealer-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1a365d, #D4B66C);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dealer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(26, 54, 93, 0.15);
    border-color: #D4B66C;
}

.dealer-card:hover::after {
    transform: scaleX(1);
}

.dealer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4b7c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #D4B66C;
    font-size: 28px;
    transition: all 0.3s ease;
}

.dealer-card:hover .dealer-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #D4B66C 0%, #b3924d 100%);
    color: #1a365d;
}

.dealer-card h4 {
    color: #1a365d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.dealer-location {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.dealer-location i {
    color: #D4B66C;
    margin-right: 5px;
}

.dealer-contact {
    color: #1a365d;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.dealer-contact i {
    color: #D4B66C;
    margin-right: 5px;
}

.dealer-badge {
    display: inline-block;
    background: rgba(212, 182, 108, 0.15);
    color: #1a365d;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(212, 182, 108, 0.3);
}

/* Decorative elements */
.certificate-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#D4B66C 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    pointer-events: none;
}

.certificate-lines {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(45deg, #1a365d 0px, #1a365d 2px, transparent 2px, transparent 10px);
    opacity: 0.1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .brands-showcase {
        gap: 15px;
    }

    .brand-item {
        min-width: 160px;
        padding: 20px;
    }

    .certificate-row {
        gap: 20px;
    }

    .certificate-frame {
        width: 220px;
        height: 280px;
    }

    .dealer-card {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .brands-showcase {
        flex-direction: column;
        align-items: center;
    }

    .brand-item {
        width: 100%;
        max-width: 280px;
    }

    .certificate-frame {
        width: 100%;
        max-width: 280px;
        height: 300px;
    }

    .dealers-horizontal-scroll {
        flex-direction: column;
        align-items: center;
    }

    .dealer-card {
        width: 100%;
        max-width: 280px;
    }

    .material-guarantee {
        padding: 15px;
        font-size: 14px;
    }
}


/* extra large devices */

@media (min-width: 2000px) {
 .about-hero-banner{
    /* background-position: center -90px; */
    min-height:1100px
 }

 .contact-hero-banner{
      min-height: 800px;
      background-position: center -130px;
 }
}

/* individual page style */

/* Modern Back to Products Button */
.modern-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.modern-back-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.modern-back-btn:hover {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 54, 93, 0.4);
    border-color: var(--gold);
    color: white;
}

.modern-back-btn:hover:before {
    left: 100%;
}

.modern-back-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modern-back-btn:hover .btn-icon {
    background: var(--gold);
    color: #1a365d;
    transform: rotate(360deg);
}

.modern-back-btn .btn-text {
    position: relative;
    z-index: 2;
}

/* Pulse animation on load */
.modern-back-btn {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 20px rgba(26, 54, 93, 0.3);
    }

    50% {
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    }

    100% {
        box-shadow: 0 10px 20px rgba(26, 54, 93, 0.3);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-back-btn {
        padding: 14px 30px;
        font-size: 1rem;
        gap: 10px;
    }

    .modern-back-btn .btn-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .modern-back-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        gap: 8px;
        width: 90%;
    }
}


/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    right: 20px;
    top: 75%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Individual icon colors */
.social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.social-icon.call {
    background: #4CAF50;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    color: white;
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.youtube {
    background: #FF0000;
    color: white;
}

/* Pulse animation for WhatsApp icon */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.social-icon.whatsapp {
    animation: pulse 2s infinite;
}

/* Tooltip on hover */
.social-icon::before {
    content: attr(title);
    position: absolute;
    right: 60px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.social-icon::after {
    content: '';
    position: absolute;
    right: 50px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
    right: 58px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-social-icons {
        right: 10px;
        gap: 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Hide tooltips on mobile */
    .social-icon::before,
    .social-icon::after {
        display: none;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .floating-social-icons {
        right: 8px;
        gap: 6px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

  /* Dropdown Styles - Add to your existing CSS */
  .dropdown-modern {
      position: relative;
  }

  .dropdown-container {
      display: flex;
      align-items: center;
      gap: 0.25rem;
  }

  .dropdown-container .nav-link-modern {
      padding: 0.5rem 0.25rem 0.5rem 1rem;
  }

  .dropdown-toggle-modern {
      background: #1a365d;
      /* Golden background */
      border: none;
      color: whitesmoke;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-right: 0.5rem;
      padding: 0;
  }

  .dropdown-toggle-modern:hover {
      background: #FFC800;
      /* Darker golden on hover */
      transform: scale(1.1);
      box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  }

  .dropdown-toggle-modern .dropdown-arrow {
      font-size: 0.8rem;
      color: goldenrod;
      transition: transform 0.3s ease;
  }

  .dropdown-toggle-modern[aria-expanded="true"] .dropdown-arrow {
      transform: rotate(180deg);
  }

  /* Dropdown menu positioning */
  .dropdown-modern .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      margin-top: 0.5rem;
      min-width: 240px;
      background: white;
      border: none;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 0.75rem 0;
      display: none;
      z-index: 1000;
  }

  .dropdown-modern .dropdown-menu.show {
      display: block;
      animation: fadeInDown 0.3s ease;
  }

  @keyframes fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Dropdown items */
  .dropdown-item-modern {
      padding: 0.6rem 1.5rem;
      color: #333;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .dropdown-item-modern i {
      width: 20px;
      color: #1a365d;
      font-size: 1rem;
  }

  .dropdown-item-modern:hover {
      background: rgba(255, 215, 0, 0.1);
      color: #FFD700;
      padding-left: 2rem;
  }

  /* Mobile responsive */
  @media (max-width: 991px) {
      .dropdown-container {
          justify-content: space-between;
          width: 100%;
      }

      .dropdown-toggle-modern {
          margin-right: 1rem;
          height: 25px !important;
          width: 25px !important
      }

      .dropdown-modern .dropdown-menu {
          position: static !important;
          width: 100%;
          margin-top: 0.5rem;
          box-shadow: none;
          border: 1px solid #eee;
      }
  }


/* @media (max-width: 767px) {
    /* Remove or modify this section */
    /* .slide-1,
    .carousel-item.slide-1,
    .carousel-item.active.slide-1 {
        /* Remove the background-image line or set it to the same as desktop */
        /* background-image: url('./assets/jai-bhavani-banner-1.png') !important;
    }  */
/* }  */

/* Replace the existing .hero-carousel and related styles with this: */

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 110px;
    /* Match your navbar height */
    height: 75vh;
    min-height: 600px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

/* .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the area without distortion
    object-position: 0% 45%;
} */

.img-1{
width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the area without distortion*/
    object-position: 0% 45%;
}
.img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the area without distortion*/
    object-position: 0% 60%;
}
.img-3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the area without distortion*/
    object-position: 0% 75%;
}
.img-4 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures images cover the area without distortion*/
    object-position: 0% 60%;
}

/* Optional overlay for better text readability if you have text over images */
/* .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)); 
    pointer-events: none;
} */

/* Keep all your existing carousel control styles */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 182, 108, 0.3);
    color: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: rgba(212, 182, 108, 0.2);
    color: white;
    border-color: var(--gold);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--gold);
    transform: scale(1.2);
    border-color: white;
}

/* Remove the .slide-1, .slide-2, etc. classes if you're not using them elsewhere */

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
        /* Adjust for mobile navbar */
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 50vh;
        min-height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 60vh;
        min-height: 300px;
        margin-top: 70px;
        /* Adjust for mobile navbar */
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        margin-top:90px;
        height: 60vh;
        min-height: fit-content;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}