
        :root {
            --primary-color: #d26c0c;
            --secondary-color: #f8b739;
            --dark-color: #974905;
            --light-color: #fff4e9;
            --accent-color: #e74c3c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .enquiry-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.icon-btn {
    width: 65px;
    height: 44px;
    border-radius: 35px;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s ease;
}

.icon-btn.whatsapp {
    background: #25d366;
}

    .icon-btn.call {
    background: #ffffff;
    color: #d26c0c;
    border: 2px solid;
}


.icon-btn:hover {
    transform: scale(1.1);
}


        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .header-area {
            position: sticky;
            top: 0;
            z-index: 9999;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            max-height: 50px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }

        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 80%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: rgba(42, 110, 63, 0.1);
            padding-left: 2rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--dark-color);
            transition: all 0.5s ease;
            z-index: -1;
            border-radius: 30px;
        }

        .btn-primary:hover:before {
            left: 0;
        }

        .btn-primary:hover {
            border-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42, 110, 63, 0.2);
        }

        .section-title {
            margin-bottom: 50px;
            text-align: center;
        }

        .section-title span {
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
            font-family: 'Poppins', sans-serif;
        }

        .section-title h2 {
            color: var(--dark-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }



        /* =========================
   HERO SLIDER
========================= */
        .hero-slider {
            width: 100%;
            height: 70vh;
            position: relative;
            overflow: hidden;
        }

        .heroSwiper {
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
        }

        /* Dark overlay */
        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.282);
            z-index: 1;
        }

        /* =========================
   HERO CONTENT
========================= */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 15px;
            margin-top: -150px !important;
            margin: 0px 40px;
            color: #fff;
        }

        .hero-content h1 {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 700px;
            margin-bottom: 30px;
            opacity: 0.95;
        }


        /* =========================
   SWIPER CONTROLS
========================= */
        .swiper-button-next,
        .swiper-button-prev {
            color: #fff;
            width: 45px;
            height: 45px;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.5;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }

        /* =========================
   RESPONSIVE
========================= */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content {
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
        }




        .about-section {
            padding: 50px 0;
            background-color: var(--light-color);
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .about-img:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: all 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-content h3 {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .about-features {
            margin-top: 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 5px;
        }

        .about-feature-item:hover {
            background-color: rgba(42, 110, 63, 0.05);
            transform: translateX(10px);
        }

        .about-feature-icon {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-right: 10px;
            margin-top: 5px;
        }

        .products-section {
            padding: 50px 0;
        }

        .product-card {
            border: 1px solid #eee;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            
            height: 100%;
            transform: translateY(0);
            background-color: white;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 20px;
        }

        .product-content h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .product-specs {
            margin: 15px 0;
        }

        .product-specs li {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }

        .services-section {
            padding: 50px 0;
            background-color: var(--light-color);
        }

        .service-box {
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            transform: translateY(0);
        }

        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(42, 110, 63, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .service-box:hover .service-icon {
            background-color: var(--primary-color);
            color: white;
            transform: rotateY(180deg);
        }

        .service-box h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-section {
            padding: 50px 0;
        }

        .contact-info-box {
            background-color: var(--primary-color);
            color: white;
            padding: 40px;
            border-radius: 10px;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-info-box:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .contact-info-box>* {
            position: relative;
            z-index: 2;
        }

        .contact-info-box h3 {
            color: white;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 5px;
        }

        .contact-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            transform: scale(1.1);
        }

        .contact-details h5 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-form {
            padding: 40px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 30px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(42, 110, 63, 0.2);
            border-color: var(--primary-color);
        }

        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 70px 0 20px;
            position: relative;
            overflow: hidden;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
        }

        .footer-logo {
            max-height: 60px;
            margin-bottom: 20px;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .social-links a {
            display: inline-flex;
            text-decoration: none;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            transform: translateY(-5px) rotate(10deg);
        }

        .footer-widget h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .copyright {
            padding-top: 20px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Table styling */
        .table {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .table thead th {
            background-color: var(--primary-color);
            color: white;
            border: none;
            font-weight: 500;
        }

        .table tbody tr:hover {
            background-color: rgba(42, 110, 63, 0.05);
        }

        /* Floating animation for elements */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }

        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(42, 110, 63, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(42, 110, 63, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(42, 110, 63, 0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Fade in up animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Loading animation */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.5s ease;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        body.loaded .loader-wrapper {
            opacity: 0;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }


        }

        .nav-item .nav-link.dropdown-toggle::after{
            bottom: 45%;
            right: 10px;
            background-color: white;
            left: 90%;
            visibility: hidden;
        }
        
        
        
        
        

        /* =========================
           BREADCRUMB SECTION
        ========================= */
        .breadcrumb-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://www.internationalind.com/assets/img/home/banner.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 100px 0 60px;
            color: white;
            position: relative;
            
        }

        .breadcrumb-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .breadcrumb-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .breadcrumb-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }

        .breadcrumb-item {
            color: rgba(255, 255, 255, 0.8);
        }

        .breadcrumb-item a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: white;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        /* =========================
           ABOUT CONTENT SECTIONS
        ========================= */
        .about-intro {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .about-intro h2 {
            color: var(--dark-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .about-intro h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .about-intro-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        .about-intro-img:hover {
            transform: translateY(-10px);
        }

        .about-intro-img img {
            width: 100%;
            height: auto;
            transition: all 0.5s ease;
        }

        .about-intro-img:hover img {
            transform: scale(1.05);
        }

        /* Vision & Mission Section */
        .vision-mission {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title span {
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
            font-family: 'Poppins', sans-serif;
        }

        .section-title h2 {
            color: var(--dark-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .vision-box, .mission-box {
            background-color: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            text-align: start;
            border-top: 5px solid var(--primary-color);
        }

        .vision-box:hover, .mission-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .vision-icon, .mission-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(210, 108, 12, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .mission-box ul li i {
    color: #d26c0c !important;
}

        .vision-box:hover .vision-icon,
        .mission-box:hover .mission-icon {
            background-color: var(--primary-color);
            color: white;
            transform: rotateY(180deg);
        }

        .vision-box h3, .mission-box h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .value-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 30px;
        }

        .value-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--primary-color);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(210, 108, 12, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .value-box:hover .value-icon {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .value-box h4 {
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 80px 0;
            background-color: white;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 50px;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .timeline-content h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .timeline-year {
            position: absolute;
            width: 100px;
            height: 100px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            z-index: 1;
            top: -30px;
            left: calc(50% - 50px);
            box-shadow: 0 0 0 8px white;
        }

        .timeline-item:nth-child(odd) .timeline-year {
            left: calc(100% - 50px);
        }

        .timeline-item:nth-child(even) .timeline-year {
            left: -50px;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--primary-color);
            border-radius: 50%;
            top: 25px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -12px;
        }

        .timeline-item:nth-child(even)::after {
            left: -12px;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .team-member {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .team-img {
            height: 300px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .team-member:hover .team-img img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h4 {
            color: var(--dark-color);
            margin-bottom: 5px;
        }

        .team-info p {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .team-social a {
            width: 40px;
            height: 40px;
            background-color: rgba(210, 108, 12, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }










 <!-- Custom CSS -->
    <style>
        :root {
            --primary-color: #d26c0c;
            --secondary-color: #f8b739;
            --dark-color: #974905;
            --light-color: #fff4e9;
            --accent-color: #e74c3c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* =========================
           HEADER & NAVIGATION
        ========================= */
        .header-area {
            position: sticky;
            top: 0;
            z-index: 9999;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .header-scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            max-height: 50px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }

        
        
        @media screen and (min-width: 991px){
            .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: all 0.3s ease;
        }
        }

        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: 80%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-item {
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: rgba(42, 110, 63, 0.1);
            padding-left: 2rem;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--dark-color);
            transition: all 0.5s ease;
            z-index: -1;
            border-radius: 30px;
        }

        .btn-primary:hover:before {
            left: 0;
        }

        .btn-primary:hover {
            border-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42, 110, 63, 0.2);
        }

        /* =========================
           BREADCRUMB SECTION
        ========================= */
        .breadcrumb-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://www.internationalind.com/assets/img/home/banner.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 100px 0 60px;
            color: white;
            position: relative;
            
        }

        .breadcrumb-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .breadcrumb-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .breadcrumb-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }

        .breadcrumb-item {
            color: rgba(255, 255, 255, 0.8);
        }

        .breadcrumb-item a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: white;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        /* =========================
           PRODUCTS CONTENT SECTION
        ========================= */
        .products-main-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        /* Product Card Styles */
        .product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            
            height: 100%;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-img {
            height: 250px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 25px;
        }

        .product-content h4 {
            color: var(--dark-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .product-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .product-specs {
            margin: 15px 0;
            padding-left: 20px;
        }

        .product-specs li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #666;
        }

        .product-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background-color: transparent;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Category Filter */
        .category-filter {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .category-filter h4 {
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }

        .category-list {
            list-style: none;
            padding: 0;
        }

        .category-list li {
            margin-bottom: 12px;
        }

        .category-list a {
            color: #555;
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .category-list a:hover,
        .category-list a.active {
            background-color: rgba(210, 108, 12, 0.1);
            color: var(--primary-color);
            padding-left: 20px;
        }

        .category-list i {
            margin-right: 10px;
            width: 20px;
        }

        /* =========================
           RIGHT SIDE FIXED FORM
        ========================= */
        .fixed-sidebar {
            position: sticky;
            top: 100px;
        }

        .enquiry-form-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .enquiry-form-box h4 {
            color: var(--dark-color);
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .enquiry-form-box h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 30px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(210, 108, 12, 0.2);
            border-color: var(--primary-color);
        }

        textarea.form-control {
            border-radius: 15px;
            min-height: 120px;
            resize: vertical;
        }

        /* Help Section */
        .help-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .help-section h5 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .help-section p {
            opacity: 0.9;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .help-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .help-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .help-action-btn.whatsapp {
            background-color: #25d366;
            color: white;
        }

        .help-action-btn.call {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid white;
        }

        .help-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .help-action-btn i {
            font-size: 1.2rem;
        }

        /* 24/7 Available Badge */
        .available-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(248, 183, 57, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(248, 183, 57, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(248, 183, 57, 0);
            }
        }

        /* =========================
           PRODUCT DETAILS MODAL
        ========================= */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
            border: none;
        }

        .modal-header {
            background-color: var(--primary-color);
            color: white;
            border-bottom: none;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-product-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
        }

       
       
       
       
       
       
     
        /* =========================
           PRODUCT DETAILS SECTION
        ========================= */
        .product-details-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        /* Product Main Image */
        .product-main-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .product-main-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .product-main-img:hover img {
            transform: scale(1.02);
        }

        /* Product Thumbnails */
        .product-thumbnails {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .product-thumb {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .product-thumb.active {
            border-color: var(--primary-color);
        }

        .product-thumb:hover {
            transform: translateY(-5px);
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Product Info */
        .product-info {
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: auto !important;
        }

        .product-badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .product-title {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 2.2rem;
        }

        .product-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .product-description {
            margin-bottom: 30px;
            color: #555;
            line-height: 1.8;
        }

        /* Product Specifications */
        .product-specifications {
            margin: 30px 0;
        }

        .spec-title {
            color: var(--dark-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }

        .spec-list {
            list-style: none;
            padding: 0;
        }

        .spec-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
        }

        .spec-list li:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            color: var(--dark-color);
            min-width: 180px;
        }

        .spec-value {
            color: #555;
            flex: 1;
        }

        /* Product Actions */
        .product-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background-color: transparent;
            border-radius: 30px;
            padding: 12px 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        /* Product Tabs */
        .product-tabs {
            margin-top: 60px;
        }

        .nav-tabs {
            border-bottom: 2px solid #eee;
        }

        .nav-tabs .nav-link {
            color: #666;
            font-weight: 500;
            border: none;
            padding: 15px 25px;
            border-radius: 10px 10px 0 0;
            margin-right: 5px;
        }

        .nav-tabs .nav-link.active {
            color: var(--primary-color);
            background-color: white;
            border-bottom: 3px solid var(--primary-color);
        }

        .tab-content {
            background-color: white;
            padding: 40px;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .tab-content h4 {
            color: var(--dark-color);
            margin-bottom: 20px;
        }

        .tab-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .tab-content ul li {
            margin-bottom: 10px;
            color: #555;
        }

        /* Related Products */
        .related-products {
            margin-top: 80px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title span {
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
            font-family: 'Poppins', sans-serif;
        }

        .section-title h2 {
            color: var(--dark-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .related-product-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .related-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .related-product-img {
            height: 200px;
            overflow: hidden;
        }

        .related-product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .related-product-card:hover .related-product-img img {
            transform: scale(1.05);
        }

        .related-product-content {
            padding: 20px;
        }

        .related-product-content h5 {
            color: var(--dark-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .related-product-price {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        /* =========================
           RIGHT SIDE FIXED FORM
        ========================= */
        .fixed-sidebar {
            position: sticky;
            top: 100px;
        }

        .enquiry-form-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .enquiry-form-box h4 {
            color: var(--dark-color);
            margin-bottom: 20px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .enquiry-form-box h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 30px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .form-control:focus {
            box-shadow: 0 0 0 3px rgba(210, 108, 12, 0.2);
            border-color: var(--primary-color);
        }

        textarea.form-control {
            border-radius: 15px;
            min-height: 120px;
            resize: vertical;
        }

        /* Help Section */
        .help-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .help-section h5 {
            color: white;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .help-section p {
            opacity: 0.9;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .help-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .help-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .help-action-btn.whatsapp {
            background-color: #25d366;
            color: white;
        }

        .help-action-btn.call {
            background-color: white;
            color: var(--primary-color);
            border: 2px solid white;
        }

        .help-action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .help-action-btn i {
            font-size: 1.2rem;
        }

        /* 24/7 Available Badge */
        .available-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(248, 183, 57, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(248, 183, 57, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(248, 183, 57, 0);
            }
        }

     