@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    /* background: var(--light-bg); */
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

:root {
    --primary: #0066ff;
    --primary-gradient: linear-gradient(135deg, #018ac1 0%, #005486 100%);
    --secondary: #ff3366;
    --secondary-gradient: linear-gradient(135deg, #ff3366 0%, #ff6699 100%);
    --accent: #00cc99;
    --dark: #0a0a18;
    --darker: #050510;
    --light: #ffffff;
    --light-bg: #f8faff;
    --text: #0a0a18;
    --text-light: #4a4a68;
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.text-blue {
    color: #005486;
}

/* Navigation */
.sticky-top {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* padding: .2rem 2rem; */
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}


/* .sticky-top .scrolled {
     padding: 0.5rem 0rem;
     
 } */
.NavMenu li ul li a .toggle::after {
    content: "\f054";
    /* Font Awesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.NavMenu li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.NavMenu li a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 13px;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.NavMenu li a:hover::after,
.NavMenu li a.active::after {
    width: 100%;
}

.NavMenu li a:hover,
.NavMenu li a.active {
    color: var(--primary);
}


/* Hero Section */
.hero-full-1 {
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/banner-created-new.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-full-2 {
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/banner-bg-2.webp') center/cover no-repeat;
    overflow: hidden;
}

/* Gradient Overlay (Brand Colors) */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, #018ac1cc 0%, #005486cc 100%); */
    /* background: linear-gradient(135deg, #018bc188 0%, #00558685 100%); */
    background: linear-gradient(135deg, #050505a1 0%, #00000082 100%);
    z-index: 1;
}

.hero-full-2 .hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, #018ac1cc 0%, #005486cc 100%); */
    /* background: linear-gradient(135deg, #018bc15e 0%, #0055864d 100%) !important; */
    background: linear-gradient(135deg, #050505a1 0%, #00000082 100%);
    z-index: 1;
}

/* Floating Gradient Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.shape-1 {
    width: 160px;
    height: 160px;
    top: 10%;
    left: 12%;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 25%;
    right: 35%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(10deg);
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-in-out;
    text-transform: uppercase;
}

.hero-title span {
    /* background: linear-gradient(135deg, #018ac1, #005486); */
    background-color: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #f1f1f1;
    font-weight: 400;
    animation: fadeInUp 1.2s ease-in-out;
}

/* .carousel-item {
            position: relative;
            overflow: hidden;
        
        }
 .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 5s;
        }
        .carousel-item.active img {
            transform: scale(1.05);
        }
        .carousel-caption {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 0.5rem;
        } */
/* Gradient CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #018ac1, #005486);
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(1, 138, 193, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 84, 134, 0.6);
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: 0.6s;
}

.cta-btn:hover::after {
    left: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Section Common Styles */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    color: var(--text);
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

/* 
 .container {
     max-width: 1400px;
     margin: 0 auto;
 } */

/* About Section */
.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-img {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s;
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    z-index: 1;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.para p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Features Section */
.features-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    opacity: 0.05;
    z-index: 0;
}

.features-grid {
    /* display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2.5rem; */
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-gradient);
    transition: width 0.4s ease;
    z-index: 1;
    opacity: 0.05;

}

.feature-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Products Section */
.products-section {
    background: var(--light);
    position: relative;
    padding: 80px 0;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 15px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.product-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    border: 2px solid #00327c;
    border-radius: 25px;
    padding: 15px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem 1rem;
    text-align: center;
}

.product-content h3 {
    font-size: 19px;
    margin-bottom: 1rem;
    color: var(--text);
    min-height: 60px;
}

.product-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* Owl Carousel Navigation Styling */
.owl-nav {
    text-align: center;
    margin-top: 30px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: #006b9f !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    margin: 0 10px;
    transition: all 0.3s;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: #0072b4 !important;
    transform: scale(1.1);
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #ccc !important;
}

.owl-dot.active span {
    background: var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-img {
        height: 220px;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* Why Choose Us Section */
.why-choose-section {
    background: var(--light);
    position: relative;
}

/* .benefits-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 } */

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    align-items: center;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.benefit-icon i {
    font-size: 22px;
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-img {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s;
    position: relative;
}

.benefit-img:hover {
    transform: scale(1.03);
}

.benefit-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.contact-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-text p {
    color: var(--text-light);
}

.contact-form {
    background: var(--light);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #001e38;
    color: white;

    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-icon:hover {
    background: #009bd9;
    transform: translateY(-5px) rotate(5deg);
}

.footer-links .ftr-head {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 700;
}

.footer-links .ftr-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
}

.machine-specs-2 {
    background-color: rgb(235 244 247);
}


/* enquiry form */


.get {
    font-size: 29px;
    color: #006599;
    font-weight: 600;
    margin-bottom: 0;
}
.fill {
    font-size: 19px;
    font-weight: 300;
    padding-top: 5px;
    color: #000000;
    margin-bottom: 45px;
}


/* Fixed Whatsapp Button */

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9;
}
.btn-whatsapp-pulse svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}
.btn-whatsapp-pulse svg path {
    stroke: #fff; 
    stroke-width: 10;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
} 







/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid,
    .benefits-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .benefit-img,
    .about-img {
        order: -1;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.2;
        border-radius: 0;
    }

    .section {
        padding: 6rem 2rem;
    }
     .get {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-card,
    .product-card,
    .team-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        margin: 0 auto 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0;
    }

    .hero-content {
        text-align: center;
        padding-top: 0rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .navbar {
        padding: 1rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1rem;
    }
}

/* header new css */


.logo a {
    text-decoration: none;
    font-size: 26px;
    color: #000;
    text-transform: uppercase;
    font-weight: 800
}

.navbar {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.bartoggle,
#menubrop {
    display: none
}

.NavMenu {
    flex: 10;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 0
}

.NavMenu li {
    display: inline-block
}

.NavMenu li input {
    display: none
}

.NavMenu li a {
    display: block;
    padding: 20px 14px;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--primary-gradient);
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease
}

.NavMenu li ul li a:hover {
    color: var(--main-color);
}

.NavMenu li ul li a:after {
    display: none
}

.NavMenu li a:hover {
    color: #303030
}

.NavMenu li a:hover::after {
    width: calc(100% - 28px)
}

.NavMenu li a label {
    cursor: pointer;
    appearance: none;
    display: block;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.NavMenu>li>a label::after {
    right: -15px;
    top: -4px
}

.NavMenu li ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    min-width: 200px;
    border-bottom: 2px solid #2f294d;
    top: 100%;
    box-shadow: 0 3px 5px rgb(0 0 0/20%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    visibility: hidden;
    opacity: 0;
    padding-left: 0
}

.NavMenu li ul li {
    position: relative
}

.NavMenu li ul li a {
    color: var(--main-color);
    padding: 8px 10px;
    display: block;
    border-left: 2px solid #fff0;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.NavMenu li ul li ul {
    position: absolute;
    right: 100%;
    top: 0
}

@media(min-width:992px) {
    .NavMenu li ul li a:hover {
        border-left: 2px solid #2f294d
    }

    .NavMenu li:hover>ul,
    .NavMenu li ul li:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@media(max-width:1024px) {
    header {
        padding: 0 3%
    }

    .logo {
        flex: 6
    }

    .bartoggle {
        display: flex;
        justify-content: center;
        font-size: 30px;
        align-items: center;
        background-color: #fff;
        padding: 0 10px 6px 10px;
        cursor: pointer;
        height: 40px
    }

    .sticky-top .container {
        align-items: center
    }

    .NavMenu {
        width: 430px;
        flex: 12;
        position: fixed;
        flex-direction: column;
        background-color: #001e38;
        left: 0;
        top: 40px;
        height: 90vh;
        z-index: -1;
        padding: 15px 0 50px 0;
        justify-content: start;
        overflow-y: scroll;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%)
    }

    .NavMenu li ul,
    .NavMenu li ul li ul {
        position: initial;
        left: 0;
        visibility: visible;
        opacity: 1;
        top: 0;
        display: none
    }

    .NavMenu li ul li a {
        color: #000 !important
    }

    .NavMenu li a {
        padding: 8px 15px;
        color: #fff !important;
        border-bottom: 1px solid #fff
    }

    .NavMenu li ul li ul {
        background: #fff;
        position: inherit;
        margin-top: -10px;
        margin-bottom: 10px
    }

    .NavMenu li ul li ul li a {
        font-size: 16px;
        color: #fff;
        font-weight: 400;
        text-transform: initial;
        padding: 7px 15px 7px 30px
    }

    .NavMenu li a label::after {
        right: 10px
    }

    .NavMenu li input:checked+ul,
    .NavMenu li ul li input:checked+ul {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px
    }

    input:checked+.NavMenu {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        align-items: normal
    }

    .get-quote {
        display: none
    }

    .NavMenu {
        top: 100px
    }

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 100% !important
    }

    .NavMenu li a::after {
        content: none;
    }
}

@media(max-width:375px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 87% !important
    }
}

@media(max-width:320px) {

    .NavMenu li>ul,
    .NavMenu li ul li>ul {
        width: 75% !important
    }

    .NavMenu {
        top: 81px
    }
}

.NavMenu li>ul,
.NavMenu li ul li>ul {
    width: max-content;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none
}

.dropdown {
    position: relative
}

.dropdown-header {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid rgb(0 0 0 / .1);
    padding: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.dropdown-header a {
    border: none !important
}

.main-link {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    color: #333
}

.toggle-icon {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--main-color)
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9
}

.submenu li {
    display: inline
}

input[type="checkbox"]:checked+.dropdown-header+.submenu {
    display: block
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    position: relative;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #005486;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #018ac1, #005486);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
}


.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--primary-gradient);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--light);
    border: 4px solid var(--primary);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -13px;
}

.timeline-item:nth-child(even)::after {
    left: -13px;
}

.timeline-content {
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.timeline-year {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-text {
    color: var(--text-light);
}



.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.team-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    max-width: 400px;
    margin: 0 auto;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=634&q=80') center/cover no-repeat;
    border: 4px solid var(--light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.team-position {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-light);
    line-height: 1.6;
}

.hero-2 {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%),
        url('../img/breadcrumb.webp');
    background-size: cover;
    background-position: center right;
}

.hero-2 .content-wrapper {
    background: linear-gradient(90deg, rgb(14 77 118) 0%, transparent 100%);
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.hero-2 .breadcrumb {
    background: rgb(1 139 193 / 25%);
    backdrop-filter: blur(10px);
    border-left: 3px solid #00a5e7;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    margin-bottom: 2rem;
}

.hero-2 .breadcrumb-item a {
    color: #e7e7e7;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-2 .breadcrumb-item a:hover {
    color: #FFF;
}

.hero-2 .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.hero-2 .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #f8f8f8;
    padding: 0 0.75rem;
}

.hero-2 h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-2 .hero-description {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-2 .hero-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.NavMenu li a label::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
    color: inherit;
}
/* .NavMenu li a label:hover::after,
.NavMenu li a label.active::after {
    transform: rotate(180deg);
} */
.NavMenu li ul li a.toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    display: inline-block;
    transition: transform 0.3s ease;
    vertical-align: middle;
    color: inherit;
}
/* 
.NavMenu li ul li a.toggle:hover::after,
.NavMenu li ul li a.toggle.active::after {
    transform: rotate(180deg);
} */


@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        min-height: 300px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 18px;
    }

    .timeline-item:nth-child(odd)::after {
        right: auto;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 1.5rem;
    }
}

/* Section Title */

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.team-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

.team-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.team-img:hover {
    transform: scale(1.03);
}

/* Team Cards */
.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.team-card .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #018ac1, #005486);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.team-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.ftr-logo img {
    width: 200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* product table design */
.specs-card h2 {
    letter-spacing: 0.5px;
}

.specs-table th {
    background-color: #f1f5fb;
    color: #005486;
    font-weight: 600;
    width: 45%;
    padding: 11px;
    border: 1px solid #00558641;
    /* border-top: 0; */
}

.specs-table td {
    background-color: #ffffff;
    color: #333;
    font-weight: 500;
    padding: 11px;
    border: 1px solid #00558641;
    /* border-top: 0; */
}

.specs-table tr:nth-child(even) td {
    background-color: #f9fbfd;
}

.specs-table tr:hover td,
.specs-table tr:hover th {
    background-color: #eaf2ff;
    transition: background 0.3s ease;
}

/* Borders and rounding */
.specs-table {
    /* border-collapse: separate; */
    border-spacing: 0;
    /* border-radius: ; */
    overflow: hidden;
}

.product-image-wrapper {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
}

.product-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15), transparent 80%);
    border-radius: 50%;
    z-index: -1;
}
.abt-span{
    border: 1px solid #00558641;
    background-color: #00558641;
    color: #001e38;
}
input.Submit-box{
    background-color: #005586;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
input.Submit-box:hover{
    background-color: #0081cc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.page-part{
    padding: 50px 0;
  }
/* Mobile Responsive Adjustments */
@media (max-width: 767.98px) {
    .specs-card {
        padding: 1.5rem 0;
    }

    .specs-table th,
    .specs-table td {
        /* display: block; */
        width: 50%;
        text-align: left;
        padding: 0.7rem 0.8rem;
    }

    .specs-table-2 th {
        width: 100% !important;
    }

    .specs-table th {
        background-color: #eef3fa;
        border-bottom: 1px solid #ddd;
    }

    .specs-table tr:last-child {
        border-bottom: none;
    }
}

/* over */
/* responsive css */
@media (max-width: 1024px) {
    .logo img {
        width: 160px;
    }

    .stat-card {
        height: 100%;
    }

    .section-title {
        font-size: 36px;
    }

    .col-lg-7.pe-4 {
        padding-right: 12px !important;
    }

    #about .row {
        align-items: start !important;
    }

    .footer-bottom.d-flex.align-items-center.justify-content-between {
        flex-direction: column;
    }

    ul.NavMenu.justify-content-end {
        justify-content: flex-start !important;
    }

    .benefit-content h4 {
        font-size: 20px;
    }

    .benefit-item {
        gap: 1.3rem;
        padding: 25px 25px;
    }
}

@media (max-width: 768px) {
    .about-img {
        margin-top: 25px;
    }

    .benefit-img {
        margin: 20px 0;
    }

    .benefits-list .row {
        justify-content: center;
    }

    .footer-links {
        margin-top: 25px;
    }
      .hero-2 {
        /* padding: 50px 0; */
        background-position: center;
    }

    .hero-2 h1 {
        font-size: 34px;
    }

    .hero-2 .breadcrumb {
        padding: 8px 8px;
    }

    .hero-2 .breadcrumb-item a {
        font-size: 14px;
    }
    .rw-dir{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }.prd-inn-img.text-center{
        margin-top: 20px;
    }
}

@media (max-width: 425px) {
    .hero-title {
        font-size: 31px;
        line-height: 40px;
        padding: 0;
    }

    .hero-full {
        height: 420px;
    }

    #about .col-lg-7.pe-4 {
        padding-left: 12px !important;
    }

    .benefit-content h4 {
        font-size: 20px;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 16px;

    }

    section.section.why-choose-section {
        padding: 4rem 10px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        font-size: 24px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .para p,
    .footer-links a,
    .footer-bottom p,
    .footer-bottom a {
        font-size: 16px;
    }

    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
    }

    .NavMenu {
        width: 100%;
    }

    h1.hero-title.aos-init.aos-animate {
        margin-bottom: 8px;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }

    .shape-1 {
        top: 9%;
        left: 1%;
    }

    .shape-3 {
        top: 8%;
        right: 9%;
    }

    p.hero-subtitle.fs-3.mb-2.aos-init.aos-animate {
        line-height: 28px;
        font-size: 18px !important;
    }
    .breadcrumb-item+.breadcrumb-item{
        padding: 0;
    }
    .hero-2 .breadcrumb-item+.breadcrumb-item::before {
    padding: 0px 0.5rem;
}
    .hero-2 h1 {
        font-size: 24px;
    }
     .get {
        font-size: 19px;
    }
    .fill {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 375px) {
    .product-card {
        padding: 0px;
    }

    .section {
        padding: 4rem .5rem;
    }

    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    h2.section-title.aos-init.aos-animate {
        font-size: 30px;
    }

    h1.hero-title.aos-init.aos-animate {
        margin-bottom: 5px;
    }
     .get {
        font-size: 17px;
    }
    .fill {
        font-size: 17px;
        margin-bottom: 25px;
    }
}

@media (max-width: 320px) {
    .NavMenu {
        top: 100px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 36px;
    }
     .get {
        font-size: 16px;
    }
}
