:root {
    --primary: #0b00ca;
    --secondary: #0b00ca;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #0b00ca;
    --industrial-blue: #0b00ca;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}

body {
    background-color: #f0f4f8;
    color: #333;
    overflow-x: hidden;
    position: relative;
   
}

/* ticker  */
/* news  */
.ticker-container {
    width: 100%;
    background:#0b00ca;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.ticker-content {
    display: inline-block;
    padding-left: 10%;
    /*justify-content: center;*/
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    margin-right: 40px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
}

.ticker-item span {
    color: white;
    font-weight: bold;
    margin-right: 8px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.ticker-container:hover .ticker-content {
    animation-play-state: paused;
}











/* new navbar */


   /* Main Navbar */
   .main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    max-height: 60px; /* Adjust based on your navbar height */
    width: auto;
    height: auto;
    display: block;
  }
  

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
}

/* Dropdown Icon */
.dropdown-icon {
    margin-left: 6px;
    font-size: 12px;
    color: #888;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 160px;
    z-index: 10;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    padding: 4px;
    list-style: none;
}

.dropdown-menu li a {
    color: #333;
    display: block;
    font-size: 14px;
}

.dropdown-menu li:hover {
    background-color: #f2f2f2;
}

/* Open Dropdown Class */
.dropdown.active .dropdown-menu {
    display: block;
    width: 260px;

}

/* Rotate icon when dropdown is open */
.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}


/* call button  */
.cta-buttonn {
    background-color: #003cff;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.cta-button.secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    /* margin-left: 15px; */
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
}





.about-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height for a rectangle shape */
    background-image: url('./logo/about.jpeg'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }
  
  .about-banner-overlay {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-in-out;
  }
  
  .about-banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff !important;
  }
  
  .about-banner-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }











/* Secondary Navbar */
.secondary-navbar {
    display: flex;
    justify-content: center;
    background: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.secondary-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.secondary-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive Design */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media screen and (max-width: 992px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        border-top: 1px solid #ddd;
        padding: 10px 0;
        height: auto;
    }

    .nav-links.active {
        display: flex;
    }




    /* Apply scroll to dropdown in .dropdown.mob */
.dropdown.mob .dropdown-menu {
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin; /* for Firefox */
}

/* Optional: WebKit scrollbar customization */
.dropdown.mob .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown.mob .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}







    .dropdown-menu {
        position: static;
        display: none;
        background: #f8f8f8;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .cta-buttonn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .secondary-navbar {
        display: none;
    }
}


/* home-slides */
.gallery-box {
    width: 100%;
  margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.gallery-item {
    min-width: 100%;
}
.gallery-item img {
    width: 100%;
    display: block;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
/* Living Background Elements */
.industrial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gear {
    position: absolute;
    color: rgba(0, 102, 204, 0.1);
    font-size: 5rem;
    animation: rotate linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar Styles */



.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links a {
    color: var(--industrial-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--industrial-blue);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:hover {
    background: #f0f7ff;
    color: var(--primary);
    padding-left: 20px;
}

.dropdown-content a i {
    margin-right: 8px;
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--industrial-blue);
    font-size: 1.5rem;
    cursor: pointer;
}

.ccta-button {
    
        background-color: #003cff;
        color: white;
        padding: 10px 18px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
   
    
}



/* after banner */
.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    width: 95%;
   /* padding-bottom: 50px */
    margin: auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.service-card i {
    color: #003cff;
}
.service-highlight {
    background-color: #e5f9ff;
    text-align: left;
}

.service-highlight h2 {
    /* font-size: 24px; */
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
}

.service-highlight p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.service-highlight a {
    display: inline-block;
    margin-top: 15px;
    color: #003cff;
    font-weight: bold;
    text-decoration: none;
}

.service-highlight a:hover {
    text-decoration: underline;
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}


.client-page {
    color:black;
    text-align:center;
    color:#0b00ca;
    font-size:2.5rem;
    margin-top:-10px;
    margin-bottom: 20px;
}

.apart {
    margin-top: 50px;
}

.section-titlee {
    color:black;
    text-align:center;
    color:#0b00ca;
    font-size:3.0rem;
    margin-top:80px;
    margin-bottom: 80px;
}



  








        /* Unique class names */
        .hsg-container {
            max-width: 1800px;
            margin: 0 auto;
            position: relative;
            padding: 0 30px;
            overflow: hidden;
            margin-bottom: 50px;
        }

        .hsg-gallery-track {
            display: flex;
            transition: transform 0.5s ease-out;
            will-change: transform;
        }

        .hsg-gallery {
            position: relative;
            overflow: hidden;
        }

        .hsg-card {
            flex: 0 0 auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            background: white;
            margin: 0 12px;
            width: calc(100% - 24px);
        }

        .hsg-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .hsg-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: all 0.3s ease;
        }

        .hsg-card:hover img {
            opacity: 0.9;
        }

        .hsg-info {
            padding: 15px;
            position: relative;
            z-index: 1;
        }

        .hsg-info h4 {
            margin: 0;
            color: #333;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .hsg-card:hover .hsg-info h4 {
            color: #0066cc;
        }

        .hsg-info::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .hsg-card:hover .hsg-info::before {
            height: 100%;
            bottom: 0;
        }

        .hsg-card:hover .hsg-info {
            color: white;
        }

        /* Navigation arrows */
        .hsg-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 2;
            opacity: 0.8;
            transition: all 0.3s;
            border: none;
            outline: none;
        }

        .hsg-nav-arrow:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        .hsg-arrow-left {
            left: 0;
        }

        .hsg-arrow-right {
            right: 0;
        }

        /* Responsive items per view */
        @media (min-width: 480px) {
            .hsg-card {
                width: calc(50% - 24px);
            }
        }

        @media (min-width: 768px) {
            .hsg-card {
                width: calc(33.333% - 24px);
            }
        }

        @media (min-width: 992px) {
            .hsg-card {
                width: calc(25% - 24px);
            }
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .hsg-nav-arrow {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 480px) {
            .hsg-info h4 {
                font-size: 16px;
            }
        }


/* product

.design-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 20px;
}

.design-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.design-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.design-card:hover img {
    transform: scale(1.05);
}

.design-info {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
} */









.explore-more {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #2E3A59;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.explore-more span {
    color: #ff4d6d;
}

.btn-view {
    background: #ff4d6d;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-view:hover {
    background: #d43f5e;
}












/* 3D Product Card */
.product-card-container {
    position: absolute;
    right: 10%;
    width: 400px;
    height: 500px;
    perspective: 1000px;
}

.product-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
    transform: rotateY(15deg) rotateX(10deg);
}

.product-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

.product-card-front, .product-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.product-card-front {
    display: flex;
    flex-direction: column;
}

.product-card-back {
    background: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.product-image {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-bottom: 2px solid #f0f0f0;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--industrial-blue);
}

.product-features {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.product-features li {
    margin-bottom: 0.3rem;
    list-style-position: inside;
}

/* Sections */
section {
    /* padding: 3rem 50px; */
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: 19px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--industrial-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary);
}

.feature-card h3 {
    font-size: 1rem;
    /* margin-bottom: 1rem; */
    color: var(--industrial-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card h3 i {
    color: var(--accent);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products Grid */
/* .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
} */


  /* CAROUSEL CONTAINER */
  .carousel-container {
    width: 100%;
    overflow: hidden;
    max-width: 1500px; 
    margin: 0 auto;
    position: relative; /* So arrows can be positioned absolutely */
    overflow: hidden;
    /* border: 2px solid #ccc; */
    border-radius: 12px;
    /* background: #fff; */
  }
  
  /* CAROUSEL WRAPPER */
  .carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  
  /* SLIDE */
  .slide {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border-right: 1px solid #ccc; */
    padding: 5px;
    text-align: center;
    box-sizing: border-box;
  }
  
  .slide:last-child {
    border-right: none;
  }
  
  /* SLIDE IMAGE */
  .slide img {
    max-width: 95%;
    height: auto;
    display: block;
    margin: 5px auto;
    border-radius: 15px; /* Slight curve */
  }
  
  /* TEXT BOXES BELOW IMAGE */
  .slide-text1 {
    width: 90%;
    padding: 5px;
    margin-top: 5px;
    text-align: center;
    background: #e5f7fb;
    border-radius: 6px;
    display: block;
    font-size: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    font-weight: 600;
  }

  .slide-text2 {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;

    width: 90%;
    padding: 5px;
    margin-top: 5px;
    text-align: center;
    background: #b4f1ff;
    border: none;
    border-radius: 6px;
    display: block;
    /* font-size: 1.3rem; */

  }



  
  /* ARROW BUTTONS */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0 10px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
  }
  
  .arrow:hover {
    background: rgba(0,0,0,0.7);
  }
  
  /* Left Arrow */
  .arrow.left {
    left: 10px;
  }
  
  /* Right Arrow */
  .arrow.right {
    right: 10px;
  }
  
  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .slide {
      flex: 0 0 100%; /* Only 1 slide per row on mobile */
    }
    .carousel-container {
      width: 95%;
    }
    .slide img {
      max-width: 80%;
    }
  }
  
  @media (max-width: 480px) {
    .slide {
      flex: 0 0 100%; /* Only 1 slide per row on mobile */
    }
    
    .slide img {
      max-width: 70%;
    }
    .arrow {
      font-size: 1.5rem;
    }
  }




















/* About Section */
.about-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e9f5ff 100%);
    border-radius: 15px;
    /* padding: 4rem; */
    /* margin-top: 3rem; */
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    /* margin-bottom: 1.5rem; */
    color: var(--industrial-blue);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}









/* ===== About Hero Image (Right Side) ===== */
.about-hero {
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.about-hero-image {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-content {
        flex-direction: column;
    }
    .about-hero-image {
        margin-top: 2rem;
    }
}







.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}





.features-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}





/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }







/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    background-color: #0b00ca;
    border-radius: 10px;
    padding: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-sectionn {
    background: var(--industrial-blue);
    color: white;
    border-radius: 15px;
    padding: 4rem;
    /* margin-top: 3rem; */
}

.contact-sectionn h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 3px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    /* margin-bottom: 0.5rem; */
    color: var(--industrial-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}







.bar {
    width: 80%;
    margin-bottom: 40px;
}






.what-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e5f7fb; /* Light blue background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    gap: 30px;
    overflow: hidden; /* Keeps animations smooth */
}

.what-image {
    flex: 1;
    max-width: 50%;
    animation: fadeInLeft 1s ease-in-out;
}

.what-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.what-text {
    flex: 1;
    max-width: 50%;
    color: #065a72;
    animation: fadeInRight 1s ease-in-out;
}

.what-text h3 {
    font-size: 1.8rem;
    color: 0b00ca;
    margin-bottom: 15px;
}

.what-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-in-out forwards;
}

/* Custom bullet icon */
.what-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: 0b00ca;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .what-image, .what-text {
        max-width: 100%;
    }
    
    .what-image img {
        max-width: 90%;
    }
    
    .what-list li {
        padding-left: 20px;
    }
}


/* 
.mob {
    display: none;
}


@media only screen and (max-width:991px) {
    .mob {
        display: block;
    }

} */


@media only screen and (min-width:826px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(00px, 1fr));
        gap: 2rem;
        /* max-width: 1400px; */
        margin: 0 auto;
    }
}



/* Footer */
footer {
    background: #e5f9ff;
    color: rgb(0, 0, 0);
    padding: 3rem 10%;
    margin-top: 2rem;
}



.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    /* margin-bottom: 1rem; */
    color: rgb(0, 0, 0);
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgb(0, 0, 0);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: rgb(0, 0, 0);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--accent);
}

.footer-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Product Page Specific Styles */
.product-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://source.unsplash.com/random/1600x900/?industrial,door');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    color: white;
}

.product-hero-content {
    min-width: 350px;
    z-index: 2;
}

.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.product-hero h1 span {
    color: var(--accent);
}

.product-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-hero-buttons {
    display: flex;
    gap: 1rem;
}

.product-hero-image {
    width: 45%;
    max-width: 500px;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Product Display */
.product-display {
    display: flex;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 5%;
}

.gallery-container {
    flex: 1;
    position: relative;
}

.gallery-slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-slide {
    width: 33.33%;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.8);
    color: var(--industrial-blue);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.gallery-controls button:hover {
    background: var(--accent);
    color: white;
}

/* Product Details */
.product-details {
    display: grid;
    grid-template-columns: 1fr 350px;
    /* gap: 3rem; */
    /* margin: 5rem 0; */
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.specs-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.specs-table th {
    background-color: var(--industrial-blue);
    color: white;
}
#quality {
    margin-top: 30px;
}

#features {margin-top: 40px;
    margin-bottom: 60px;
}
.features-list {
    list-style-type: none; /* Removes the default dots */
    padding-left: 0;
    margin: 0.7rem 0;
  }
  
  .features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .features-list li:before {
    content: "✓"; 
    font-weight: 900;

    color: #0b00ca; 
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  
  .features-list strong {
    color: #333; /* Dark color for the feature title */
  }


/* Specs Card */
.specs-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

.specs-card ul {
    margin: 1.5rem 0;
}

.specs-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specs-card li i {
    color: var(--primary);
}

/* Product Tabs */
.tabs-header {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    position: relative;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--industrial-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


/* About Page Styles */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1600x900/?factory,industrial');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 80px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 80px;
}

.timeline-year {
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-card-container {
        width: 350px;
        height: 450px;
    }
    .product-details {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        height: auto;
        padding-bottom: 5rem;
    }
    .hero-content {
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .product-card-container {
        position: relative;
        right: auto;
        margin-top: 3rem;
    }
    .about-section {
        flex-direction: column;
    }
    .about-image {
        width: 100%;
    }
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-main {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .product-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        height: auto;
        padding-bottom: 5rem;
    }
    .product-hero-image {
        width: 80%;
        margin-top: 3rem;
    }
    .product-hero-buttons {
        justify-content: center;
    }
    .product-details {
        grid-template-columns: 1fr;
    }
    .specs-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}


@media (max-width: 990px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .dropdown-content {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.02);
        box-shadow: none;
        width: 100%;
        opacity: 1;
        transform: none;
        padding-left: 1rem;
        border: none;
    }
    .dropdown:hover .dropdown-content {
        display: none;
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .hero h1, .product-hero h1 {
        font-size: 2.5rem;
    }
    section {
        padding: 0rem 5%;
    }
    .product-card-container {
        width: 100%;
        max-width: 350px;
    }
    .contact-section {
        padding: 2rem;
    }
    .product-display {
        flex-direction: column;
    }
    .gallery-slider {
        height: 300px;
    }
    .timeline::before {
        left: 40px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 25px;
        padding-left: 70px;
    }
    .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    .tabs-header::-webkit-scrollbar {
        height: 5px;
    }
    .tabs-header::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .hero h1, .product-hero h1, .about-hero h1 {
        font-size: 2rem;
    }
    .cta-buttons, .product-hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .cta-button.secondary {
        margin-left: 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-section, .about-hero {
        padding: 2rem;
    }
    .stat-item {
        min-width: 100px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .product-hero-image {
        width: 100%;
    }
    .product-gallery {
        grid-template-columns: 1fr;
    }
    .gallery-main {
        grid-column: span 1;
        height: 350px;
    }
    .gallery-thumb {
        height: 150px;
    }
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    .about-hero {
        height: 50vh;
    }
    .achievement-number {
        font-size: 2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

































/* ========== ABOUT PAGE STYLES ========== */
.about-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://source.unsplash.com/random/1600x900/?industrial') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 0 10%;
    margin-top: 80px;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.mission-card h3 {
    color: var(--industrial-blue);
    margin-bottom: 1rem;
}

/* Quality Standards */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.standard-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.standard-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.standard-card h4 {
    color: var(--industrial-blue);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #666;
    font-size: 0.9rem;
}

/* Stats Section */
.bg-accent {
    background: var(--industrial-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.8);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 10%;
    background: linear-gradient(135deg, #f0f4f8 0%, #d6e4f0 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--industrial-blue);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #555;
}

/* Utility Classes */
.bg-light {
    background: #f8fafc;
}

.text-white {
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    .mission-grid, .standards-grid, .team-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .cta-section {
        padding: 3rem 5%;
    }
}














/* Center-align all section headings */
.section-title {
    text-align: center;
    width: 100%;
    left: 0;
    transform: none;
    padding-bottom: 15px;
    font-size: 2rem;

  }
  
  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  
  /* For the "About NK Enterprises" main heading */
  .about-hero-text {
    text-align: center;
  }
  
  /* For timeline headings */
  .timeline-content h3 {
    text-align: center;
  }
  
  /* For team member names */
  .team-member h3 {
    text-align: center;
  }


.center {
    display: flex;
    justify-content: center;
    
}
.mid {
    width: 93%;
}

.mid img {
border-radius: 22px;
width: 100%;
}









  /* Quality Section */
.quality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* margin-top: 3rem; */
}

.quality-card {
    background-color: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(85, 156, 255, 0.1);
}

.quality-card i {
    font-size: 3rem;
    color: #003cff;
    margin-bottom: 1.5rem;
}

.quality-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.quality-card p {
    color: #666;
    line-height: 1.6;
}





  /* ===== Center All Main Headings in index.html ===== */
/* .hero h1,
.section-title,
.feature-card h3,
.product-item-info h3,
.contact-section h2,
footer h3 {
  text-align: center;
  width: 100%;
} */






















































.clientslogo-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.category-heading {
    text-align: left;
    margin: 40px 0 20px;
    color: #444;
    font-size: 1.8rem;
    position: relative;
    padding-left: 25px;
}

.category-heading::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
}

.clientslogo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    justify-items: center;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.clientlogo-item {
    width: 100%;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clientlogo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.clientlogo-item img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .clientslogo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .clientslogo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .clientlogo-item img {
        max-height: 70px;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .clientslogo-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .category-heading {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .clientslogo-section {
        padding: 20px 15px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .clientslogo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 12px;
    }
    
    .clientlogo-item {
        padding: 8px;
    }
    
    .clientlogo-item img {
        max-height: 60px;
    }
    
    .clientslogo-section {
        padding: 15px 10px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .category-heading {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }
}




















/* video on home page  */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
}

.video-wrapper {
    flex: 0 0 48%; /* Adjust this value to change the spacing */
    margin-bottom: 20px;
}

video {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

h1 {
    text-align: center;
    margin: 20px 0;
    color:#0b00ca;
}

@media (max-width: 768px) {
    .video-wrapper {
        flex: 0 0 100%; /* Stack vertically on small screens */
    }
}