        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
        }

        :root {
            --color-1: #2b2a27;
            --color-2: #d59e06;
            --color-3: #f0e9d2;
            --color-4: #1b1a18;
            --color-5: #c4a24f;
        }
        .color-1{color:#2b2a27;}
        .color-2{color:#d59e06;}
        
        .bg-color-1{background-color:#2b2a27;}
        .bg-color-2{background-color:#d59e06;}
        

        /* Top Welcome Bar */
        .top-bar {
            background: linear-gradient(90deg, #2b2a28 0%, #d59e07 50%, #001F3F 100%);
            color: white;
            padding: 10px 0;
        }

        .top-bar .welcome-text {
            font-size: 14px;
            letter-spacing: 1px;
        }

        .social-icons a {
            color: white;
            margin: 0 10px;
            font-size: 16px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: #FFA500;
        }

        /* Main Header */
        .main-header {
            background: #2b2a28;
            padding: 0px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo-section img {
            max-height: 100px;
            height: 100%;
        }

        .logo {
            width: 280px;
            height: auto;
        }

        .company-name {
            font-size: 28px;
            font-weight: bold;
            color: #8B1A1A;
        }

        .company-tagline {
            font-size: 11px;
            color: #666;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            color: #d59e06;
            font-size: 24px;
        }

        .contact-label {
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 2px;
        }

        .contact-value {
            color: #d59e06;
            text-decoration: none;
        }

        .contact-value:hover {
            text-decoration: underline;
        }

        .address-text {
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
        }

        /* Navigation Bar */
        .navbar-custom {
            background: #d59e06;
            padding: 0;
        }

        .navbar-custom .nav-link {
            color: white !important;
            padding: 18px 25px;
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.5px;
            transition: background 0.3s;
            border-right: 1px solid rgba(255,255,255,0.2);
        }

        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            background: rgba(0,0,0,0.2);
        }

        /* Desktop Dropdown */
        .nav-item.dropdown {
            position: relative;
        }

        .dropdown-menu-custom {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 300px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: none;
            z-index: 1000;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .nav-item.dropdown:hover .dropdown-menu-custom {
            display: block;
            overflow-y: scroll;
            height: 400px;
        }

        .dropdown-menu-custom li a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: background 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }

        .dropdown-menu-custom li a:hover {
            background: #f8f8f8;
            color: #d59e06;
        }

        .dropdown-arrow {
            margin-left: 5px;
            font-size: 12px;
        }

        .language-selector {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            background: white;
            color: #333;
            cursor: pointer;
        }

        .powered-by {
            font-size: 10px;
            color: rgba(255,255,255,0.7);
            margin-top: 5px;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            background: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 10px;
        }

        /* Mobile Logo */
        .mobile-logo-container {
            display: none;
            align-items: center;
            gap: 8px;
        }

        .mobile-logo-icon {
            background: linear-gradient(135deg, #FF6B00, #FF8C00);
            width: 40px;
            height: 40px;
            clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-logo-text {
            color: white;
            font-size: 16px;
            font-weight: bold;
        }

        .mobile-logo-tagline {
            color: rgba(255,255,255,0.9);
            font-size: 7px;
            letter-spacing: 1px;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: linear-gradient(180deg, #2b2a28 0%, #d59e06 100%);
            z-index: 9999;
            transition: right 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            background: #d59e06;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-nav-header img {
            width: 100px;
        }

        .mobile-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        .mobile-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu > li {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-menu > li > a {
            display: block;
            padding: 18px 25px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            transition: background 0.3s;
        }

        .mobile-menu > li > a:hover {
            background: rgba(0,0,0,0.2);
        }

        .mobile-submenu {
            background: rgba(0,0,0,0.2);
            list-style: none;
            padding: 0;
            margin: 0;
            display: none;
        }

        .mobile-submenu.active {
            display: block;
        }

        .mobile-submenu li a {
            display: block;
            padding: 12px 40px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            background: rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-submenu li a:hover {
            background: rgba(255,255,255,0.1);
        }

        .has-submenu > a {
            position: relative;
        }

        .has-submenu > a::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 25px;
            transition: transform 0.3s;
        }

        .has-submenu.active > a::after {
            transform: rotate(180deg);
        }

        .mobile-language {
            padding: 20px 25px;
            background: rgba(0,0,0,0.2);
        }

        .mobile-language select {
            width: 100%;
            padding: 10px;
            border-radius: 4px;
            border: none;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        
        /* Responsive */
        @media (max-width: 991px) {
            .navbar-custom .navbar-nav {
                display: none;
            }

            .contact-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .logo {
                width: 200px;
            }

            .main-header {
                display: none;
            }

            .mobile-logo-container {
                display: flex;
            }
            
            .mobile-logo-container img{
                max-height: 60px;
                height: 100%;
            }
            
        }

        @media (max-width: 768px) {
            .top-bar .welcome-text {
                font-size: 11px;
            }

            .social-icons {
                display: none;
            }

            .main-header {
                padding: 10px 0;
            }

            .contact-info {
                font-size: 12px;
            }

            .company-name {
                font-size: 20px;
            }
        }

        @media (min-width: 992px) {
            .mobile-toggle {
                display: none;
            }
        }

        @media only screen and (max-width: 767px) {
            .top-bar{
                display: none;
            }
        }

        /* @media (max-width: 576px) {
            .catalog{
                display: none;
            }
        } */
        /* hero section */

        .owl-carousel .item {
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 90%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }


        .carousel-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: white;
            max-width: 600px;
            z-index: 2;
        }

        .carousel-content .carousel-heading {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .carousel-content .highlight {
            color: #52c234;
            display: block;
        }

        .carousel-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .btn-custom {
            background-color: #8B2635;
            color: white;
            padding: 15px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #6d1e2a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 38, 53, 0.4);
        }

        /* Owl Carousel Navigation */
        .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2) !important;
            color: white !important;
            font-size: 40px !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .owl-nav button:hover {
            background: rgba(255, 255, 255, 0.4) !important;
        }

        .owl-nav .owl-prev {
            left: 20px;
        }

        .owl-nav .owl-next {
            right: 20px;
        }

        .owl-dots {
            position: absolute;
            bottom: 70px;
            left: 50%;
            transform: translateX(-50%);
        }

        .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5) !important;
            margin: 0 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
		
		.owl-theme .owl-dots .owl-dot span{
			height:0;
		}
        .owl-dot.active {
            background: white !important;
            width: 30px;
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .owl-carousel .item {
                height: 500px;
            }

            .carousel-content {
                left: 5%;
                max-width: 90%;
            }

            .carousel-content .carousel-heading {
                font-size: 1rem;
            }

            .carousel-content p {
                font-size: 1rem;
            }

            .btn-custom {
                padding: 8px 16px;
				font-size: 8px;
            }
			.carousel-content p{
				display:none;
			 } 
			.slide-image{
				height:auto;
			}
			.owl-carousel .item{
				height:225px;
			}
			.owl-nav button {
				font-size:20px !important;
				width:25px;
				height:40px;
				top:40%;
			}
        }


        /* features-section */

        .features-section {
            background: linear-gradient(135deg, #d59e06 0%, #e8b128 100%);
            padding: 20px 0;
            /* transform: translateY(-100px); */
            position: relative;
            z-index: 5;
        }

        .feature-card {
            padding: 30px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 25px;
            border-right: 2px solid rgba(43, 42, 39, 0.2);
        }

        .feature-card:last-child {
            border-right: none;
        }

        .icon-wrapper {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border: 3px solid #2b2a27;
            border-radius: 50%;
        }

        .icon-wrapper i {
            font-size: 40px;
            color: #2b2a27;
        }

        .feature-content span {
            color: #2b2a27;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-content p {
            color: #2b2a27;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 991px) {
            .feature-card {
                border-right: none;
                border-bottom: 2px solid rgba(43, 42, 39, 0.2);
                padding: 40px 20px;
            }

            .feature-card:last-child {
                border-bottom: none;
            }

            .features-section {
                transform: translateY(-40px);
                position: relative;
                z-index: 5;
                margin: 0px 15px;
                border-radius: 20px;
            }
        }

        @media (max-width: 576px) {
            .feature-card {
                flex-direction: column;
                text-align: center;
                padding: 10px 10px;
            }

            .icon-wrapper {
                width: 70px;
                height: 70px;
            }

            .icon-wrapper i {
                font-size: 35px;
            }

            .feature-content span {
                font-size: 20px;
            }

            .feature-content p {
                font-size: 15px;
            }
        }

        /* new-feature-section */

        .stories-section {
            background: linear-gradient(135deg, #2b2a28 0%, #d59e06 100%);
            padding: 80px 0;
            position: relative;
        }

        .carousel-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: 63% 35%;
            gap: 20px;
            margin-bottom: 40px;
        }

        .story-card {
            background: rgba(10, 30, 60, 0.6);
            border-radius: 20px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }

        .story-card:hover {
            transform: translateY(-3px);
        }

        .story-header {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .story-title {
            color: #ffffff;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 35px;
            max-width: 450px;
        }

        .featured-card {
            min-height: 320px;
        }

        .featured-card .story-image {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            max-width: 380px;
            max-height: 175px;
            object-fit: contain;
        }

        .latest-card {
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .latest-card .story-title {
            font-size: 32px;
            max-width: 100%;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: #fac007;
            color: #ffffff;
            padding: 14px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .learn-more-btn:hover {
            background-color: #2b2a28;
            transform: translateX(5px);
            color: #ffffff;
        }

        .learn-more-btn i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover i {
            transform: translateX(3px);
        }

        /* Carousel Navigation Arrows */
        .carousel-nav {
            position: absolute;
            right: 50px;
            top: 85%;
            transform: translateY(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            background-color: #ffffff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-arrow:hover {
            background-color: #f0f0f0;
            transform: scale(1.1);
        }

        .nav-arrow i {
            color: #0a4a8a;
            font-size: 18px;
        }

        /* Carousel Indicators */
        .carousel-indicators-custom {
            display: flex;
            justify-content: center;
            gap: 12px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .indicator-dot {
            width: 50px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.3);
            border: none;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .indicator-dot.active {
            background-color: #7cb342;
            width: 60px;
        }

        .indicator-dot:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }

        /* Hide non-active slides */
        .carousel-slide {
            display: none;
        }

        .carousel-slide.active {
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .stories-grid {
                grid-template-columns: 60% 38%;
            }

            .story-title {
                font-size: 30px;
            }

            .featured-card .story-image {
                max-width: 320px;
                right: 30px;
            }
        }

        @media (max-width: 991px) {
            .stories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .story-card {
                padding: 40px;
            }

            .featured-card .story-image {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                max-width: 300px;
                margin: 30px auto 0;
                display: block;
            }

            .story-title {
                font-size: 28px;
            }

            .latest-card .story-title {
                font-size: 26px;
            }

            .carousel-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .stories-section {
                padding: 50px 0;
            }

            .story-card {
                padding: 30px 25px;
                min-height: auto !important;
            }

            .story-title {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .latest-card .story-title {
                font-size: 22px;
            }

            .story-header {
                font-size: 11px;
                margin-bottom: 20px;
            }

            .learn-more-btn {
                font-size: 12px;
                padding: 12px 24px;
            }

            .featured-card .story-image {
                max-width: 250px;
            }

            .stories-grid {
                margin-bottom: 30px;
            }

            .indicator-dot {
                width: 40px;
            }

            .indicator-dot.active {
                width: 50px;
            }
        }

        /* about-us-section */

        .global-section {
            background: linear-gradient(135deg, #ffffff, #e8f6fb);
            padding: 50px 0;
            overflow: hidden;
            }

            /* LEFT CONTENT */
            .small-title {
            font-size: 13px;
            letter-spacing: 2px;
            color: #2b2a28;
            font-weight: 600;
            }

            .main-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin: 20px 0;
            color: #e3ac1f;
            }

            .desc {
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #444;
            max-width: 520px;
            }

            .about-btn {
            font-weight: 600;
            color: #2b2a28;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            }

            .about-btn:hover {
            gap: 16px;
            color: #002b5c;
            }

            /* RIGHT STATS */
            .stats-wrapper {
            position: relative;
            width: 100%;
            height: 420px;
            background-image: url(images/circles-dotted.svg);
            background-size: cover;
            }

            .stat-circle {
            position: absolute;
            width: 200px;
            height: 200px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 20px 40px rgb(227 172 31 / 34%);
            transition: 0.3s;
            }

            .stat-circle span {
            font-size: 36px;
            font-weight: 800;
            margin: 0;
            }

            .stat-circle p {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
            }

            /* COLORS */
            .stat-circle.blue span { color: #e3ac1f; }
            .stat-circle.green span { color: #2b2a28; }
            .stat-circle.sky span { color: #2b2a28; }
            .stat-circle.navy span { color: #e3ac1f; }

            /* POSITIONING */
            .stat-circle:nth-child(1) { top: 0; left: 80px; }
            .stat-circle:nth-child(2) { top: 40px; right: 0; }
            .stat-circle:nth-child(3) { bottom: 0; left: 0; }
            .stat-circle:nth-child(4) { bottom: 20px; right: 60px; }

            /* HOVER EFFECT */
            .stat-circle:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            }

            /* ✅ MOBILE RESPONSIVE */
            @media (max-width: 991px) {
            .main-title {
                font-size: 36px;
            }
            .stat-circle:nth-child(1) { top: 0; left: 20px; }
            .stat-circle:nth-child(4) { bottom: 0px; right: 35px; }

            .stats-wrapper {
                height: auto;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-circle {
                position: relative;
                width: 100%;
                height: 160px;
            }
            }

            /* why-choose-us-Section */

            .why-choose-us {
                position: relative;
                background: url('bg1.jpg') no-repeat center center/cover;
                background-attachment: fixed;
                padding: 80px 0;
                color: #fff;
                z-index: 1;
            }

            /* Dark overlay for better readability */
            .why-choose-us::before {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.85);   /* <<< stronger overlay */
                z-index: -1;
            }

            /* Headings */
            .section-title {
                color: #e8b128;
                font-weight: 700;
            }

            .subtitle {
                color: #ffffff;
                font-size: 18px;
            }

            /* Boxes */
            .choose-box {
                background: #2b2a28;
                padding: 25px 20px;
                border-radius: 8px;
                box-shadow: 0 3px 10px rgba(0,0,0,0.3);
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
                border-left: 4px solid #e8b128;
            }

            /* Hover Animation */
            .choose-box:hover {
                transform: translateY(-8px);
                background: #3b3935;
                border-left-color: #fff;
                box-shadow: 0 6px 20px rgba(0,0,0,0.5);
            }

            /* Text colors */
            .choose-box span {
                color: #e8b128;
                font-weight: 600;
            }
            .choose-box p {
                color: #e6e6e6;
            }

            /* contact-us-section */

            .contact-page-wrapper {
                min-height: 100vh;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 50px;
            }

            .contact-form-wrapper {
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="wireframe" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 0L100 100M100 0L0 100" stroke="rgba(0,150,200,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23wireframe)"/></svg>') no-repeat center;
                background-size: cover;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
                max-width: 1400px;
                width: 100%;
            }

            .contact-grid-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0;
                min-height: 600px;
            }

            .contact-left-section {
                background: #2b2a28;
                padding: 60px 50px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                position: relative;
            }

            .contact-left-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><g opacity="0.05"><path d="M0 100 Q 125 50 250 100 T 500 100" stroke="rgba(0,150,200,0.5)" stroke-width="2" fill="none"/><path d="M0 200 Q 125 150 250 200 T 500 200" stroke="rgba(0,150,200,0.5)" stroke-width="2" fill="none"/><path d="M0 300 Q 125 250 250 300 T 500 300" stroke="rgba(0,150,200,0.5)" stroke-width="2" fill="none"/></g></svg>');
                pointer-events: none;
            }

            .contact-left-section > * {
                position: relative;
                z-index: 1;
            }

            .contact-title-section {
                margin-bottom: 40px;
            }

            .contact-label-text {
                color: #e3ac1f;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 10px;
                display: block;
            }

            .contact-title-section span {
                color: #ffffff;
                font-size: 42px;
                font-weight: 700;
                line-height: 1.2;
                margin-bottom: 20px;
            }

            .contact-sub-head{
                color: #fff;
                font-size: 2.5rem;
                font-weight: 700;
            }
            .contact-left-section p{
                color:#fff;
            }
            .contact-title-section p {
                color: #a0a8c0;
                font-size: 14px;
                line-height: 1.6;
            }

            .contact-details-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                margin-top: 40px;
            }

            .contact-detail-card {
                display: flex;
                gap: 15px;
            }

            .contact-detail-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                background: rgba(0, 184, 212, 0.1);
                border: 2px solid #876916;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #00b8d4;
                font-size: 18px;
            }

            .contact-detail-content span {
                color: #ffffff;
                font-size: 16px;
                font-weight: 600;
                margin-bottom: 8px;
            }

            .contact-detail-content p {
                color: #ffffff;
                font-size: 13px;
                line-height: 1.5;
            }

            .contact-form-right-section {
                background: linear-gradient(135deg, #d59e06 0%, #2b2a28 100%);
                padding: 60px 50px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .contact-form-header {
                margin-bottom: 35px;
            }

            .contact-form-header span {
                color: #ffffff;
                font-size: 32px;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .contact-form-header p {
                color: rgba(255, 255, 255, 0.85);
                font-size: 13px;
                line-height: 1.5;
            }

            .contact-form-group {
                margin-bottom: 18px;
            }

            .contact-form-group input,
            .contact-form-group textarea {
                width: 100%;
                padding: 14px 16px;
                border: none;
                border-bottom: 2px solid rgba(255, 255, 255, 0.3);
                background: rgba(255, 255, 255, 0.15);
                color: #ffffff;
                font-size: 13px;
                font-family: inherit;
                transition: all 0.3s ease;
                resize: none;
            }

            .contact-form-group input::placeholder,
            .contact-form-group textarea::placeholder {
                color: rgba(255, 255, 255, 0.6);
            }

            .contact-form-group input:focus,
            .contact-form-group textarea:focus {
                outline: none;
                background: rgba(255, 255, 255, 0.25);
                border-bottom-color: rgba(255, 255, 255, 0.8);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .contact-form-group textarea {
                height: 100px;
            }

            .contact-btn-send {
                background: #000000;
                color: #ffffff;
                border: none;
                padding: 12px 35px;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                margin-top: 10px;
                width: fit-content;
            }

            .contact-btn-send:hover {
                background: #1a1f35;
                transform: translateY(-2px);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            }

            @media (max-width: 768px) {
                .contact-grid-container {
                    grid-template-columns: 1fr;
                    min-height: auto;
                }

                .contact-left-section,
                .contact-form-right-section {
                    padding: 40px 30px;
                }

                .contact-title-section span {
                    font-size: 28px;
                }

                .contact-page-wrapper{
                    padding:20px;
                }

                .contact-form-header span {
                    font-size: 24px;
                }

                .contact-details-grid {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }
                .contact-sub-head{
                    color: #fff;
                    font-size: 1.5rem;
                    font-weight: 700;
                }
            }

            /* box-section */

            .scroll-rotate-section {
            /* height: 160vh; */
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f9f9f9;
        }

        .rotate-container {
            perspective: 1600px;
            width: 350px;
            height: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .rotate-box {
            width: 320px;
            height: auto;
            transform-style: preserve-3d;
            transition: transform 0.05s linear;
            filter: drop-shadow(0px 15px 20px rgba(0,0,0,0.25));
        }

        .pb-product-info-1 {
            color: rgb(0, 0, 0);
        }

        .pb-product-info-1 span {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #e8b128;
        }

        .pb-product-info-1 p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: rgba(0, 0, 0, 0.9);
        }

        .pb-features-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
        }

        .pb-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: rgba(0, 0, 0, 0.95);
        }

        .pb-feature-item::before {
            content: '✓';
            width: 28px;
            height: 28px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
        }

        @media (max-width: 480px) {
            .pb-features-list {
                gap: 10px;
            }
        }    

        /* product-showcase-section */

        .productshowcase-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 50px;
            color: #000;
        }

        .thumbnail-gallery {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 600px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .thumbnail-gallery::-webkit-scrollbar {
            width: 8px;
        }

        .thumbnail-gallery::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .thumbnail-gallery::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }

        .thumbnail-item {
            border: 2px solid #e0e0e0;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fff;
            border-radius: 5px;
        }

        .thumbnail-item:hover {
            border-color: #000;
        }

        .thumbnail-item.active {
            border-color: #000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .thumbnail-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .main-image-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            background-color: #fff;
        }

        .main-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .productshowcase-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .productshowcase-name {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 30px;
            color: #000;
            letter-spacing: 2px;
            transition: opacity 0.3s ease;
        }

        .know-more-btn {
            background-color: #000;
            color: #fff;
            padding: 15px 60px;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .know-more-btn:hover {
            background-color: #333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .thumbnail-gallery {
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                max-height: none;
                padding-right: 0;
                padding-bottom: 10px;
            }

            .thumbnail-item {
                min-width: 80px;
            }

            .section-title {
                font-size: 2rem;
            }

            .productshowcase-name {
                font-size: 1.5rem;
                text-align: center;
            }
            .productshowcase-details{
                align-items: center;
            }
        }

        /* featured-product-section */

        .featureed-section {
            padding: 60px 0;
            background-color: #f5f5f5;
            position: relative;
        }

        .fetu-section-title-wrapper {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .background-text {
            font-size: 5rem;
            font-weight: bold;
            color: rgba(0, 0, 0, 0.03);
            text-transform: uppercase;
            letter-spacing: 10px;
            position: absolute;
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
            z-index: 1;
        }

        .fetu-section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e1aa1b;
            position: relative;
            z-index: 2;
            margin: 0;
            padding: 20px 0;
        }

        .fetu-carousel-container {
            position: relative;
            padding: 0 60px;
        }

        .fetu-product-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px 20px;
            margin: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .fetu-product-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .fetu-product-image-wrapper {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .product-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-category {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-category::before {
            content: '';
            width: 30px;
            height: 2px;
            background-color: #999;
        }

        .product-title {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 75px;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
            margin-top: auto;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border: 2px solid #ddd;
            background: #fff;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-control:hover {
            background: #f8f9fa;
            border-color: #333;
        }

        .carousel-control i {
            color: #999;
            font-size: 1.2rem;
        }

        .carousel-control:hover i {
            color: #333;
        }

        .carousel-control-prev {
            left: 0;
        }

        .carousel-control-next {
            right: 0;
        }

        .products-wrapper {
            display: flex;
            transition: transform 0.5s ease;
        }

        .product-slide {
            min-width: 33.333%;
            padding: 0 10px;
            box-sizing: border-box;
        }

        @media (max-width: 992px) {
            .product-slide {
                min-width: 50%;
            }

            .background-text {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .product-slide {
                min-width: 100%;
            }

            .fetu-section-title {
                font-size: 15px;
            }

            .background-text {
                font-size: 18px;
            }

            .fetu-carousel-container {
                padding: 0 5px;
            }
        }

        /* footer-ccs */

        .footer-strip{
            background:var(--color-2);
        }

        #goTopBtn {
            display: none; /* Hidden by default */
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 99;
            background-color: var(--color-2);
            color: white;
            border: none;
            outline: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 3px 6px rgba(0,0,0,0.3);
            transition: background-color 0.3s ease;
            }

            #goTopBtn:hover {
            background-color:var(--color-1)
            }

        @media (max-width: 768px) {
            .top-strip .top-strip-inner {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                padding: 1rem !important;
            }
        }

        @media (max-width: 768px) {
            .top-strip .top-strip-right {
                flex-direction: column;
                gap: 8px;
                width: 100%;
                justify-content: center;
            }
        }
        
    


        /* about-page-css */

        .about-section{text-align: center;}

        .section-title span{
            font-size:40px;
        }
        
        .section-subtitle span{
            font-size:25px;
        }

        .floating-image {
            float: left;
            width: 45%;
            margin: 0 30px 20px 0;
        }
        
        .floating-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .content-text p{
            text-align: justify;
            line-height: 1.8;
            color: #333;
            font-size: 16px;
        }
        
        .highlight {
            color: #000;
            font-weight: 600;
        }
        
        .content-text::after {
            content: "";
            display: table;
            clear: both;
        }
        
        @media (max-width: 768px) {
            .floating-image {
                float: none;
                width: 100%;
                margin: 0 0 20px 0;
            }
        }


        /* sitemap-section */

        .sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .sitemap-title {
            color: #2b2a28;
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .sitemap-card {
            background-color: white;
            border: 2px solid #d59e06;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: #2b2a28;
        }
        
        .sitemap-card:hover {
            background-color: #d59e06;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
            text-decoration: none;
        }
        
        .card-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .sitemap-card:hover .card-description {
            opacity: 1;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-header {
            color: #d59e06;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d59e06;
        }
        
        .main-links {
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .sitemap-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .category-header {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .sitemap-card {
                padding: 15px;
            }
            
            .card-label {
                font-size: 1rem;
            }
        }

        /* Breadcrumb Banner Section */
        .breadcrumb-banner {
            background: linear-gradient(135deg, rgba(43, 42, 40, 0.7) 0%, rgb(37 37 37 / 50%) 100%), url(https://www.eliteplastics.in/images/about_us1.png?w=1200&h=400&fit=crop) center / cover no-repeat;
            padding: 50px 20px;
            margin-bottom: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .breadcrumb-content {
            max-width: 800px;
            z-index: 2;
        }

        .page-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: -1px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: #f0f0f0;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            background-color: transparent;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-item {
            color: #d59e06;
            font-weight: 500;
        }

        .breadcrumb-item a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: #d59e06;
        }

        .breadcrumb-item.active {
            color: #d59e06;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #d59e06;
            font-weight: bold;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            

            .breadcrumb-banner {
                padding: 60px 20px;
                min-height: 350px;
            }

            .page-title {
                font-size: 2.5rem;
            }

            .page-subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .breadcrumb-banner {
                padding: 50px 20px;
                min-height: 300px;
            }

            .page-title {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .page-subtitle {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .nav-link {
                margin: 5px 0;
            }

            .breadcrumb-item {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .breadcrumb-banner {
                padding: 40px 15px;
                min-height: 250px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .navbar-brand {
                font-size: 1.2rem;
            }

            .breadcrumb {
                font-size: 0.85rem;
            }
        }