 @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&display=swap');

 :root {
     --neon-green: #39ff14;
     --electric-blue: #00d9ff;
     --dark-bg: #000000;
     --glow-green: rgba(57, 255, 20, 0.4);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Rajdhani', sans-serif;
     /* background: #000;
     color: #fff; */
     overflow-x: hidden;
 }

 .py-80 {
     padding: 100px 0;
 }

 .circuit-bg {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 0;
     /* background: radial-gradient(ellipse at top, #0a2e0a 0%, #000000 50%); */
 }

 .circuit-line {
     position: absolute;
     background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
     animation: circuit-flow 4s linear infinite;
 }

 .circuit-line:nth-child(1) {
     top: 20%;
     left: -100%;
     width: 200px;
     height: 2px;
     animation-delay: 0s;
 }

 .circuit-line:nth-child(2) {
     top: 40%;
     left: -100%;
     width: 300px;
     height: 2px;
     animation-delay: 1s;
 }

 .circuit-line:nth-child(3) {
     top: 60%;
     left: -100%;
     width: 250px;
     height: 2px;
     animation-delay: 2s;
 }

 .circuit-line:nth-child(4) {
     top: 80%;
     left: -100%;
     width: 180px;
     height: 2px;
     animation-delay: 3s;
 }

 @keyframes circuit-flow {
     0% {
         left: -100%;
         opacity: 0;
     }

     20% {
         opacity: 1;
     }

     80% {
         opacity: 1;
     }

     100% {
         left: 100%;
         opacity: 0;
     }
 }

 .navbar {
     background: rgba(0, 0, 0, 0.7) !important;
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(57, 255, 20, 0.2);
     padding: 2rem 0;
     box-shadow: 0 4px 30px rgba(57, 255, 20, 0.1);
     z-index: 1000;
 }

 .navbar-brand {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.8rem;
     font-weight: 900;
     /* background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text; */
 }

 .logo {
     position: relative;
 }
.logo img {
    width: 400px;
}
.navbar-brand {
    position: absolute;
    top: -54px;
    left: 0;
    /* padding: 10px; */
    /* background: #f7f7f7; */
    /* border-bottom-left-radius: 8px; */
    /* border-bottom-right-radius: 8px; */
    /* box-shadow: 1px 13px 10px #00000024; */
    /* width: 120px; */
    display: flex;
    /* flex-direction: column; */
    white-space: break-spaces;
    align-items: center;
}

.navbar-brand h4 {
    color: #000000;
    font-size: 28px;
    margin: 0;
    font-family: "Aguafina Script", cursive;
    line-height: 40px;
    text-shadow: 0 0 2px #30ff25;
}

/* .navbar-brand img {
    max-width: 150px;
} */

 .nav-link {
     color: rgba(255, 255, 255, 0.8) !important;
     font-weight: 600;
     font-size: 1.1rem;
     margin: 0 1.2rem;
     position: relative;
     transition: all 0.4s;
     letter-spacing: 1px;
 }

 .nav-link::before {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 50%;
     width: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
     transition: all 0.4s;
     transform: translateX(-50%);
     box-shadow: 0 0 10px var(--neon-green);
 }

 .nav-link:hover {
     color: var(--neon-green) !important;
     text-shadow: 0 0 15px var(--glow-green);
 }

 .nav-link:hover::before {
     width: 100%;
 }

 /* Second level dropdown */
 .navbar .dropdown-menu {
     background-color: #333;
     border: none;
     margin-top: 0;
 }

 .navbar .dropdown-item {
     color: #fff;
     padding: 10px 20px;
     transition: background-color 0.3s ease;
 }

 .navbar .dropdown-item:hover {
     background-color: #555;
     color: #fff;
 }

 /* Third level dropdown */
 .navbar .dropend {
     position: relative;
 }

 .navbar .dropend>.dropdown-menu {
     position: absolute;
     top: 0;
     left: 100%;
     margin-left: 0;
     margin-top: 0;
     display: none;
 }

 .navbar .dropend:hover>.dropdown-menu {
     display: block;
 }

 /* Dropdown toggle arrow for third level */
 .navbar .dropend>.dropdown-toggle::after {
     border: none;
     content: '\203A';
     font-size: 20px;
     font-weight: bold;
     float: right;
     margin-left: 10px;
 }

 /* Show dropdown on hover */
 .navbar .dropdown:hover>.dropdown-menu {
     display: block;
     width: 200px;
 }

 .navbar .dropdown-menu {
     animation: fadeIn 0.2s ease-in;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(-10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Mobile responsiveness */
 @media (max-width: 991px) {
     .navbar .dropend>.dropdown-menu {
         position: static;
         margin-left: 20px;
     }

     .navbar .dropdown-menu {
         background-color: #2a2a2a;
     }
 }

 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
 }

 /* .hero-content {
    z-index: 10;
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
} */

 .hero h1 {
     font-family: 'Orbitron', sans-serif;
     font-size: 4.5rem;
     font-weight: 900;
     background: linear-gradient(135deg, #39ff14, #00ff88, #39ff14);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 1.5rem;
     animation: glow-pulse 3s ease-in-out infinite;
     line-height: 1.2;
 }

 @keyframes glow-pulse {

     0%,
     100% {
         filter: drop-shadow(0 0 40px var(--glow-green));
     }

     50% {
         filter: drop-shadow(0 0 60px var(--glow-green));
     }
 }

 .hero-subtitle {
     font-size: 2rem;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 1rem;
     font-weight: 300;
     letter-spacing: 2px;
 }

 .hero-tagline {
     font-family: 'Orbitron', sans-serif;
     font-size: 2.5rem;
     background: linear-gradient(90deg, var(--neon-green), var(--electric-blue), var(--neon-green));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     font-style: italic;
     font-weight: 700;
     margin: 0rem 0 2rem;
     background-size: 200% auto;
 }

 @keyframes shimmer {
     0% {
         background-position: 0% center;
     }

     100% {
         background-position: 200% center;
     }
 }

.hero-btn {
    background: linear-gradient(135deg, var(--neon-green), #00ff88);
    color: #000;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 0 30px var(--glow-green);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    width: 70%;
}

 .hero-btn:hover {
     transform: scale(1.05) translateY(-5px);
     box-shadow: 0 0 50px var(--glow-green);
 }

 .banner-item {
     position: relative;
     display: grid;
     grid-template-columns: repeat(2, 1fr);
 }

 .hero-content {
     background: #232020;
     padding: 100px 50px 50px;
     display: flex;
     flex-direction: column;
     height: 100%;
     justify-content: center;
 }

 .bannerslider {
     overflow: hidden;
     position: relative;
 }

 .bannerslider .owl-nav {
     position: absolute;
     bottom: 0;
     right: 0;
     color: #fff;
     display: flex;
     gap: 40px;
     font-size: 80px;
     padding: 0 30px;
 }

 .banner-img img {
     height: 100vh;
     object-fit: cover;
 }

 /* .glass-section {
    background: #fdfdfd;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin: 4rem auto;
    max-width: 1400px;
    position: relative;
    z-index: 1;
} */

 .section-title {
     font-family: 'Orbitron', sans-serif;
     font-size: 3.5rem;
     font-weight: 900;
     text-align: center;
     margin-bottom: 3rem;
     background: linear-gradient(135deg, var(--neon-green), #000000, var(--neon-green));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     position: relative;
     padding-bottom: 1.5rem;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 150px;
     height: 4px;
     background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
     box-shadow: 0 0 20px var(--glow-green);
 }

 .feature-3d {
     background: #fff;
     border: 2px solid rgba(57, 255, 20, 0.3);
     border-radius: 25px;
     padding: 3rem 2rem;
     margin: 1.5rem 0;
     position: relative;
     transition: all 0.5s;
     backdrop-filter: blur(10px);
     height: 100%;
 }

 .feature-3d:hover {
     transform: translateY(-15px) scale(1.02);
     border-color: var(--neon-green);
     box-shadow: 0 20px 60px rgba(57, 255, 20, 0.3);
 }

 .feature-icon-3d {
     font-size: 4rem;
     background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 1.5rem;
     transition: all 0.4s;
 }

 .feature-3d:hover .feature-icon-3d {
     transform: scale(1.2);
 }

 .feature-3d h3 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.8rem;
     color: #000;
     margin-bottom: 1rem;
 }

 .feature-3d p {
     font-size: 1.15rem;
     line-height: 1.8;
 }

.product-showcase {
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 20px;
    margin: 1.5rem 0;
    transition: all 0.5s;
    backdrop-filter: blur(15px);
    overflow: hidden;
    height: 100%;
}

 .product-content {
     padding: 40px 30px 10px;
     background: #fff;
     height: 100%;
 }

 .view-all {
     padding: 20px 100px;
     text-decoration: none;
     color: #000;
     border: 2px solid rgba(57, 255, 20, 0.3);
     border-radius: 44px;
     background: var(--neon-green);
     font-size: 20px;
     font-weight: 600;
 }

 .product-showcase:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 50px rgba(57, 255, 20, 0.4);
     border-color: var(--neon-green);
 }

 .product-showcase h4 {
     font-family: 'Orbitron', sans-serif;
     font-size: 1.6rem;
     color: var(--neon-green);
     margin-bottom: 1rem;
 }

 .product-showcase h4 i {
     font-size: 2rem;
 }

 .contact-glass {
     background: #000;
     border: 2px solid rgba(57, 255, 20, 0.3);
     border-radius: 25px;
     padding: 3rem;
     backdrop-filter: blur(15px);
     box-shadow: 0 8px 32px rgba(57, 255, 20, 0.2);
     transition: all 0.4s;
     height: 100%;
 }

 .contact-glass:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 50px rgba(57, 255, 20, 0.4);
     border-color: var(--neon-green);
 }

 .contact-glass h3 {
     font-family: 'Orbitron', sans-serif;
     font-size: 2rem;
     color: var(--neon-green);
     margin-bottom: 2rem;
     text-shadow: 0 0 15px var(--glow-green);
 }

 .contact-item {
     display: flex;
     align-items: center;
     padding: 1rem;
     margin: 1rem 0;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 15px;
     border-left: 4px solid var(--neon-green);
     transition: all 0.3s;
 }

 .contact-item:hover {
     background: rgba(57, 255, 20, 0.1);
     transform: translateX(10px);
 }

 .contact-item i {
     font-size: 2rem;
     color: var(--neon-green);
     margin-right: 1.5rem;
 }

 .contact-item span {
     font-size: 1.2rem;
     color: rgba(255, 255, 255, 0.9);
 }

 .accordion-item {
     background: rgba(57, 255, 20, 0.05) !important;
     border: 1px solid rgba(57, 255, 20, 0.2) !important;
     border-radius: 15px !important;
     margin-bottom: 1rem;
 }

 .accordion-button {
     background: #000 !important;
     color: #fff !important;
     font-weight: 600;
     font-size: 1.2rem;
     border: none !important;
     box-shadow: none !important;
 }

 .accordion-button:not(.collapsed) {
     background: #000 !important;
     color: var(--neon-green) !important;
 }

 .accordion-body {
     background: rgb(255 255 255 / 30%);
     color: rgb(0 0 0 / 80%);
     font-size: 1.1rem;
     border-top: 1px solid rgba(57, 255, 20, 0.2);
 }

 .footer {
     background: #2c2c2c;
     color: #fff;
     padding: 60px 0 20px;
     position: relative;
     overflow: hidden;
 }

 .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--neon-green);
     animation: shimmer 3s infinite;
 }

 @keyframes shimmer {

     0%,
     100% {
         transform: translateX(-100%);
     }

     50% {
         transform: translateX(100%);
     }
 }

 .footer-section {
     padding: 0 15px;
 }

 .footer-title {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 25px;
     color: var(--neon-green);
     position: relative;
     padding-bottom: 15px;
 }

 .footer-title::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 50px;
     height: 3px;
     background: var(--neon-green);
 }

 .footer-text {
     color: #b8c5d6;
     line-height: 1.8;
     margin-bottom: 25px;
     font-size: 0.95rem;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

 .social-icon {
     width: 45px;
     height: 45px;
     background: rgba(0, 212, 255, 0.1);
     border: 2px solid rgba(57, 255, 20, 0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--neon-green);
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .social-icon:hover {
     background: var(--neon-green);
     color: #1a1a2e;
     transform: translateY(-5px);
     box-shadow: 0 15px 50px rgba(57, 255, 20, 0.4);
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #b8c5d6;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     font-size: 0.95rem;
 }

 .footer-links a i {
     font-size: 0.7rem;
     transition: transform 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--neon-green);
     padding-left: 5px;
 }

 .footer-links a:hover i {
     transform: translateX(5px);
 }

 .footer-contact {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-contact li {
     color: #b8c5d6;
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 0.95rem;
 }

 .footer-contact i {
     color: var(--neon-green);
     width: 20px;
     font-size: 1rem;
 }

 .footer-bottom {
     margin-top: 50px;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .footer-copyright {
     margin: 0;
     color: #8899aa;
     font-size: 0.9rem;
 }

 .footer-link {
     color: #b8c5d6;
     text-decoration: none;
     transition: color 0.3s ease;
     font-size: 0.9rem;
 }

 .footer-link:hover {
     color: var(--neon-green);
 }

 .footer-separator {
     margin: 0 15px;
     color: rgba(255, 255, 255, 0.2);
 }

 .accordion-button::after {
     filter: invert(1);
 }

 @media (max-width: 768px) {
     .footer {
         padding: 40px 0 20px;
     }

     .footer-title {
         font-size: 1.1rem;
     }

     .social-links {
         justify-content: center;
     }

     .footer-links,
     .footer-contact {
         text-align: center;
     }

     .footer-links a,
     .footer-contact li {
         justify-content: center;
     }
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 2rem;
     }

     .hero-subtitle {
         font-size: 1.3rem;
     }

     .hero-tagline {
         font-size: 1rem;
     }

     .section-title {
         font-size: 2rem;
     }
 }

  /* Breadcrumb Section */
 .breadcrumb-section {
     background: #000;
     padding: 200px 0 100px;
     border-bottom: 2px solid var(--neon-green);
     position: relative;
     overflow: hidden;
 }

 .breadcrumb-section::after {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     width: 50%;
     height: 100%;
     background-image: url(../images/banner6.png);
     background-size: cover;
     background-position: center;
 }

 .breadcrumb-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 50%;
     width: 100%;
     height: 100%;
     background: linear-gradient(86deg, black, transparent);
     z-index: 1;
 }

 .breadcrumb {
     background: transparent;
     margin-bottom: 0;
     padding: 0;
 }

 .breadcrumb-item {
     font-size: 0.95rem;
 }

 .breadcrumb-item a {
     color: #00ff00;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .breadcrumb-item a:hover {
     color: #00cc00;
     text-decoration: underline;
 }

 .breadcrumb-item.active {
     color: #fff;
 }

 .breadcrumb-item+.breadcrumb-item::before {
     content: "›";
     color: #00ff00;
     font-size: 1.2rem;
     padding: 0 0.5rem;
     margin-top: -5px;
 }

 .breadcrumb-section h1 {
     font-size: 60px;
     color: #fff;
 }
 .breadcrumb li a {
    color: #fff;
    text-decoration: none;
}
 .breadcrumb li:first-child:before{
    display: none
 }
 .breadcrumb li::before {
    content: "›";
    color: #00ff00;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    margin-top: -5px;
}
ul.breadcrumb li {
    color: #00ff00;
}


 /* About Page Section */
 .about-page-sec {
     padding: 80px 0;
     background: #fff;
 }

 .about-content {
     padding-right: 40px;
 }

 .about-content .section-label {
     color: #00ff00;
     font-size: 1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 15px;
     display: inline-block;
 }

 .about-content h2 {
     font-size: 2.8rem;
     font-weight: bold;
     color: #333;
     margin-bottom: 25px;
     line-height: 1.3;
 }

 .about-content h2 span {
     color: #00ff00;
 }

 .about-content p {
     font-size: 1.05rem;
     color: #666;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .about-content .highlight-text {
     background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
     padding: 20px;
     border-left: 4px solid #00ff00;
     border-radius: 8px;
     margin: 25px 0;
 }

 .about-content .highlight-text p {
     margin-bottom: 0;
     font-style: italic;
     color: #333;
     font-weight: 500;
 }

 /* Feature List */
 .feature-list {
     list-style: none;
     padding: 0;
     margin: 30px 0;
 }

 .feature-list li {
     position: relative;
     padding-left: 35px;
     margin-bottom: 15px;
     font-size: 1.05rem;
     color: #666;
     line-height: 1.6;
 }

 .feature-list li::before {
     content: '✓';
     position: absolute;
     left: 0;
     top: 0;
     width: 25px;
     height: 25px;
     background: #00ff00;
     color: #000;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 0.9rem;
 }

 /* CTA Button */
 .cta-btn {
     display: inline-block;
     padding: 15px 40px;
     background: #00ff00;
     color: #000;
     text-decoration: none;
     font-size: 1.1rem;
     font-weight: bold;
     border-radius: 50px;
     transition: all 0.3s ease;
     margin-top: 20px;
     box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
 }

 .cta-btn:hover {
     background: #00cc00;
     color: #000;
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5);
 }

 /* Image Section */
 .about-image-wrapper {
     position: relative;
     height: 100%;
     min-height: 500px;
 }

 .about-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 15px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
 }

 .image-placeholder {
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 8rem;
     color: rgba(0, 0, 0, 0.3);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
 }

 /* Decorative Elements */
 .about-image-wrapper::before {
     content: '';
     position: absolute;
     top: -20px;
     right: -20px;
     width: 150px;
     height: 150px;
     background: #00ff00;
     opacity: 0.2;
     border-radius: 50%;
     z-index: -1;
 }

 .about-image-wrapper::after {
     content: '';
     position: absolute;
     bottom: -20px;
     left: -20px;
     width: 100px;
     height: 100px;
     background: #00ff00;
     opacity: 0.2;
     border-radius: 50%;
     z-index: -1;
 }

 /* Stats Box */
 .stats-box {
     display: flex;
     gap: 30px;
     margin-top: 30px;
 }

 .stat-item {
     flex: 1;
     text-align: center;
     padding: 20px;
     background: #f8f9fa;
     border-radius: 10px;
     border-top: 3px solid #00ff00;
 }

 .stat-number {
     font-size: 2.5rem;
     font-weight: bold;
     color: #00ff00;
     margin-bottom: 5px;
 }

 .stat-label {
     font-size: 0.9rem;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Responsive Design */
 @media (max-width: 991px) {
     .about-content {
         padding-right: 15px;
         margin-bottom: 40px;
     }

     .about-content h2 {
         font-size: 2.2rem;
     }

     .about-image-wrapper {
         min-height: 400px;
     }

     .image-placeholder {
         font-size: 6rem;
     }
 }

 @media (max-width: 768px) {
     .about-page-sec {
         padding: 50px 0;
     }

     .about-content h2 {
         font-size: 1.9rem;
     }

     .about-content p {
         font-size: 1rem;
     }

     .stats-box {
         flex-direction: column;
         gap: 15px;
     }

     .about-image-wrapper {
         min-height: 350px;
     }

     .image-placeholder {
         font-size: 5rem;
     }

     .about-image-wrapper::before,
     .about-image-wrapper::after {
         display: none;
     }
 }

 @media (max-width: 576px) {
     .about-content h2 {
         font-size: 1.6rem;
     }

     .cta-btn {
         padding: 12px 30px;
         font-size: 1rem;
     }

     .stat-number {
         font-size: 2rem;
     }

     .feature-list li {
         font-size: 0.95rem;
     }
 }


 /* Contact Info Cards */
 .contact-info-section {
     position: relative;
     z-index: 10;
 }

 .contact-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 15px;
     text-align: center;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
     border-top: 4px solid #00ff00;
 }

 .contact-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 50px rgba(0, 255, 0, 0.2);
 }

 .contact-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     font-size: 2.5rem;
     box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
 }

 .contact-card h4 {
     font-size: 1.4rem;
     font-weight: bold;
     color: #333;
     margin-bottom: 15px;
 }

 .contact-card p {
     color: #666;
     font-size: 1rem;
     margin-bottom: 10px;
     line-height: 1.6;
 }

 .contact-card a {
     color: #00ff00;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .contact-card a:hover {
     color: #00cc00;
     text-decoration: underline;
 }

 /* Main Contact Section */
 .main-contact-section {
     background: #fff;
     padding-bottom: 80px;
 }

 /* Form Section */
 .form-section {
     background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 }

 .form-section h2 {
     font-size: 2.5rem;
     font-weight: bold;
     color: #333;
     margin-bottom: 15px;
 }

 .form-section .subtitle {
     color: #666;
     font-size: 1.05rem;
     margin-bottom: 35px;
     line-height: 1.6;
 }

 .form-label {
     font-weight: 600;
     color: #333;
     margin-bottom: 8px;
 }

 .form-control,
 .form-select {
     padding: 14px 18px;
     font-size: 1rem;
     border: 2px solid #e0e0e0;
     border-radius: 10px;
     transition: all 0.3s ease;
     background: #fff;
 }

 .form-control:focus,
 .form-select:focus {
     border-color: #00ff00;
     box-shadow: 0 0 0 0.25rem rgba(0, 255, 0, 0.1);
     background: #fff;
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 /* Submit Button */
 .submit-btn {
     background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
     color: #000;
     padding: 16px 50px;
     border: none;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(0, 255, 0, 0.5);
 }

 /* Map Section */
 .map-section {
     position: relative;
     height: 100%;
     min-height: 600px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 }

 .map-placeholder {
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 20px;
 }

 .map-placeholder .icon {
     font-size: 6rem;
 }

 .map-placeholder h3 {
     color: #333;
     font-size: 1.8rem;
     font-weight: bold;
 }

 .map-placeholder p {
     color: #666;
     font-size: 1.1rem;
     max-width: 400px;
     text-align: center;
     line-height: 1.6;
 }

 /* Success Message */
 .success-alert {
     background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
     border: 2px solid #00ff00;
     color: #155724;
     padding: 20px;
     border-radius: 10px;
     margin-bottom: 30px;
     display: none;
     font-weight: 600;
 }

 .success-alert.show {
     display: block;
     animation: slideDown 0.5s ease;
 }

 @keyframes slideDown {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Working Hours Box */
 .working-hours {
     background: #000;
     color: #fff;
     padding: 30px;
     border-radius: 15px;
     margin-top: 30px;
 }

 .working-hours h4 {
     color: #00ff00;
     font-size: 1.5rem;
     margin-bottom: 20px;
     font-weight: bold;
 }

 .working-hours .time-item {
     display: flex;
     justify-content: space-between;
     padding: 12px 0;
     border-bottom: 1px solid #333;
 }

 .working-hours .time-item:last-child {
     border-bottom: none;
 }

 .working-hours .day {
     color: #fff;
     font-weight: 600;
 }

 .working-hours .time {
     color: #00ff00;
 }

 /* Responsive Design */
 @media (max-width: 991px) {
     .form-section {
         padding: 40px 30px;
         margin-bottom: 40px;
     }

     .map-section {
         min-height: 450px;
     }
 }

 @media (max-width: 768px) {
     .contact-hero {
         padding: 60px 0;
     }

     .contact-hero h1 {
         font-size: 2.5rem;
     }

     .contact-hero p {
         font-size: 1.1rem;
     }

     .form-section {
         padding: 30px 20px;
     }

     .form-section h2 {
         font-size: 2rem;
     }

     .map-section {
         min-height: 400px;
     }

     .map-placeholder .icon {
         font-size: 4rem;
     }
 }

 @media (max-width: 576px) {
     .py-80 {
         padding: 60px 0;
     }

     .contact-hero h1 {
         font-size: 2rem;
     }

     .form-section h2 {
         font-size: 1.7rem;
     }

     .submit-btn {
         width: 100%;
         padding: 14px 30px;
     }

     .working-hours .time-item {
         flex-direction: column;
         gap: 5px;
     }
 }

 .productspage .product-showcase {
     margin-bottom: 0;
 }

 @media(max-width:576px) {
     /* ul.navbar-nav {
         margin-top: 100px;
     } */
      .navbar-brand {
    position: relative;
    top: 0;
}

     .banner-img img {
         height: auto;
     }

     .banner-item {
         display: flex;
         flex-direction: column-reverse;
     }

     .hero-content {
         padding: 50px 20px 100px;
     }

     .bannerslider .owl-nav {
         right: auto;
         gap: 40px;
         font-size: 56px;
         left: 0;
     }

     .hero-btn {
         width: 100%;
         font-size: 15px;
         padding: 1.2rem 2rem;
     }

     .contact-glass h3 {
         font-size: 1.5rem;
         text-align: center;
     }

     .contact-glass {
         padding: 3rem 1rem;
     }

     .contact-item span {
         font-size: 14px;
     }

     .footer-section {
         text-align: center;
     }

     .footer-title::after {
         left: 50%;
         transform: translateX(-50%);
     }

     .navbar-brand h4 {
    font-size: 10px;
    line-height: 20px;
}

     .navbar-brand img {
    max-width: 190px;
}
     .breadcrumb-section h1 {
    font-size: 40px;
}
 }
 .product-showcase a{
    text-decoration: none;
    color: #000;
 }
 .product-sec .product-showcase {
    padding: 4rem 4rem 0;
}
 .product-sec .product-showcase{
    margin: 0;
 }
 .sub-menu li {
    position: relative;
}
.breadcrumb-section .container {
    position: relative;
    z-index: 9;
}
.feature-bullets {
    list-style: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    padding: 0;
    margin: 0;
}

@media (max-width:600px){
    .img-magnifier-glass {
    display: none;
}
}