/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.section-margin{
    margin-top: 70px;
    margin-bottom: 50px;
}

.heading-margin{
    margin-top: 10px;
    margin-bottom: 20px;
    
}
.heading{
    /* font-family: "Unna", serif; */
    font-style: normal;
    font-weight: 300;
}

/* Color Variables */
:root {
    --primary-color: #005F73;
    --secondary-color: #0A9396;
    --accent-color: #EE9B00;
    --text-color: #222222;
    --background-color: #F6F6F6;
    --hover-color: #94D2BD;
}

/* General Styling */
body {
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Base Styling */
.navbar {
    background: white;
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar .navbar-brand img {
    height: 50px;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled .navbar-brand img {
    height: 45px;
}

/* Navbar Links */
.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.navbar .nav-link i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--secondary-color);
}

.navbar .nav-link:hover {
    background: #4CAF50;
    color: white;
    border-radius: 5px;
    transform: scale(1.05);
}

.navbar.scrolled .menu-text {
    display: none;
}

/* Dropdown Menu */
.megamenu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.nav-item:hover .megamenu {
    display: block;
    opacity: 1;
}

.megamenu .title {
    font-size: 16px;
    font-weight: bold;
    color: #4CAF50;
}

.megamenu ul {
    list-style: none;
    padding: 0;
}

.megamenu ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.megamenu ul li a:hover {
    color: #4CAF50;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 2rem;
    background: #f8f9fa;
    overflow: hidden;
}

.hero-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section .row {
    align-items: center;
    margin: 0;
}

.hero-content {
    padding: 2rem 1rem;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #333;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: #00ff87;
    color: #000;
    box-shadow: 0px 4px 15px rgba(0, 255, 135, 0.5);
}

.btn-primary:hover {
    background: #00cc70;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #007bff;
    border: 2px solid #00ff87;
}

.btn-secondary:hover {
    background: transparent;
    color: #00ff87;
    transform: translateY(-2px);
}

.hero-section iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-section .col-md-6 {
        margin-bottom: 2rem;
    }

    .hero-section iframe {
        margin-top: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--hover-color);
    color: var(--text-color);
}

/* Carousel */
.carousel-item img {
    width: 100%;
    object-fit: fill;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border-radius: 10px;
    max-width: 80%;
    position: absolute;
    left: 50%!important;
    bottom: 20%;
    transform: translateX(-50%);
}

/* Responsive Carousel Captions */
@media (max-width: 768px) {
    .carousel-item img {
        height: 60vh;
        margin-top: 50px;
    }

    .carousel-caption {
        font-size: 0.9rem;
        padding: 0.8rem;
        bottom: 100%;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        /*height: 50vh;*/
        margin-top: 50px;
    }

    .carousel-caption {
        font-size: 0.8rem;
        text-align: center;
        width: 90%;
        bottom: 5%;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--hover-color);
}
/* Footer Styling */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    gap: 2rem;
}

/* Footer Sections */
.footer-logo, .footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.3rem;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

/* Contact Info */
.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Social Media Icons */
.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-right: 0.8rem;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .footer h4 {
        border-bottom: none;
    }

    .footer-social a {
        font-size: 1.2rem;
    }
}
/* Product Gallery Section */
.product-gallery {
    padding: 20px;
    text-align: center;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px;
    width: 80%;
}

.product {
    flex: 0 0 auto;
    width: 250px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f5f5f5;
    padding: 10px;
}

.product h3 {
    margin: 15px 10px;
    font-size: 1.1rem;
    color: #333;
    padding: 0 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Navigation Buttons */
.product-slider-btn {
    position: absolute;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.product-slider-btn.left-btn {
    left: 5px;
}

.product-slider-btn.right-btn {
    right: 5px;
}

.product-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Hide scrollbar for all browsers */
.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.why-choose-us .heading {
    text-align: center;
    margin-bottom: 30px;
}
.why-choose-us-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.why-choose-us-item {
    flex: 1 1 200px;
    max-width: 300px;
    margin: 15px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-choose-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.why-choose-us-item i {
    color: var(--primary-color);
    margin-bottom: 15px;
}
.why-choose-us-item h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}
.why-choose-us-item p {
    font-size: 1em;
    color: #666;
}
@media (max-width: 768px) {
    .why-choose-us-content {
        flex-direction: column;
        align-items: center;
    }
    .why-choose-us-item {
        max-width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials .heading {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.testimonial-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-message {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    position: relative;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-message.expanded {
    max-height: 1000px;
    -webkit-line-clamp: unset;
}

.testimonial-message::before {
    content: '"';
    font-size: 3em;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.testimonial-footer h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-message {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .testimonials {
        padding: 30px 0;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-message {
        font-size: 0.9rem;
    }
}

/*product-detail*/
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.accordion-button {
    font-weight: bold;
}

.accordion-body {
    font-size: 0.9rem;
    color: #666;
}
@media (max-width: 426px) {
#get-special-quote{
    margin-top: 10px;
}
}
.toggle-title {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    padding: 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.toggle-content {
    display: none;
    padding: 10px;
    border-left: 2px solid #000;
    margin-bottom: 10px;
    background: #fff;
}


#pro-img-prev-icon, 
#pro-img-next-icon {
    background-color: rgb(51, 50, 50);
    border-radius: 35%;
}

/*contact us*/

.contact-div {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-us {
    max-width: 800px;
    margin: 100px 20px 20px 20px;
    padding: 50px 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-num h4{
    margin-bottom: -5px;
    margin-top: -3px;
}

.contact-us h1 {
    margin-top: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.contact-card {
    background-color: #e8f4fe;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1;
    max-width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.contact-card i {
    font-size: 2em;
    color: #097a69;
}

.contact-card h3 {
    margin-top: 10px;
}

.contact-card p {
    margin: 10px 0;
}

.contact-card .button, .contact-card .button {
    display: inline-block;
    text-decoration: none;
    padding: 8px 15px;
    color: #fff;
    background-image: linear-gradient(45deg, #04debd, #097a69);
    font-size: 14px;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: 0.5s;
}

.contact-card .button:hover, .contact-card .button:hover{
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-image: linear-gradient(45deg, #097a69, #04debd);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container{
        display: block;
    }
    .contact-card{
        max-width: none;
        width: auto;
    }
    .contact-us{
        padding: 25px 15px;
    }
}


/*explore-product*/

/* Banner */
.banner-container {
    position: relative;
    margin-top: 80px;
    width: 100%;
}

.banner {
    width: 100%;
    display: none;
}

/* Default Desktop Banner */
.desktop-banner {
    display: block;
}

/* Tablet Banner */
@media (max-width: 1024px) {
    .desktop-banner {
        display: none;
    }
    .tablet-banner {
        display: block;
    }
}

/* Mobile Banner */
@media (max-width: 768px) {
    .tablet-banner {
        display: none;
    }
    .mobile-banner {
        display: block;
    }
}

/* Product Card */
.card {
    border: none;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.product-title {
    font-weight: bold;
    font-size: 16px;
}

.price {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 767px) {
    .product {
        width: 200px;
    }
    
    .product-image {
        aspect-ratio: 4/3;
    }
    
    .product h3 {
        font-size: 1rem;
        margin: 10px 5px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .product {
        width: 220px;
    }
    
    .product-image {
        aspect-ratio: 4/3;
    }
}

@media (min-width: 1200px) {
    .product {
        width: 250px;
    }
    
    .product-image {
        aspect-ratio: 4/3;
    }
}

