body{
    overflow-x:  hidden  !important;
}
@import url('./Fonts.css');

img {
    max-width: 100%;
    max-height: 100%;
}

.header-bar {
    background-color: #03958a;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    margin: 0 !important;

}

/* Navbar Styling */
.navbar {
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 43px; /* Adjust based on the header-bar height */
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    margin: 0 !important;
    padding: 0 !important;
}

/* Nav Links Styling */
.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4d4d4d;
}

/* Dropdown Animations */
.navbar-nav .dropdown-menu {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Button Styling */
.btn-orange {
    background-color: #36cc5e;
    color: white;
    padding: 8px 18px; /* Slightly reduce button width */
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Black box shadow */
}

.btn-orange:hover {
    background-color: transparent;
    border: 1px solid #36cc5e;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/* Logo Styling */
.logo {
    height: 50px;
    width: auto;
}
/* Dropdown background color */
.dropdown-menu {
    background-color: #f2f2f2 !important;
    border: none;
    padding: 10px 0; /* Adds spacing inside the dropdown */
}

/* Dropdown items styling */
.dropdown-item {
    padding: 12px 20px; /* Increases spacing between items */
    font-family: 'Sofia', sans-serif; /* Adjust font-family */
    font-size: 16px; /* Adjust font size */
    color: #191919; /* Adjust text color */
    transition: background 0.3s ease-in-out;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
    background-color: #c0e9f9 !important;
    color: #000 !important;
}

/* Increase width for 'Where We Buy' dropdown */
.dropdown-large {
    width: 300px;
}
/* Scrollable dropdown for "Where We Buy" */
.dropdown-menu {
    max-height: 400px; /* Adjust height as needed */
    overflow-y: auto; /* Enables vertical scrolling */
}

/* Custom scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #36cc5e;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f2f2f2;
}

.landing-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
    url('../images/homepage.jpeg') center / cover no-repeat;

    min-height: 100vh;
    display: flex;
    align-items: center;
}


/* Content Box */
.content-box {
    background-color: rgba(0, 0, 0, 0.6) !important;
    opacity: 0.9 !important;
    color: white;
    padding: 30px;
    border: 2px solid white;
    border-radius: 10px;
}
.content-box h1{
    font-weight: 700;
    line-height: 1.5;
    font-size: clamp(32px, 5vw,47px); /* Adjusts between 32px and 56px based on screen size */


}
/* Form Box */
.form-box {
    
    background-color: #f2f2f2 ;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.form-box h3{
    font-weight: bolder;
padding-bottom: 20px !important;
font-weight: 500;
margin-top: 20px;
font-size: 20px;

}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}
.progress {
    height:7px; /* Adjust height as needed */
    border-radius: 5px; /* Rounded edges */
}

#progress-bar {
    
    background-color: #424330 !important; /* Dark Olive Green */
    transition: width 0.4s ease-in-out;
}
.progress-bar-striped {
    background-image: linear-gradient(
        45deg, 
        rgba(255, 255, 255, 0.2) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.2) 75%, 
        transparent 75%, 
        transparent
    );
    background-size: 1rem 1rem;
}
.form-box h4{
    font-family: 'Poppins', sans-serif;

    color: rgba(77,77,77,1);
    direction: ltr;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.3;
    font-style: normal;
}
.form-label{
    font-family: 'Poppins', sans-serif;

    color: #000000 !important;
    font-weight: 500;
    font-size: 16px;
}
.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 5px;
    width: 100%; /* Same width as address field */
    height: 40px; /* Adjust height to match address field */
    overflow: hidden;
    background: white;
}

.dropdown-toggle {
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.phone-input {
    border: none;
    flex: 1;
    padding: 10px;
    font-size: 16px;
    outline: none;
    width: 100%;
}


.flag-icon {
    width: 24px;
    height: 18px;
    margin-right: 5px;
}
svg{
    color: rgba(255, 255, 255, 1) !important;
    fill: rgba(255, 255, 255, 1) !important;
    width: 60% !important;

}
.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 125px;
    background-color: #03958a;
    border-radius: 50%;
    border: none;
    margin-bottom: 0 !important; /* Remove extra bottom space */
    padding: 0; /* Ensure no extra space inside */
}
.services{
    position: relative;
    background-image: linear-gradient(180deg, rgba(226, 226, 226, 1) 0, rgba(0, 0, 0, 0) 100%) !important;
    background-origin: border-box !important;

    /* bottom: 100px; */
}
.icons{
    position: relative;
    margin-top: 20px;
    bottom: 100px;
}


.btn-primary{
    background-color: rgb(54, 204, 94) !important;
    border: 1px solid rgb(54, 204, 94) !important;
}
.services h3{
    font-weight: bold;
    font-family: 'Poppins', sans-serif;

    color: #4d4d4d;
    font-size: 30px;
}
.services p{
font-weight: normal;
    color: #4d4d4d;
    font-size: 15px;
}

.faq-section {
    padding: 50px 0;
}
.faq-item {
   

    cursor: pointer;
    transition: 0.3s;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}
.icon {
    transition: transform 0.3s;
}
.rotate {
    transform: rotate(180deg);
}
.custom-check-icon {
    color: #03958a;
    font-weight: bold;
    font-size: 20px; /* Adjust size as needed */

}

.faq-header {
    background: #f2f2f2;
    font-family: 'Poppins', sans-serif;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-weight: normal;
    color: #4d4d4d !important;
    font-size: 18px !important;
}

.icon {
    background-color: #03958a;
    color: white;
    border-radius: 50%;
    padding: 8px; /* Adjust size as needed */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px; /* Adjust size as needed */
    height: 32px; /* Adjust size as needed */
}

.collapse {
    padding: 0 15px; /* Ensures the text aligns perfectly with the question */
    color: #4d4d4d !important;
    font-family: 'Poppins', sans-serif;

    font-size: 16px !important;

}

.bg-light-gray {
    background: rgba(242, 242, 242, 1);
}

.btn-secondary {
    background-color: #03958a;
    border: none;
    color: white;
    font-size: 18px;
}

.full-width-bg {
    background: rgba(242, 242, 242, 1);
    width: 100%;
}

.logo-img {
    width: 150px !important;  /* Set a fixed width */
    height: 80px !important;  /* Set a fixed height */
    object-fit: contain !important; /* Ensures images maintain aspect ratio inside the fixed size */
    display: block !important;
    margin: 0 auto !important; /* Centers images horizontally */
}
.featured-btn {
    background-color: #36cc5e !important;  /* Custom green background */
    border: none;
    font-size: 24px; /* Bigger font size */
    padding: 16px 32px; /* Bigger padding */
    color: white !important; /* Text color */
    border-radius: 8px; /* Rounded corners */
    cursor: not-allowed; /* Show it's unclickable */
}

.how-to-start h1 {
    color: #4d4d4d !important;
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: bold !important;
    position: relative;
    text-align: center !important;
    margin-bottom: 10px;
}

.how-to-start h1::after {
    border-radius: 6px;
    content: "";
    display: block;
    width: 150px; /* Adjust width as needed */
    height: 4px; /* Adjust thickness as needed */
    background-color: #03958a;
    margin: 15px auto 0; /* Adjust margin for spacing */
}
.how-to-start{
    margin-top: 57px !important
    ;
}

.how-to-start p {
    color: #4d4d4d !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin-top: 15px;
   
}

/* Icon Box Styling */
.icon-box {
    text-align: center;
    margin-top: 20px;
}

.icon-bg {
    width: 100px;
    height: 100px;
    background-color: #03958a; /* Change to desired color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border-radius: 5px;
}

.icon-bg svg {
    fill: white; /* SVG color */
    width: 60px;
    height: 80px;
}

.icon-box h3 {
    color: #4d4d4d !important;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    line-height: 1.3;
        font-weight: bold;
    margin-bottom: 10px;
}

.icon-box span {
    font-size: 15px;
    color: rgba(77,77,77,1);
    direction: ltr;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5;
}

.custom-btn {
    border: 2px solid #36cc5e;  /* Green border */
    color: #36cc5e;  /* Text color same as border */
    background: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(54, 204, 94, 0); /* Initial shadow (hidden) */
    width: 250px;
    height: 50px;
    font-family: 'Poppins', sans-serif;

}

.custom-btn:hover {
    box-shadow: 0px 0px 20px rgba(54, 204, 94, 0.5); /* Green glow effect */
    transform: translateY(-2px); /* Slight lift effect */
}

.image-text-section {
    padding: 60px 0;
}

.text-content h2 {
    font-size: 35px;
    font-weight: bold;
    color: #4d4d4d;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

/* Underline Effect */
.text-content h2::after {
    content: "";
    display: block;
    width: 150px; /* Line width */
    height: 4px; /* Line thickness */
    background-color: #36cc5e; /* Blue-green color */
    margin: 20px auto 0;
    border-radius: 2px;
}

.text-content p {
    font-family: 'Poppins', sans-serif;

    line-height: 1.5;
    font-weight: 400;
    font-size: 15px;
    color: #4d4d4d;
    margin-top: 40px;
    text-align: center;

}

/* Image Grid Styling */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Space between images */
}

.image-box {
    position: relative;
    width: 150px;
    height: 195px;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit nicely */
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

/* Dark Overlay on Image */
.image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark layer */
    border-radius: 10px;
}

/* Add Glass Effect & Zoom on Hover */
.image-box:hover img {
    transform: scale(1.1);
}

/* Overlay Text */
.image-box .overlay {
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 5px;
    color: white;
    font-size: 18px !important;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    z-index: 2;
}



.text-below-images{
    font-size: 30px !important;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    color: #4d4d4d;

}
.offer-btn{
    font-family: 'Poppins', sans-serif;

    border: 2px solid #36cc5e;  /* Green border */
    color: white;  /* Text color same as border */
    background: #36cc5e;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(54, 204, 94, 0); /* Initial shadow (hidden) */
    width: 80%;
    height: 50px;
}
.about-us h1{
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    position: relative;
    margin-bottom: 10px;
    color: rgb(77, 77, 77) !important;
    font-weight: bold !important;
    text-align: center !important;
}
.about-us p {
    color: #4d4d4d !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin-top: 15px;
    text-align: center !important;

}
a{
    text-decoration: none;
}
.video-container {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    height: auto;
    object-fit: cover;
}

/* Green Arrow Color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(52%) sepia(43%) saturate(567%) hue-rotate(90deg);
}

/* Responsive: Show only 1 video per slide on mobile */
@media (max-width: 768px) {
    .carousel-item .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .carousel-item .col-md-4 {
        width: 100%;
    }
}

.reviews{
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    position: relative;
    margin-bottom: 10px;
    color: rgb(77, 77, 77) !important;
    font-weight: bold !important;
    text-align: center !important;
}