@import '@fortawesome/fontawesome-free/css/all.min.css';
@import url('https://fonts.cdnfonts.com/css/ambit');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ambit', sans-serif;
    font-weight: 400;
}

body {
    font-family:'Ambit', sans-serif;
    font-style: normal;
    font-size: 14px;
    
}

        .nav-links {
            display: flex;

        }

        .nav-item {
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;

            padding: 10px 16px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .nav-links a:hover {
            background-color: #e0e0e0;
        }

        .submenu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            width: 500px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            z-index: 100;
            max-height: 400px;
            overflow-y: auto;
        }

        .submenu-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .submenu-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 10px;
            position: relative;
            transition: background 0.3s;
        }

        .submenu-item:hover {
            background-color: #f0f0f0;
        }

        .submenu-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 10px;
            border: 2px solid #ddd;
        }

        .submenu-item span {
            font-size: 15px;
            font-weight: 500;
            color: #333;
        }

        .nav-item:hover .submenu {
            display: block;
        }

        /* Nested submenu */
        .submenu-item.has-nested:hover .nested-submenu {
            display: block;
        }

        .nested-submenu {
            display: none;
            position: absolute;
            top: 0;
            left: 105%;
            background: #fff;
            padding: 10px;
            width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            z-index: 101;
        }

        .nested-submenu div {
            padding: 8px 10px;
            font-size: 14px;
            color: #333;
            border-radius: 6px;
            cursor: pointer;
        }

        .nested-submenu div:hover {
            background-color: #f3f3f3;
        }

        .header {
            display: flex;

            gap: 280px;
            align-items: center;
            padding: 15px 50px;
            border-bottom: 1px solid #ccc;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 10px;
        }

        .logo span {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .contact-info {
            display: flex;
            gap: 30px;
        }

        .info-item {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #333;
        }

        .info-item i {
            color: #007bff;
            font-size: 16px;
            margin-right: 8px;
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 50px;
            background-color: #f8f9fa;
        }

        .category-btn {
            background: #007bff;
            color: white;
            padding: 10px;
            border: none;
            margin-left: 60px;
            margin-right: -80px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .category-btn i {
            font-size: 18px;
        }

        /* Dropdown Menu */
        .category-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 32px;
            width: 250px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            z-index: 1000;
        }

        /* Category List */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-item {
            padding: 12px 15px;
            font-size: 16px;
            font-weight: bold;
            color: #333;
            border-bottom: 1px solid #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .category-item:hover {
            background: #f1f1f1;
        }

        /* Dropdown Submenu */
        .dropdown .dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .submenu {
            list-style: none;
            padding-left: 15px;
            display: none;
        }

        .submenu li {
            padding: 10px;
            font-size: 14px;
            border-bottom: 1px solid #ddd;
        }

        .submenu li:hover {
            background: #f9f9f9;
        }

        /* View More */
        .view-more {
            padding: 12px;
            text-align: center;
            color: #007bff;
            font-weight: bold;
            cursor: pointer;
            border-top: 1px solid #ddd;
        }

        .view-more:hover {
            background: #f1f1f1;
        }

        .nav-links {
            display: flex;
            gap: 10%;
            margin-right: 9%;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 20px;

        }


        .icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icons i {
            font-size: 18px;
            color: #333;
            position: relative;
        }

        .badge {
            position: absolute;
            top: -8px;
            right: -10px;
            background: #007bff;
            color: white;
            font-size: 10px;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            text-align: center;
            line-height: 16px;
            font-weight: bold;
            --bs-badge-padding-y: -0.65em;

        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        .top-bar {
            display: none;
        }

        @media(max-width:1238px) {
            .nav-links {
                gap: 5%;
                margin-right: 2%;
            }

        }

        @media(max-width:1115px) {
            .nav-links {
                gap: 0%;
                margin-right: -10%;
            }
        }

        @media(max-width:2000px) {
            .jbh-main-header {
                display: none;
            }
        }


        @media (max-width: 1024px) {
            .nav-links {
                gap: 0%;
                margin-right: -9%;
            }

        }


        @media (max-width: 997px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 15px 20px;
                display: none;
            }

            .info-item {
                display: none;
            }

            .icons {
                display: none;
            }

            .logo {
                display: flex;

            }

            .logo img {
                height: 40px;
                margin-right: 10px;
                margin-top: 10%;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .nav-bar {
                flex-direction: row-reverse;
                align-items: flex-start;
                padding: 10px 20px;
            }

            .hamburger {
                display: block;
                margin-left: auto;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 10px;
                margin-top: 10px
            }

            .nav-links.show {
                display: flex;
            }

            .nav-item {
                width: 100%;
                margin-bottom: 16px;
                margin-top: 17px;
            }

            .submenu {
                position: static;
                width: 189%;
                box-shadow: none;
                margin-top: 18px;
            }


            .submenu-content {
                grid-template-columns: 1fr;
            }

            .category-btn {
                width: 100%;
                justify-content: space-between;
                margin: 0;
                display: none;
            }

            .category-dropdown {
                position: static;
                width: 100%;
                box-shadow: none;
            }

            .icons {
                margin-top: 10px;
                justify-content: flex-end;
                width: 99%;
            }

            #search-bar {
                flex: 1;
                margin-left: 10px;
                max-width: 200px;
            }


            .top-bar {
                display: block;
                /* justify-content: space-between; */
                /* gap: 85%; */
                align-items: center;
                padding: 0px 0px;
                /* background-color: white; */
                margin-left: 17px;

            }

            .top-logo {
                flex: 1;
            }

            .top-logo img {
                height: 41px;
                width: 99px;
                margin-top: 11px;
            }

            .top-right {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .top-icons {
                display: flex-end;
                gap: 20px;
                float: inline-end;
            }

            .top-hamburger {
                display: block;
                font-size: 24px;
                cursor: pointer;
            }

            .jbh-main-header {
                display: block;
                width: 100%;

                float: right;
            }
        }
   
        /* Mobile Nav Links (Initially hidden off-screen) */
        .mobile-nav-links {
            display: none;
            /* Hide on desktop */
            position: absolute;
            left: -250px;
            /* Off-screen by default */
            top: 97px;
            z-index: 1;
            width: 183px;
            height: 34%;
            background-color: #fff;
            transition: left 0.3s ease;
        }

        .mobile-nav-links a {
            color: black;
            padding: 20px;
            text-align: center;
            text-decoration: none;
            font-size: 18px;
        }

        .mobile-nav-links a:hover {
            background-color: #444;
        }

        /* Mobile Specific - Show Hamburger Button */


        /* Media Query for Mobile View (smaller than 768px) */
        @media (max-width: 768px) {

            /* Show Hamburger button on mobile */


            /* Show the mobile nav links */
            .mobile-nav-links.show {
                left: 0;
                /* Slide in from the left */
                display: block;
                /* Make the mobile nav visible */
            }

            /* Hide the desktop navigation menu on mobile */
            .nav-links {
                display: none;
            }

            @keyframes wheelScrollIn {
                0% {
                    transform: rotateZ(-90deg) translateX(-250px);
                    opacity: 0;
                }

                100% {
                    transform: rotateZ(0deg) translateX(0);
                    opacity: 1;
                }
            }

            @keyframes foldOut {
                0% {
                    transform: perspective(600px) rotateX(-90deg);
                    opacity: 0;
                }

                100% {
                    transform: perspective(600px) rotateX(0deg);
                    opacity: 1;
                }
            }

            @keyframes rollPaperIn {
                0% {
                    transform: perspective(800px) rotateY(-90deg);
                    opacity: 0;
                }

                100% {
                    transform: perspective(800px) rotateY(0deg);
                    opacity: 1;
                }
            }

            .mobile-nav-links {
                display: none;
                position: absolute;
                left: 0;
                top: 97px;
                z-index: 1;
                width: 150px;
                height: 100vh;
                /* background-color: #333; */
                transform-origin: left center;
                transform: perspective(800px) rotateY(-90deg);
                backface-visibility: hidden;
                /* Improves visual crispness */
            }

            /* Active state: show and animate like a paper roll opening */
            .mobile-nav-links.show {
                display: block;
                animation: rollPaperIn 0.6s ease forwards;
            }



        }

        .nav-bar {
            position: sticky;
            top: 0;
            z-index: 999;

            /* or your nav bg */
        }

        .hero-slider {
            transition: background-color 0.5s ease;
        }
   
        /* Modal base */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Modal box */
        .modal-content {
            background-color: #fff;
            padding: 25px;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            position: relative;
        }

        /* Close button */
        .close-btn {
            position: absolute;
            right: 15px;
            top: 10px;
            font-size: 24px;
            cursor: pointer;
        }
   




/* Header Banner */
hero-banner {
    position: relative;
    background-color: #d0e6e7;
    padding: 60px 0;
    overflow: hidden;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    flex: 0 0 45%;
    padding-right: 30px;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2a9d8f;
    margin-bottom: 30px;
}

.banner-title span {
    display: block;
    margin-bottom: 5px;
}

.banner-image {
    flex: 0 0 55%;
    text-align: right;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    transform: translateY(-20px);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.prev-arrow {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.next-arrow {
    right: 0;
    border-radius: 4px 0 0 4px;
}


.info-item i {
    color: #007bff;
    font-size: 13px;
    margin-right: 8px;
    margin-top: -20px;
}

@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .banner-image {
        flex: 0 0 100%;
        text-align: center;
    }

    .banner-title {
        font-size: 36px;
    }
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: #70e4e4
}
/* .slide{
    position: relative;
    top: 150px;
} */

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-text {
    flex: 1;
    padding-right: 50px;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .animate-text {
    animation: fadeInUp 0.8s forwards;
}

.slide.active .animate-text:nth-child(1) {
    animation-delay: 0.3s;
}

.slide.active .animate-text:nth-child(2) {
    animation-delay: 0.6s;
}

.slide.active .animate-text:nth-child(3) {
    animation-delay: 0.9s;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

/* .slider-nav:hover {
    background: white;
} */

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
    }

    .slide-text {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .slide-text h2 {
        font-size: 2rem;
    }

    .hero-slider {
        height: auto;
        min-height: 500px;
        background-color: #dbefbe;
    }
}


/* features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    font-family: poppins, monospace;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    gap: 25px;
}

.feature-card i {
    font-size: 40px;
    color: #007bff;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.feature-text p {
    font-size: 14px;
    color: #666;

}

/* acheivements Section */
.counter-section {
    display: flex;
    justify-content: space-around;
    width: 80%;
    background: url('http://ktmprints.jbhtechinnovation.com/static/assets/images/bg_img14.avif') no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px;
    border-radius: 10px;
    color: white;
    text-align: center;
    margin: auto;
    position: relative;
}

.counter-box {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-box p {
    color: #fff;
}

.icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
    background-size: contain;
    background-position: center;
    background-image: url('https://demo.harutheme.com/pangja/wp-content/themes/pangja/assets/images/bg-icon-box.svg');
    font-size: 24px;
    color: white;
}

.number {
    font-size: 40px;
    font-weight: bold;
    color: black;
}

/* products Section */

.product-section {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
    transition: background-color 0.5s ease-in-out;
}


.section-heading {
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.section-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Makes it responsive */
}

.filter-btn {
    background: #fff;
    border: 2px solid #ddd;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.filter-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Product Banner Grid */
.product-bannerr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding-top: 20px;

}
.bannerr-image {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bannerr-image.hide {
    display: none;
}
/* Banner Image Wrapper */
.bannerr-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    display: inline-block;
}

/* Adjustments for Multiple Banner Layout */
.bannner3 {
    display: flex;
    gap: 29px;
}

.baner-image img {
    max-width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-bottom: 31px;
    padding-right: 23px;
}

/* Hover Effect */
.bannerr-image img,
.baner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    display: inline-block;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.bannerr-image img:hover,
.baner-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .filter-bar {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .bannner3 {
        flex-direction: column;
        gap: 15px;
    }

    .product-bannerr {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* Heading Styling (Initially Hidden) */
.banner-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Heading on Hover */
.bannerr-image:hover .banner-heading,
.baner-image:hover .banner-heading {
    opacity: 1;
}


/* Product Grid Component */
/* Product Section Styling */

.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1081px;
    margin: auto;
}

.product-card {
    display: flex;
    align-items: center;
    background: none;
    padding: 10px;
    border-radius: 10px;
    width: 50%;
    margin-bottom: 20px;
    gap: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect: Slight Zoom and Shadow */
.product-card:hover {
    transform: scale(1.05);
    
}

/* Image Hover Effect */
.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Transition for Image */
.product-image {
    width: 150px;
    height: auto;
    border-radius: 5px;
    margin-right: 30px;
    transition: transform 0.3s ease;
}

/* Change Text Color on Hover */
.product-card:hover .product-title {
    color: blue;
}

.product-card:hover .product-price {
    color: red;
}

@media (max-width: 1025px)
{
    .product-container {
        gap: 0px;
    }
}

/* CTA Section */
/* --- Hero Section Styles --- */
.hero-section-unique {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
     
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  /* Overlay for darker background if needed */
  .hero-overlay-unique {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('http://ktmprints.jbhtechinnovation.com/static/assets/images/bg_img15.jpg') no-repeat center center/cover;
    z-index: 1;
  }

  /* Container for the hero content */
  .hero-content-unique {
    position: relative;
    z-index: 2; /* Ensure content is above overlay */
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
    animation: fadeIn 1.2s ease-in-out;
  }

  /* Title styles */
  .hero-title-unique {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
  }

  /* Subtext/paragraph styles */
  .hero-text-unique {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
    animation: fadeInUp 1.2s ease-in-out;
  }

  /* Container for the buttons */
  .hero-buttons-unique {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.4s ease-in-out;
  }

  /* Button base styles */
  .hero-button-unique {
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  /* Primary button styles */
  .hero-button-primary-unique {
    background-color: #007bff;
    color: #fff;
  }
  .hero-button-primary-unique:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }

  /* Secondary button styles */
  .hero-button-secondary-unique {
    background-color: #007bff;
    color: #fff;
  }
  .hero-button-secondary-unique:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }

  /* Keyframes for fade in effects */
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* About Section */

.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
    background-color: #fff;
}

.about-background {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 280px;
    font-weight: bold;
    color: rgba(240, 240, 240, 0.6);
    z-index: 0;
    line-height: 1;
    letter-spacing: -10px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    width: 50%;
    padding-right: 30px;
}

.about-image {
    width: 50%;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    height: auto;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #333;
}

.highlight {
    color: #0066cc;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 2px solid #0066cc;
    color: #0066cc;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #0066cc;
    stroke: #0066cc;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.learn-more-btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
    border: 2px solid #0066cc;
    z-index: 1;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.learn-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0066cc, #0088ff);
    z-index: -1;
    transition: transform 0.3s ease;
    transform: scaleX(1);
    transform-origin: left;
}

.learn-more-btn:hover::before {
    transform: scaleX(0);
    transform-origin: right;
}

/* Footer */
.footer {
    background: #f8f9fa;
    text-align: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    
    /* Increased size */
    height: 50px;
}

.footer-links {
    margin: 25px 0;
    /* Increased margin for more space */
}

.footer-links a {
    text-decoration: none;
    color: black;
    margin: 0 15px;
    font-size: 14px;
}

.social-icons {
    margin: 25px 0;
    /* Increased space */
}

.social-icons a {
    color: black;
    font-size: 18px;
    margin: 0 10px;
}

.subscribe {
    margin: 30px 0;
    /* More space */
}

.subscribe input {
    padding: 10px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.subscribe button {
    background: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

.copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
}
/* mobile view navbar disable or hidden */
.mobile-view-jbh{
    visibility: hidden;
    display: none;

}

