/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #f8f9fa, #e3f2fd);
    text-align: center;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background-image: url('../assets/Header.png');/* Replace with your image URL */
    background-size: cover;
    background-position: center;
    padding: 15px 30px;
    color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .navbar {
        background: linear-gradient(to right, #ff9900, #ff6600);
    }
}


/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-left: 50px;
    margin-right: auto;
}

.logo img {
    width: 138px;
    height: auto;
}

.company-name {
    text-decoration: none;
    color: #ff6600;
    font-size: 24px;
    margin-top: 5px;
    margin-right: -50px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    font-size: 18px;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

/* Underline Effect */
.nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: white;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* Dropdown Menu Box */
.dropdown-menu {
    position: absolute;
    background: white;
    top: 100%;
    left: 0;
    padding: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: none;
    text-align: left;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-menu li {
    display: block;
    padding: 10px;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

/* Hover Effect - White Text */
.dropdown-menu li:hover {
    background: #ff6600;
    color: white;
    transform: scale(1.02);
}

/* Dropdown Links */
.dropdown-menu a {
    color: black;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease-in-out;
}

/* Change link color on hover */
.dropdown-menu li:hover a {
    color: white;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    margin: 5px;
    background: white;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -270px;
    width: 270px;
    height: 100%;
    background: linear-gradient(to bottom, #ff9900, #ff6600);
    transition: left 0.3s ease-in-out;
    padding-top: 20px;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav a {
    color: #fff;
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease-in-out, padding-left 0.3s;
}
/* Remove default focus outline */
.mobile-nav .dropdown-menu a {
    color: #000; /* Default Black */
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease-in-out;
    outline: none; /* Remove default browser focus */
    border: none;  /* Ensure no border appears */
}

/* Change color on hover */
.mobile-nav .dropdown-menu a:hover {
    color: #ff4500 !important;
}

/* Change color on touch (tap effect) */
.mobile-nav .dropdown-menu a:active,
.mobile-nav .dropdown-menu a:focus {
    color: #ff4500 !important;
    outline: none !important; /* Prevent default focus outline */
    border: none !important;  /* Ensure no border appears */
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    padding-left: 30px;
    color: #ffcc00;
}

/* Mobile Dropdown */
.mobile-nav .dropdown {
    position: relative;
}

.mobile-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 10px;
    width: 240px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    max-height: 350px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(12px);
    z-index: 1000;
}

.mobile-nav .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #ffcc00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        margin-left: 10px;
        margin-right: auto;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 80px;
    }

    .mobile-nav {
        width: 250px;
    }

    .mobile-nav .dropdown-menu {
        left: 5px;
    }
}


/* =================== Footer Styling =================== */
footer {
    background: linear-gradient(135deg, #002244, #004488);
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 3px solid #ff6600;
    padding-top: 30px;
    text-align: left;
    gap: 20px;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    padding: 15px;
    min-width: 280px;
}

/* Footer Heading */
.footer-section h3 {
    color: #ff4500;
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid #ff6600;
    display: inline-block;
    padding-bottom: 5px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin: 6px 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease-in-out;
}

.footer-contact a:hover {
    color: #ff4500;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ff4500;
}

/* Map Section */
.map-section iframe {
    width: 450px;
    height: 160px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    background: #001122;
    padding: 12px 0;
    text-align: center;
}

/* =================== Fixed Floating Buttons =================== */
.fixed-buttons {
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fixed-buttons a,
.fixed-buttons button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Scroll to Top Button */
.scroll-top-btn {
    background: red;
    color: white;
    display: none;
}

.scroll-top-btn:hover {
    background: #c00;
}

.scroll-top-btn.visible {
    display: flex;
}

/* =================== Responsive Design =================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        padding: 10px 0;
    }

    .footer-contact a,
    .footer-links a {
        justify-content: center;
    }

    .map-section iframe {
        width: 250px;
        height: 140px;
    }

    .fixed-buttons {
        right: 15px;
        bottom: 60px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 10px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .map-section iframe {
        height: 120px;
    }

    .fixed-buttons {
        right: 10px;
        bottom: 50px;
    }
}



/* Company Name */
.company-name {
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
    transition: opacity 0.3s ease-in-out;
}

/* Hide Company Name on Mobile Screens */
@media (max-width: 768px) {
    .company-name {
        display: none;
    }

    /* Show Company Name in Mobile Menu */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        font-size: 20px;
        font-weight: bold;
        color: white;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Buttons */
.btn
{
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn:hover {
    background: #ff4500;
    transform: scale(1.05);
}

/* =================== Hero Section (Compact Carousel) =================== */
.hero {
    position: relative;
    height: 450px; /* Reduced height for a cleaner look */
    overflow: hidden;
    background: linear-gradient(to right, #f8f9fa, #e3f2fd);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Carousel Container */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slides */
.slides {
    display: flex;
    width: 200%; /* 2 slides */
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Dark Overlay for Better Text Visibility */
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Slightly lighter overlay */
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 20px;
    padding: 10px 14px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
    background: rgba(255, 102, 0, 0.9);
}

/* Hero Text */
.hero-text {
    position: absolute;
    z-index: 11;
    text-align: center;
    width: 75%;
}

.hero-text h1 {
    font-size: 36px; /* Slightly smaller */
    margin-bottom: 8px;
    font-weight: 600;
    animation: fadeIn 1s ease-in-out;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 18px;
    animation: fadeIn 1.2s ease-in-out;
}

.btn {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ff4500;
}

/* Fade-in animation */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}



/* =================== Section Titles =================== */
h2 {
    font-size: 32px;
    color: #ff6600;
    margin: 40px 0 20px;
    text-transform: uppercase;
}

/* =================== About Section =================== */
.about {
    padding: 10px 20px;
    background: linear-gradient(to right, #f8f9fa, #e3f2fd);
    text-align: center;
}

/* About Text */
.about p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about {
        padding: 30px 15px;
    }

    .about p {
        font-size: 16px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 20px 10px;
    }

    .about p {
        font-size: 14px;
        padding: 0 5px;
    }
}


/* =================== Product Categories =================== */
.categories {
    padding: 10px 20px;
    background: linear-gradient(to right, #f8f9fa, #e3f2fd);
    text-align: center;
    position: relative;
}

.category-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.category-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.category-card {
    flex: 0 0 280px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
}

.view-more-btn {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 12px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.view-more-btn:hover {
    background: #ff4500;
    transform: scale(1.05);
}

/* Round Navigation Buttons */
.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease-in-out;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Hide Prev & Next Buttons in Mobile View */
@media (max-width: 768px) {
    .prev-btn, .next-btn {
        display: none;
    }

    .category-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .category-slider::-webkit-scrollbar {
        display: none;
    }
}


/* =================== Why Choose Us (Feature Cards) =================== */
.why-choose {
    padding: 30px 20px;
background: linear-gradient(to right, #f8f9fa, #e3f2fd);;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    background: #f8f8f8;
    width: 250px; /* Fixed width for cleaner look */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size:  40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 20px; /* Slightly smaller for better fit */
    margin-bottom: 10px;
}

/* =================== Testimonials =================== */
.testimonials {
    padding: 50px 10px;
    background: linear-gradient(to right, #f8f9fa, #e3f2fd);
    text-align: center;
    color: #333;
    overflow: hidden;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: #ff6600;
}

/* Wrapper to Contain Scrolling Testimonials */
.testimonial-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

/* Infinite Scrolling Container */
.testimonial-container {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: scrollLeft 20s linear infinite;
}

/* Duplicate Content for Infinite Effect */
.testimonial-container:hover {
    animation-play-state: paused;
}

/* Auto-Scroll Left Animation (Loop Effect) */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.testimonial-card {
    display: inline-block;
    min-width: 280px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* No Content Overflow */
.testimonial-card p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 1em;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 100px;
}

/* Hover Effect */
.testimonial-card:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-container {
        animation: scrollLeft 15s linear infinite;
    }
    
    .testimonial-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .testimonial-container {
        animation: scrollLeft 12s linear infinite;
    }
}

.home-contact-section {
    padding: 4rem 2rem;
}

.home-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.home-contact-content {
    flex: 1;
    margin-bottom: 50px;
}

.home-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6600;
}

.home-contact-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.home-contact-content .btn {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.home-contact-content .btn:hover {
    background-color: #e05500;
}

.home-contact-image {
    flex: 1;
    text-align: right;
}

.home-contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .home-contact-container {
        flex-direction: column;
        text-align: center;
    }

    .home-contact-content h2 {
        font-size: 2rem;
    }

    .home-contact-image {
        text-align: center;
    }
}



/* =================== Contact Page =================== */
.contact-section .contact-bg {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('/assets/C1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
  }
  
  .contact-section .contact-bg h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  .contact-section .contact-bg h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }
  
  .contact-section .line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .contact-section .line div {
    margin: 0 0.2rem;
  }
  
  .contact-section .line div:nth-child(1),
  .contact-section .line div:nth-child(3) {
    height: 3px;
    width: 70px;
    background: #ff6600;
    border-radius: 5px;
  }
  
  .contact-section .line div:nth-child(2) {
    width: 10px;
    height: 10px;
    background: #ff6600;
    border-radius: 50%;
  }
  
  .contact-section .text {
    font-weight: 300;
    opacity: 0.9;
    margin: 1.6rem 0;
    font-size: 1rem;
  }
  
  .contact-section .contact-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .contact-section .contact-info {
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  
  .contact-section .contact-info div {
    margin: 0.8rem 0;
    padding: 1rem;
  }
  
  .contact-section .contact-info span .fas {
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: #ff6600;
  }
  
  .contact-section .contact-info div span:nth-child(2) {
    font-weight: 500;
    font-size: 1.1rem;
  }
  
  .contact-section .contact-info .text {
    padding-top: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
  }
  
  /* Scoped link styling */
  .contact-section .contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-section .contact-info a:hover {
    color: #ff6600;
  }
  
  .contact-section .contact-form {
    border-top: 1px solid #c7c7c7;
    padding: 2rem 1rem;
    box-sizing: border-box;
  }
  
  .contact-section .contact-form form {
    padding-bottom: 1rem;
  }
  
  .contact-section .form-control {
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    outline: 0;
    box-sizing: border-box;
  }
  
  .contact-section .form-control:focus {
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
  }
  
  .contact-section .contact-form form div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-section .send-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: #ff6600;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  
  .contact-section .send-btn:hover {
    opacity: 0.85;
  }
  
  .contact-section .contact-form > div img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  
  .contact-section .contact-form > div {
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-section .contact-footer {
    padding: 2rem 0;
    background: #000;
  }
  
  .contact-section .contact-footer h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .contact-section .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-section .social-links a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
  }
  
  .contact-section .social-links a:hover {
    color: #ff6600;
    border-color: #ff6600;
  }
  
  /* Hide contact image in smaller screens */
  @media screen and (max-width: 991px) {
    .contact-section .contact-form > div img {
      display: none;
    }
  }
  
  /* Responsive Enhancements */
  @media screen and (min-width: 768px) {
    .contact-section .contact-bg h2 {
      font-size: 2.8rem;
    }
  
    .contact-section .contact-bg h3 {
      font-size: 1.4rem;
    }
  
    .contact-section .contact-bg .text {
      width: 70%;
      margin: 0 auto;
    }
  
    .contact-section .contact-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  
    .contact-section .contact-form form div {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  
    .contact-section .contact-form {
      padding: 2rem 2rem;
    }
  }
  
  @media screen and (min-width: 992px) {
    .contact-section .contact-bg h2 {
      font-size: 3rem;
    }
  
    .contact-section .contact-bg .text {
      width: 50%;
    }
  
    .contact-section .contact-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      align-items: center;
      padding: 2rem 2rem;
    }
  
    .contact-section .contact-form form div {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  
    .contact-section .contact-form > div img {
      max-width: 100%;
    }
  }
  
  @media screen and (min-width: 1200px) {
    .contact-section .contact-info {
      grid-template-columns: repeat(4, 1fr);
    }
  }

/* Banner Section */
    .aboutus-banner {
        background: url('assets/banner-bg.jpg') center/cover no-repeat;
        height: 55vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 20px;
    }

    .aboutus-banner-content h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    /* Responsive Banner */
    @media (max-width: 768px) {
        .aboutus-banner {
            height: 40vh;
            padding: 15px;
        }
        .aboutus-banner-content h1 {
            font-size: 2rem;
        }
    }

    /* Company Overview */
    .company-overview {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 60px 0;
    }

    .overview-text {
        flex: 1;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .overview-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Company Overview */
    @media (max-width: 768px) {
        .company-overview {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
    }

    /* Company Values */
    .company-values {
        justify-content: space-between;
        text-align: center;
        padding: 30px 0;
        gap: 30px;
    }

    .company-values h2 {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
        width: 100%;
    }


    .value-card {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
        padding: 30px;
        border-radius: 15px;
        background: white;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .value-card i {
        font-size: 2.5rem;
        color: #ff6600;
        margin-bottom: 10px;
    }

    .value-card:hover {
        transform: scale(1.05);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* Responsive Company Values */
    @media (max-width: 768px) {
        .company-values {
            flex-direction: column;
            align-items: center;
        }
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    /* 🔥 Hero Banner */
    .aboutus-banner {
        background: url('/assets/A1.jpg') center/cover no-repeat;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        text-align: center;
        padding: 20px;
    }

    /* 🔥 Overview */
    .company-overview {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 30px 0;
    }

    .overview-text {
        flex: 1;
        text-align: left;
    }

    .overview-image img {
        max-width: 450px;
        border-radius: 10px;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* 🔥 Values Section */
    .values-wrapper {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;  /* Ensures proper wrapping on smaller screens */
        padding: 40px 0;
    }

    /* 🔥 Value Card */
    .value-card {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
        max-width: 300px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* 🔥 Hover Effect */
    .value-card:hover {
        transform: scale(1.07);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    }

    /* 🔥 Icons */
    .value-card i {
        font-size: 2.5rem;
        color: #ff6600;
        margin-bottom: 10px;
    }

    /* 🔥 Titles */
    .value-card h3 {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #222;
    }

    /* 🔥 Description */
    .value-card p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
    }

    /* 🔥 Responsive Design */
    @media (max-width: 768px) {
        .values-wrapper {
            flex-direction: column;
            align-items: center;
        }

        .value-card {
            max-width: 90%;
            padding: 20px;
        }

        .value-card h3 {
            font-size: 1.4rem;
        }

        .value-card p {
            font-size: 0.95rem;
        }
    }

    #pdf-brochures {
        text-align: center;
        filter: none !important;
    }
    .pdf-links {
        font-size: 21px;
        margin-bottom: 5px;
    }
    .pdf-links a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }
    .pdf-links a:hover {
        color: #ff6600;
        text-decoration: underline;
    }
    

    /* 🔥 Video Section */
    .video-section {
        text-align: center;
        padding: 50px 20px;
        border-radius: 12px;
        animation: fadeInUp 1s ease-in-out;
    }

    /* 🔥 Heading */
    .video-section h2 {
        font-size: 2rem;
        color: #ff6600;
        margin-bottom: 10px;
    }

    /* 🔥 Description */
    .video-section p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 20px;
    }

    /* 🔥 Video Wrapper */
    .video-wrapper {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
        transform: scale(1);
        transition: transform 0.3s ease-in-out;
    }

    /* 🔥 Hover Effect */
    .video-wrapper:hover {
        transform: scale(1.05);
    }

    /* 🔥 Responsive Iframe */
    .video-wrapper iframe {
        width: 100%;
        height: 450px;
        border-radius: 10px;
    }

    /* 🔥 Keyframe Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 🔥 Responsive Design */
    @media (max-width: 768px) {
        .video-section h2 {
            font-size: 1.6rem;
        }

        .video-section p {
            font-size: 1rem;
        }

        .video-wrapper iframe {
            height: 300px;
        }
    }

    @media (max-width: 480px) {
        .video-wrapper iframe {
            height: 200px;
        }
    }


    /* 🔥 Business Sectors */
    .sectors-wrapper {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap; /* Ensures wrapping on smaller screens */
        padding: 10px 0;
    }

    /* 🔥 Sector Card */
    .sector-card {
        background: #ffffff;
        padding: 20px;
        border-radius: 12px;
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
        max-width: 180px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    /* 🔥 Hover Effect */
    .sector-card:hover {
        transform: scale(1.07);
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
        background: #ff6600;
        color: white;
    }

    /* 🔥 Icons */
    .sector-card i {
        font-size: 2.5rem;
        color: #ff6600;
        margin-bottom: 10px;
        transition: color 0.3s;
    }

    /* 🔥 Change icon color on hover */
    .sector-card:hover i {
        color: white;
    }

    /* 🔥 Titles */
    .sector-card h4 {
        font-size: 1.3rem;
        font-weight: bold;
        margin-top: 10px;
    }

    /* 🔥 Responsive Design */
    @media (max-width: 768px) {
        .sectors-wrapper {
            flex-direction: row;
            justify-content: center;
            gap: 15px;
        }

        .sector-card {
            max-width: 45%;
            padding: 18px;
        }

        .sector-card h4 {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 480px) {
        .sector-card {
            max-width: 90%;
            padding: 15px;
        }

        .sector-card i {
            font-size: 2rem;
        }

        .sector-card h4 {
            font-size: 1.1rem;
        }
    }


    /* 🔥 Leadership Section */
    .leadership {
        background-color: #fff;
        padding: 40px 20px;
        border-radius: 10px;
        max-width: 1200px;
        margin: auto;
    }

    /* 🔥 Leaders Wrapper */
    .leaders-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    /* 🔥 Leader Card */
    .leader-card {
        display: flex;
        gap: 40px;
        max-width: 1000px;
        width: 100%;
        padding: 20px;
    }

    /* 🔥 Left Section (Image, Name, Designation) */
    .leader-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 250px; /* Keeps a fixed width */
        text-align: center;
    }

    /* 🔥 Leader Image */
    .leader-left img {
        width: 150px;
        height: 150px;
        border-radius: 10%;
        border: 4px solid #ff6600;
        transition: transform 0.3s, border-color 0.3s;
    }

    .leader-card:hover .leader-left img {
        transform: scale(1.08);
        border-color: #ff3300;
    }

    /* 🔥 Leader Name */
    .leader-left h3 {
        font-size: 1.2rem;
        margin-top: 10px;
        color: #222;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* 🔥 Leader Designation */
    .leader-left h4 {
        font-size: 1.2rem;
        color: #444;
        font-weight: bold;
        margin-top: -20px;
    }

    /* 🔥 Right Section (Bio) */
    .leader-right {
        flex: 1;
        text-align: justify; /* Ensures justified text */
    }

    /* 🔥 Leader Bio */
    .leader-right .leader-bio {
        font-size: 1rem;
        color: #444;
        line-height: 1.6;
        text-align: justify;
        max-width: 100%;
    }

    /* 🔥 Responsive */
    @media (max-width: 768px) {
        .leader-card {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .leader-left {
            max-width: 100%;
        }

        .leader-right {
            text-align: center;
        }

        .leader-right .leader-bio {
            text-align: center;
        }
    }


    .client-section {
        text-align: center;
        padding: 20px 0;
    }

    .client-section h2 {
        margin-bottom: 30px;
        font-size: 2rem;
        text-align: center;
    }

    .client-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 90%;
        margin: auto;
    }

    .client-logos img {
        width: 120px; /* Adjust size as needed */
        height: auto;
        transition: transform 0.3s ease-in-out, opacity 0.3s;
        filter: grayscale(50%);
    }

    .client-logos img:hover {
        transform: scale(1.1);
        filter: grayscale(0%);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .client-logos img {
            width: 100px;
        }
    }

    @media (max-width: 768px) {
        .client-logos {
            gap: 15px;
        }
        .client-logos img {
            width: 80px;
        }
    }

/* 🔥 Product Card Section */
.product-section {
    padding: 60px 20px;
    margin: auto;
    text-align: center;
}

/* 🔥 Product Grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* 🔥 Individual Product Card */
.product-card {
    width: 400px;
    height: auto;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-in-out, box-shadow 0.4s ease-in-out, border 0.3s ease-in-out;
    animation: floatUp 3s infinite ease-in-out alternate;
    border: 2px solid transparent;
}

/* 🔥 Floating Animation */
@keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* 🔥 Hover Effects */
.product-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 102, 0, 0.6);
}

/* 🔥 Animated Background Gradient on Hover */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 10%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.product-card:hover::before {
    opacity: 1;
}

/* 🔥 Product Image - Dynamic Depth Effect */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 12px 12px 0 0;
    transition: transform 0.6s ease-in-out, filter 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

/* 🔥 Image Hover Effect */
.product-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.15);
    box-shadow: 0px 10px 30px rgba(255, 102, 0, 0.4);
}

/* 🔥 Product Details */
.product-card .product-info {
    text-align: center;
    padding: 18px;
    background: white;
    transition: background 0.4s ease-in-out;
}

/* 🔥 Product Name */
.product-info h3 {
    font-size: 22px;
    color: black;
    font-weight: bold;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* 🔥 Product Name Hover Effect */
.product-card:hover .product-info h3 {
    color: #ff6600;
    transform: scale(1.05);
}

/* 🔥 Product Price */
.product-info p {
    font-size: 18px;
    color: black;
    font-weight: bold;
    margin-bottom: 12px;
    transition: color 0.3s ease-in-out;
}

/* 🔥 Price Hover Effect */
.product-card:hover .product-info p {
    color: #ff3300;
}

/* 🔥 View More Button */
.view-more-btn {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #ff6600, #ff3300);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.4s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* 🔥 Button Hover Effect */
.view-more-btn:hover {
    background: linear-gradient(135deg, #ff4500, #ff2200);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(255, 69, 0, 0.5);
}

/* 🔥 Button Shine Effect */
.view-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-45deg);
    transition: left 0.6s ease-in-out;
}

.view-more-btn:hover::before {
    left: 100%;
}

/* 🔥 Responsive for Mobile */
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 95%;
    }

    /* Remove hover effects on mobile */
    .product-card:hover {
        transform: none;
    }

    .product-card:hover img {
        transform: none;
        filter: none;
    }

    .view-more-btn {
        transform: none;
    }

    .view-more-btn:hover {
        transform: none;
    }
}



/* 🌞 Solar Product Details Section */
.solar-product-details {
    padding: 40px 10px;
    max-width: 900px;
    margin: auto;
}

.solar-product-container {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 🌞 Name */
.solar-product-name {
    font-size: 26px;
    color: #222;
    margin-bottom: 10px;
}

/* 🌞 Price */
.solar-product-price {
    font-size: 22px;
    font-weight: bold;
    color: #ff4500;
    margin-bottom: 15px;
}

/* 🌞 Image */
.solar-product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* 🌞 Description */
.solar-product-desc {
    font-size: 16px;
    color: black;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 🌞 Product Specs Table (Fixing Responsive Issue) */
.solar-product-specs-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.solar-product-specs {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    table-layout: fixed;  /* Prevents stretching */
    word-wrap: break-word; /* Allows text to wrap */
}

.solar-product-specs th, 
.solar-product-specs td {
    border: 1px solid black;
    padding: 10px;
    text-align: left;

}

.solar-product-specs th {
    background: #ff6600;
    color: white;
}

/* 🌞 Lists (Left-Aligned) */
.solar-product-info ul {
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
    margin: 10px 0;
}

.solar-product-info ul li {
    font-size: 16px;
    color: black;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* 🌞 Buttons */
.solar-product-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.solar-btn {
    background: #ff6600;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    text-decoration: none;
}

.solar-btn:hover {
    background: #ff4500;
}

.solar-download-btn {
    background: #ff6600;
    text-decoration: none;
}

.solar-download-btn:hover {
    background: #ff4500;
}

/* 🌞 Modal Styling */
.solar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.solar-modal.show {
    display: flex !important;
}

.solar-modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    position: relative;
}

.solar-modal-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* 🌞 Form Inputs */
.solar-modal-content input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid black;
    border-radius: 5px;
}

/* 🌞 Close Button */
.solar-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* 🌞 Responsive Design */
@media (max-width: 768px) {
    .solar-product-buttons {
        flex-direction: column;
        align-items: center;
    }

    .solar-modal-content {
        width: 70%;
    }

    /* 🌞 Fixing Table for Small Screens */
    .solar-product-specs-container {
        overflow-x: auto;
    }

    .solar-product-specs {
        width: 100%;
        table-layout: auto;  /* Prevents stretching */
    }

    .solar-product-specs th, 
    .solar-product-specs td {
        font-size: 14px; /* Slightly smaller font */
        padding: 8px; /* Adjust spacing */
    }
}


/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;

    margin: auto;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    cursor: pointer;
}

/* 3D Tilt Hover Effect */
.gallery-item:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.5);
}

/* Image Styling */
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow on Hover without Layout Shift */
.gallery-item:hover img {
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.8);
}

/* Image Caption */
.image-caption {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
    transition: color 0.3s ease;
}

/* Caption Color Change on Hover */
.gallery-item:hover .image-caption {
    color: #ff9900;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        padding: 20px;
        gap: 16px;
    }

    .gallery-item img {
        height: 180px;
    }
}