* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.error-message {
    color: red;
    font-size: 19px;
}

body {
    max-width: 2000px;
    /* Prevents the content from stretching too wide */
    margin: 0 auto;
    /* Centers the body content horizontally */
    /* Optional padding for spacing */
    overflow-x: hidden;
    font-family: "Montserrat", serif;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* body {
    max-width: 100%;
    max-height: 100%;
    overflow-x: hidden;
} */

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #f8f9fa;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

header {
    max-width: 2000px;
    /* Same as body max-width */
    /* Center the header */
    /* Add some padding if needed */
}

.button-container {
    max-width: 2000px;
}

/* Logo */
.logo {
    max-height: 60px;
    width: auto;
}

/* Navigation */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Centers the menu items */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    /* font-family: "Comic Neue", serif; */
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: relative;
    transition: color 0.3s, font-weight 0.3s, text-decoration 0.3s;
}

/* Active Link */
.nav-menu ul li a.active {
    color: black;
    font-weight: bold;
}

.nav-menu ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
}

/* Hover Effect */
.nav-menu ul li a:hover {
    color: black;
    font-weight: bold;
}

.nav-menu ul li a:hover::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red;
}

/* Hamburger Icon */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 20px;
    top: 15px;
    background: none;
    border: none;
    color: black;
    z-index: 1001;
    /* Ensure it stays above other elements */
}

/* Responsive Styles */

/* end header part */

/* Responsive Image Section */
/* Responsive Image Section */
.imgday {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 91vh;
    /* Adjust this value (e.g., 50vh, 400px) */
    overflow: hidden;
    /* Ensures video stays within bounds */
}

.imgday video {
    width: 100%;
    height: 100%;
    /* Fills the container height */
    object-fit: cover;
    /* Crop video to fit container */
}

.imgday::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Slight black tint */
    z-index: 1;
}

.imgday img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Text */
.imgday p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(20px, 4vw, 79px);
    /* Adjusts between 20px and 79px */
    color: white;
    font-weight: bold;
    /* font-family: "Quicksand", serif; */
    text-align: center;
    max-width: 80%;
    z-index: 2;
}

/* #find-p {
    top: 80%;
} */

/* Fixed Button Position (Always Top-Right) */
/* Wrapper to control max width */
.button-wrapper {
    position: fixed;
    top: 87px;
    right: 0;
    /* Align to the right edge of the screen */
    width: 100%;
    max-width: 2000px;
    /* Prevent stretching beyond 1200px */
    z-index: 998;
}

/* Center the wrapper when screen exceeds 1200px */

.button-container {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    /* Keep buttons aligned to the right */
    padding-right: 80px;
    /* Maintain right spacing inside the container */
}

.button-container button {
    cursor: pointer;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    color: black;
    background-color: #f9dc00;
    font-size: 14px;
    font-weight: bold;
    /* font-family: "Quicksand", serif; */
    transition: 0.5s ease;
}

.button-container a {
    cursor: pointer;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    color: black;
    background-color: #f9dc00;
    font-size: 14px;
    font-weight: bold;
    /* font-family: "Quicksand", serif; */
    transition: 0.5s ease;
}

.button-container button:hover {
    background-color: #f9dc00;
    color: black;
    box-shadow: 0px 0px 2px 4px rgba(245, 245, 79, 0.7);
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Highlight Text */
#highlight {
    /* font-family: "Comic Neue", serif; */
    white-space: nowrap;
    /* Prevents line break */
    display: inline-block;
    padding: 5px;
    /* background-color: red; */
    border-radius: 10px;
    font-size: 60%;
}

/* Responsive Adjustments for Different Screens */

@media screen and (max-width: 768px) {}

/* Base styles */
.day-image,
.day-image-tr {
    box-sizing: border-box;
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.day-image img {
    object-fit: cover;
    border-radius: 10px;
    max-width: 100%;
    /* Ensure images don’t overflow */
    height: auto;
}

.day-image-tr img {
    object-fit: cover;
    border-radius: 10px;
    max-width: 22%;
    /* Ensure images don’t overflow */
    height: auto;
}

/* .day-image p {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: white;
    background-color: #e2241c;
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    font-family: "Quicksand", serif;
} */
.day-title {
    position: absolute;
    top: 20px;
    /* Adjust this value to move the title up or down */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
    text-align: center;
}

/* Decorative Line Styling */
.decorative-line {
    width: 50px;
    /* Adjust size as needed */
    height: auto;
    position: relative;
    /* So we can shift it */
    left: -128px;
    margin-bottom: -38px;
    /* Bring it closer to the text */
}

/* Title Paragraph Styling */
.day-title p {
    font-size: 30px;
    color: white;
    background-color: #e2241c;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    /* font-family: "Chelsea Market", serif; */
    margin-top: 10px;
    /* Remove default paragraph margin */
}

.day-title-training {
    position: absolute;
    top: 0px;
    /* Adjust this value to move the title up or down */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
    text-align: center;
}

/* Decorative Line Styling */
.decorative-line-training {
    width: 67px;
    height: auto;
    position: relative;
    left: -201px;
    top: -8px;
    /* margin-bottom: -67px; */
}

/* Title Paragraph Styling */
.day-title-training p {
    font-size: 30px;
    color: white;
    background-color: #e2241c;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    /* font-family: "Chelsea Market", serif; */
    margin-top: -42px;

    /* margin-left: 114px; */
}

/* Image container layout */
.day-section-images {
    display: flex;
    justify-content: center;
    /* Centers the content horizontally */
    align-items: center;
    /* Centers the content vertically */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    gap: 20px;
    width: 100%;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    overflow: hidden;
    /* Prevent overflow when images shrink */
    position: relative;
    /* Ensure absolute positioning works */
    margin-top: 80px;
}

/* Adjust spacing for large screens */
/* #day-image1,
#day-image4 {
    margin-top: 7%;
}

#day-image2,
#day-image3 {
    margin-top: 15%;
} */

#day-image1,
#day-image4 {
    margin-top: 2px;
    height: 410px;
    width: 298px;
}

#day-image2,
#day-image3 {
    margin-top: 150px;
    height: 262px;
    width: 233px;
}

.day-section-images-training {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Allows images to wrap */
    gap: 20px;
    margin-top: 80px;
    width: 100%;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.day-section-images-training img {
    /* max-width: 22%; */
    /* width: 100%; */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3sease-in-out;
    /* background-size: cover; */
}

/* Default Image Heights */
#day-t-image1,
#day-t-image4 {
    margin-top: 2px;
    height: 410px;
    width: 298px;
}

#day-t-image2,
#day-t-image3 {
    margin-top: 150px;
    height: 262px;
    width: 233px;
}

/* {
    margin-top: 9%;
    max-height: 378px;
} */

/* Responsive Design for Tablets */
@media (max-width: 1024px) {}

/* Responsive Design for Mobile Screens */
@media (max-width: 768px) {}

/* Extra Small Screens (Phones) */
/* @media (max-width: 480px) {
    .day-image p {
        font-size: 20px;
        padding: 10px;
        top: 40px;
    }
} */

/* .button-container {
    position: fixed;
    top: 73px;
    right: 90px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

.button-container button {
    z-index: 999;
    cursor: pointer;
    border: none;
    padding: 11px 15px;
    border-radius: 0px 0px 7px 7px;
    color: black;
    background-color: #f9dc00;
    font-size: 17px;
    font-weight: bold;
    font-family: "Quicksand", serif;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.button-container button span {
    display: block;
    line-height: 0.3;
}

#book-call:hover,
#download-B:hover {
    background-color: #f9dc00;
    color: rgb(0, 0, 0);
    box-shadow: 0px 0px 2px 4px rgba(245, 245, 79, 0.7);
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
} */

/* Base styles */
.dayinlife {
    width: 80%;
    max-width: 1100px;
    margin: 30px auto;
    padding: 40px 10px;
    display: flex;
    align-items: center;
    gap: 16%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    box-sizing: border-box;
    position: relative;
    border: 2px solid palevioletred;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    transition: 0.4s ease-in-out;
}

.dayinlife:hover {
    transform: scale(1.05);
}

/* Circular Image */
.image-circule {
    position: relative;
    width: 30%;
}

#circule-image-second {
    width: 100%;
    /* Make the image responsive */
    height: auto;
    z-index: 2;
}

/* Text Content */
.day_life {
    margin-top: -48px;
    font-size: 20px;
    /* font-family: "Chelsea Market", serif; */
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    text-align: justify;
}

.dayinlife p {
    max-width: 97%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 17px;
    line-height: 1.5;
    /* font-family: "Roboto", serif; */
}

/* ---------- Responsive Adjustments ---------- */

/* For Tablets (Below 1024px) */
@media (max-width: 1024px) {}

/* For Mobile Screens (Below 768px) */
@media (max-width: 768px) {}

/* Extra Small Screens (Below 480px) */
@media (max-width: 480px) {}

.videopart {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 181px;
}

.videopart img {
    width: 58%;
    height: 147%;
    object-fit: cover;
    position: absolute;
    border-radius: 50px 40px 40px 50px;
    padding: 20px 20px 20px 35px;
    top: 0;
    left: 0;
    z-index: 1;
}

.videopart .content {
    position: absolute;
    top: 30%;
    left: 53%;
    width: 475px;
    height: 80%;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
    background-color: #121040;
    box-sizing: border-box;
    border-radius: 10px;
}

.videopart h2 {
    /* font-family: "Roboto", serif; */
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.videopart p {
    /* font-family: "Roboto", serif; */
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    text-align: justify;
}

.videopart a button {
    background-color: white;
    color: rgb(242, 23, 23);
    padding: 10px 20px;
    margin-top: 4%;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.6s ease;
}

.videopart img {
    object-fit: fill;
    top: 9%;
    transition: transform 0.3s ease;
}

.content {
    transition: transform 0.3s ease;
}

.videopart img:hover,
.content:hover {
    transform: scale(1.1);
}

.content a button:hover {
    color: rgb(255, 255, 255);
    background-color: rgba(245, 167, 167, 1);
    box-shadow: 0px 0px 1px 3px rgba(245, 167, 167, 0.5);
}

.day-videopart {
    position: relative;
    width: 80%; /* You can adjust the width as per your design */
    max-width: 1200px; /* Max width to control the maximum size */
    height: 300px;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -20px; /* Reduce the gap between sections */
    padding-top: 0; /* Remove extra space */

    /* Center the day-videopart section horizontally and vertically */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 155px;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px; /* Optional: if you want rounded corners on the section */
}

/* Move image to the RIGHT */
.day-videopart img,  .day-videopart iframe{
    width: 58%;
    height: 119%;
    object-fit: cover;
    position: absolute;
    border-radius: 40px 50px 50px 40px;
    padding: 20px 35px 20px 20px;
    top: 14%;
    left: 44%;
    right: 0; /* Moved to right */
    z-index: 2;
}

/* Move content box to the LEFT */
.day-videopart .day-content {
    position: absolute;
    top: 37%;
    left: 2%;
    width: 55%;
    height: 80%;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 20px;
    background-color: red;
    box-sizing: border-box;
    border-radius: 10px;
}

.day-videopart h2 {
    /* font-family: "Roboto", serif; */
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.day-videopart p {
    /* font-family: "Roboto", serif; */
    font-size: 21px;
    margin-bottom: 15px;
    width: 90%;
    margin-top: 4%;
    color: #fff;
    width: 401px;
}
.day-content {
    display: flex;
    justify-content: left;
    align-items: center;
}

.day-videopart a button {
    background-color: white;
    color: rgb(242, 23, 23);
    padding: 10px 20px;
    margin-top: 5%;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.6s ease;
}

.day-content a button:hover {
    color: rgb(255, 255, 255);
    background-color: rgba(245, 167, 167, 1);
    box-shadow: 0px 0px 1px 3px rgba(245, 167, 167, 0.5);
}

/* ---------- Responsive Fixes ---------- */
@media (max-width: 1024px) {

    #day-t-image2,
    #day-t-image3 {
        margin-top: 103px;
        height: 179px;
        width: 162px;
        border-radius: 6px;
    }

    #day-t-image1,
    #day-t-image4 {
        margin-top: 0;
        height: 284px;
        border-radius: 6px;
    }

    .videopart {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .videopart img {
        width: 70%;
        height: auto;
        position: relative;
        right: auto;
        top: auto;
        padding: 0;
    }

    .videopart .content {
        max-width: 80%;
        position: relative;
        left: auto;
        top: auto;
    }
}

/* Base styles */
.download {
    padding: 0px 20px 20px 20px;
    text-align: center;
    font-size: 25px;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -30px;
}

/* .download {
    background-image: url("../images/Vector3.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
    z-index: 2;
} */

.gif_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 800px;
    padding: 0px;
    margin-bottom: -41px;
}

.finish-gif {
    margin-left: 170px;
    margin-bottom: -60px;
}

.cap-img {
    margin-top: 28px;
    margin-left: 85px;
    margin-bottom: -69px;
}

.download h3 {
    /* font-family: "Chelsea Market", serif; */
    font-size: 35px;
}

.download p {
    /* font-family: "Inter", serif; */
    display: inline-block;
    max-width: 41%;
    padding: 20px 20px 0px 20px;
}

.download img {
    /* display: inline-block; */
    margin-left: -569px;
    margin-bottom: -32px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {}

/* Extra small screens (e.g., phones) */
@media (max-width: 480px) {}

/* Contact form styles */
.contact {
    padding: 30px 30px 0px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.formdetails {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8),
            rgba(245, 167, 167, 1));
    padding: 40px;
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 47px;
    align-items: center;
    border-radius: 8px;
    width: 40%;
    max-width: 800px;
    /* Added max-width for better layout control */
}

.form-group {
    display: flex;
    flex-direction: column;
    font-size: 25px;
}

label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 5px 10px;
    margin-bottom: 10px;
    width: 100%;
    /* Full width for inputs */
    border: none;
    border-bottom: 2px solid #000;
    background: transparent;
    outline: none;
}

#submit-button {
    width: 50%;
    font-size: 18px;
    grid-column: span 2;
    padding: 10px;
    background-color: #f70202;
    color: white;
    border: none;
    cursor: pointer;
    justify-self: center;
    align-self: center;
    border-radius: 7px;
    transition: 0.9s ease;
    box-shadow: 0px 4px 8px rgba(240, 59, 59, 1);
}

.swal-btn-red {
    background-color: red !important;
    border-color: red !important;
    color: white !important;
}

#submit-button:hover,
.book button:hover,
#training-call:hover {
    background-color: white;
    color: #f70202;
    text-shadow: 2px 2px 5px rgba(244, 71, 71, 0.8);
}

.book {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8),
            rgba(245, 167, 167, 1));
    padding: 35px;
    width: 100%;
    max-width: 400px;
    /* Add max-width for better layout control */
    border-radius: 10px;
    margin-left: 3%;
    display: flex;
    flex-direction: column;
    height: auto;
    font-size: 22px;

    /* margin-top: 10px; */
}

.book button {
    cursor: pointer;
    background-color: red;
    border-radius: 6px;
    border: none;
    color: white;
    padding: 10px;
    width: auto;
    margin: auto auto 0 auto;
    transition: 0.9s ease;
    box-shadow: 0px 4px 8px rgba(240, 59, 59, 1);
    font-size: 17px;
}

.book {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.phone {
    width: 28%;
    max-width: 120px;
    margin: 20px auto 20px auto;
    object-fit: contain;
    /* Ensure image is resized properly */
}

.small-img-formside {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive styles for mobile and smaller screens */

/* For tablets and below (screens smaller than 1024px) */
@media screen and (max-width: 1024px) {}

/* For mobile devices (screens smaller than 768px) */
@media screen and (max-width: 768px) {}

/* For very small screens (below 480px) */
@media screen and (max-width: 480px) {}

.footer-circle {
    position: relative;
    height: 151px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
    overflow: hidden;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.circle-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#firt-circle {
    margin-right: 40px;
    width: 100px;
    height: 100px;
    background-color: #63d66e;
    border-radius: 15px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

#second-circle {
    width: 90px;
    height: 90px;
    background-color: #fe7667;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: -20px;
    z-index: 3;
    opacity: 0.75;
}

#third-circle {
    width: 50px;
    height: 50px;
    background-color: #766bef;
    border-radius: 50%;
    position: absolute;
    top: 100px;
    right: -15px;
    z-index: 2;
}

/* Responsive Design for Devices 768px and Below */
@media (max-width: 768px) {}

/* footer part */

footer {
    background-color: #2c2d68;
    color: white;
    padding: 90px 5% 50px 5%;
    /* font-family: "Roboto", serif; */
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

/* Grid Layout for the Footer */
.info-footer {
    display: flex;
    padding: 40px 10px;
    /* justify-content: space-between; */
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 137px;
}

.footer-links {
    display: flex;
    gap: 169px;
    flex-wrap: wrap;
}

.links1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links span {
    /* min-width: 200px; */
    line-height: 1;
    margin: 0;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Footer download section */
/* Footer download section */
.footer-download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-download h1 {
    margin: 0;
    font-size: 55px;
    flex: 0 1 auto;
}

#download-button {
    cursor: pointer;
    padding: 15px 27px;
    border: solid white;
    border-radius: 7px;
    background-color: rgb(44, 45, 104);
    color: white;
    flex: 0 1 auto;
    transition: 0.8s ease;
}

#download-button:hover {
    color: rgb(38, 31, 163);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 8px 4px rgba(255, 255, 255, 0.5);
    text-shadow: 2px 2px 5px rgb(38, 31, 163, 0.8);
}

/* Social media icons */

.social-links {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
    /* gap: 15px; */
}

.social-links p {
    /* padding: 10px; */
    font-size: 16px;
    /* margin-bottom: 10px; */
    margin-left: 11px;
}

.social-links a {
    /* display: inline-block; */
    font-size: 15px;
    color: white;
    /* margin-top: 15px; */
    padding: 10px;
    /* margin-left: 20px; */
    text-decoration: none;
}

.links {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    /* align-items: center; */
    /* margin-left: 72%; */
}

.links a {
    transition: transform 0.4s ease-in-out;
}

.links a:hover {
    transform: scale(1.4);
}

/* .social-links { */
/* display: flex; */
/* justify-content: center; */
/* flex-wrap: wrap; */
/* gap: 15px; */
/* } */

.links-getapp {
    display: flex;
    gap: 137px;
}

.get-app {
    width: 99px;
    height: auto;
    gap: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* .get-app p {
    margin-bottom: 4px;
} */

/* .get-app img {
    margin-top: -4px;
    max-width: 250px;
    max-height: 100px;
    display: inline-block;
} */

/* Footer Info section */
.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-downside span {
    font-size: 18px;
    margin-right: 10px;
    gap: 20px;
}

.footer-info span {
    font-size: 14px;
}

footer hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {}

/* for home blade  */
.second-part {
    width: 103%;
    height: auto;
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px 0;
}

/* Common Styles for both Content Sections */
.first-content,
.second-content {
    border: solid rgb(244, 158, 158);
    width: 84%;
    max-width: 1200px;
    /* max-width: 2000px; */
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    align-items: center;
    transition: 0.4s ease-in-out;
}

/* Images */
.first-content img,
.second-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 10px;
    border-radius: 33px;
    flex-shrink: 0;
}

/* Text Content */
#first-content-div,
#second-content-div {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 5px;
}

#first-content-div h3,
#second-content-div h3 {
    text-align: start;
    font-size: clamp(20px, 3vw, 28px);
    /* Scales dynamically */
    margin-bottom: 10px;
}

#first-content-div p,
#second-content-div p {
    text-align: start;
    /* font-size: clamp(14px, 2vw, 18px); */
    line-height: 1.6;
    /* font-family: "Chelsea Market", serif; */

    /* padding: 10px; */
}

#first-content-div-abstract-line {
    position: absolute;
    margin-left: -27px;
    margin-top: -65px;
    width: 3%;
    height: 13%;
}

.first-content:hover,
.second-content:hover {
    transform: scale(1.05);
}

/* .second-content {
    display: none;
} */

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {}

/* for OUR GALLERY */
.yourgallery {
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap onto new rows */
    /* padding: 30px; */
    justify-content: center;
    width: 90%;
    margin: auto;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -90px;
    transition: transform 0.3s ease-in-out, background-image 0.3s ease-in-out;
}

/* .yourgallery:hover {
    transform: scale(1.05);
    background-image: url("../images/Vector3.svg");
} */

/* Image Styling */
.yourgallery img {
    width: auto;
    /* Let images maintain their natural width */
    height: auto;
    /* Let images maintain their natural height */
    max-width: 23%;
    /* Ensure images fit in 4 columns */
    margin-bottom: -48px;
    /* Reduced margin between rows */
    margin-right: 2%;
    /* Reduced margin between columns */
    object-fit: contain;
    /* Ensures images fit within their box without distortion */
    transition: 0.3s ease;
    border-radius: 5px;
}

/* Hover Effect */
.yourgallery img:hover {
    transform: scale(1.05);
}

/* Centering the Heading */
.yourgallery h1 {
    text-align: center;
    width: 100%;
    font-size: 35px;
    margin-bottom: 10px;
    margin-top: 70px;
}

#abstract-line-gallery {
    position: absolute;
    margin-left: -180px;
    margin-top: 52px;
}

.yourgallery-images1 {
    /* margin-top: 100px; */
    display: flex;
    flex-direction: row;
}

.yourgallery-images2 {
    /* margin-top: 20px; */
    display: flex;
    flex-direction: row;
}

.gif_gallery {
    /* width: 100%;  */
    /* margin-top: -51px; */
    margin-left: 470px;
    margin-bottom: -122px;
}

#image6,
#image8 {
    margin-bottom: 90px;
}

#image1,
#image3 {
    margin-top: 90px;
}

#image5,
#image7 {
    margin-bottom: 30px;
}

.image-popup {
    display: none;
}

@media (min-width: 481px) {
    .image-popup {
        display: none !important;
        /* Ensure it doesn't show on large screens */
    }
}

/* Responsive Design */

@media screen and (max-width: 768px) {}

/* #second-content-div p,
h3 {
    padding: 20px;
} */

/* .small-img-formside {
    display: none;
} */
.home-third-part {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
    /* Prevent overflow of child elements */
}

.background-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 100vh;
    /* Limit the height of background image */
}

.inside-image-home {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allow images to wrap on smaller screens */
    padding: 10px;
}

.inside-image-home img {
    width: 100%;
    /* max-width: 250px;  */
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Add hover effect for image scaling (optional) */
.inside-image-home img:hover {
    transform: scale(1.05);
}

.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    background-color: #000;
    padding: 0;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 90vh;
    width: 80vw;
    height: 80vh;
}

.popup-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.close-popup {
    position: absolute;
    top: -35px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

/* .video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    position: relative;
    background-color: #000;
    padding: 10px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
}

.popup-content iframe {
    width: 100%;
    height: 450px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 24px;
    cursor: pointer;
} */
.video-section-heading {
    position: absolute;
    top: 5%;
    /* Adjust as needed */
    z-index: 1;
}

.video-section-heading h2 {
    top: 5%;
    /* Adjust as needed */
    padding: 20px 35px;
    border-radius: 20px;
    background-color: #ef3340;
    color: white;
    /* font-family: "Chelsea Market", serif; */
    z-index: 1;
}

.video-section-heading img {
    width: 18%;
    height: auto;
    margin-left: -40px;
    margin-top: -42px;
}

/* RESPONSIVE DESIGN */

/* For tablets and below (screens smaller than 1024px) */

@media screen and (max-width: 1024px) {}

/* For mobile devices (screens smaller than 768px) */
@media screen and (max-width: 768px) {}

/* For very small screens (below 480px) */
@media screen and (max-width: 480px) {}

/* .inside-image-home .top-left {
    top: 10%;
    left: 20%;
}

.inside-image-home .top-right {
    top: 10%;
    right: 20%;
}

.inside-image-home .bottom-center {
    top: 10%;
    left: 50%;
} */
/* .inside-image-home .inside-image {
    max-height: 25%;
    bottom: 28%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px;
    z-index: 1;
} */

/* find page css  */
.find-second-section {
    width: 100%;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 13%; */
    flex-wrap: nowrap;
    /* Allows wrapping on smaller screens */
    box-sizing: border-box;
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* .indside-second-section {
    margin-top: 25px;
} */

/* Image Styling - Reduced Size */
.find-second-section img {
    width: 64%;
    /* Reduced width */
    height: auto;
    max-width: 100%;
    transition: 0.4s ease-in-out;
}

.find-second-section img:hover {
    transform: scale(1.05);
}

/* Header section */
/* .find-header {
    text-align: center;
} */
.find-header h1 {
    display: inline-block;
    /* margin-left: 20px; */
    text-align: center;
    height: 100px;
    font-size: 30px;
}

/* Numbers section */
.numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
    column-gap: 0px;
    text-align: center;
    /* padding: 10px; */
}

/* Grid item styles */
.numbers p {
    width: 60%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 0 0 20px 20px;
    color: white;
    background: linear-gradient(180deg, #ffffff 0%, #ef3340 268.29%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    color: black;
}

/* Number colors */
.numbers span {
    color: #e2241c;
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 768px) {}

@media (max-width: 480px) {}

/* training part  */
.secondimage {
    background-image: url("../images/Group.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.training-dayinlife-container {
    width: 84%;
    max-width: 1200px;
    /* Limit the maximum width */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Optional: Add some padding on smaller screens */
    border: solid rgb(244, 158, 158);
    border-radius: 10px;
    margin-top: 49px;
}

.training-dayinlife {
    padding: 0%;
    margin-top: 27px;
    margin-bottom: 38px;
    width: 100%;
    height: auto;
    /* Let height adjust based on content */
    display: flex;
    justify-content: space-between;
    /* Distribute space between text and image */
    align-items: center;
    /* Align items vertically */
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    gap: 20px;
    /* Add some space between text and image */
    background-image: url("../images/Group.svg");
}

.training-day_life {
    flex: 1;
    /* Allow the text section to take up available space */
    /* margin-top: -48px; */
    font-size: 20px;
    /* font-family: "Roboto", serif; */
}

.training-day_life p {
    max-width: 90%;
    margin: 10px 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 17px;
    line-height: 1.6;
    /* font-family: "Roboto", serif; */
    text-align: justify;
}

#training-call {
    margin: 15px 0 0 0px;
    border: none;
    border-radius: 12px;
    padding: 17px 25px;
    background: #ef3340;
    color: white;
    transition: 0.7s ease;
    font-size: 20px;
    cursor: pointer;
}

#training-call:hover {
    /* color: rgba(245, 167, 167, 1); */
    color: #f70202;
    background-color: rgb(255, 255, 255);
    border: 2px solid rgba(245, 167, 167, 1);
    border-radius: 12px;
}

.training-dayinlife img {
    flex: 1.5;
    /* Increase image size relative to text */
    width: 100%;
    /* Ensure the image stretches fully within its container */
    height: auto;
    /* Maintain aspect ratio */
    max-width: 600px;
    /* Optional: Limit the maximum size */
    transition: transform 0.3s ease-in-out;
    /* Smooth scaling effect */
}

.training-dayinlife img:hover {
    transform: scale(1.05);
    /* Optional: Slight zoom on hover */
}

.responsive-iframe {
    width: 51%;
    height: 290px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-iframe:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

.responsive-iframe-day {
    width: 130%;
    margin-left: 25px;
    height: 290px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-iframe-day:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

#home-track1,
#home-track2,
#home-track3 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#home-track1:hover,
#home-track2:hover,
#home-track3:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

#traning-iframe1 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#traning-iframe1:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

#training-iframe2 {
    width: 47%;
    margin-left: 25px;
    height: 290px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#training-iframe2:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

#franchisees,
#countries,
#clients,
#turnover,
#day-image1,
#day-image2,
#day-image3,
#day-image4,
#day-t-image1,
#day-t-image2,
#day-t-image3,
#day-t-image4,
.phone,
#day-videos,
.book,
.formdetails,
.training-dayinlife-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#franchisees:hover,
#turnover:hover,
#countries:hover,
#clients:hover,
#day-image1:hover,
#day-image2:hover,
#day-image3:hover,
#day-image4:hover,
.phone:hover,
#day-videos:hover,
.book:hover,
.formdetails:hover,
#day-t-image1:hover,
#day-t-image2:hover,
#day-t-image3:hover,
#day-t-image4:hover,
.training-dayinlife-container:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

@media screen and (max-width: 768px) {}

@media (min-width: 1800px) {
    #day-t-image3 {
        margin-top: 8%;
        max-height: 354px;
    }

    #day-t-image2 {
        margin-top: 8%;
        max-height: 354px;
    }
}

@media (min-width: 1200px) {
    .button-wrapper {
        right: calc(50% - 600px);
        /* (1200px / 2) to center the wrapper */
    }
}

@media screen and (max-width: 1250px) {

    #day-image1,
    #day-image4 {
        margin-top: 2px;
        width: 238px;
        height: 392px;
    }

    #day-image2,
    #day-image3 {
        margin-top: 150px;
        width: 235px;
        height: 259px;
    }

    .day-title p {
        margin-top: 0px;
    }

    .decorative-line {
        margin-bottom: -32px;
    }
}

@media screen and (max-width: 1055px) {

    /* .footer-links {
        gap: 75px;
    } */
    .info-footer {
        gap: 51px;
    }

    .links-getapp {
        gap: 53px;
    }
}

@media screen and (max-width: 1024px) {
    .finish-gif {
        margin-top: 42px;
        margin-left: 221px;
        margin-bottom: -106px;
    }

    .training-day_life {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 12px;
    }

    .training-dayinlife-container {
        width: 84%;
    }

    .imgday p {
        font-size: clamp(18px, 5vw, 65px);
    }

    .button-container {
        /* top: 15px;
        right: 15px; */
        position: fixed;
        top: 87px;
        right: 18px;
        display: flex;
        z-index: 999;
        gap: 7px;
    }

    .formdetails {
        /* grid-template-columns: 1fr; */
        /* Stack the form fields vertically on smaller screens */
    }

    .book {
        width: 100%;
        /* Book section takes full width on smaller screens */
        margin-left: 0;
        margin-top: 20px;
    }

    .phone {
        width: 60%;
        max-width: 100px;
        /* Adjust phone image size for medium screens */
        margin-top: 20px;
    }

    .get-app {
        width: 99px;
        height: auto;
        gap: 10px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .info-footer {
        display: flex;
        padding: 40px 10px;
        /* justify-content: space-between; */
        /* align-items: center; */
        flex-wrap: wrap;
        gap: 65px;
    }

    .footer-links {
        display: flex;
        gap: 65px;
        flex-wrap: wrap;
        /* gap: 95px; */
    }

    .get-app p {
        font-size: 16px;
        width: 97px;
    }

    .home-third-part {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        overflow: hidden;
        /* Prevent overflow of child elements */
    }

    .background-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 100vh;
        /* Limit the height of background image */
    }

    .inside-image-home {
        position: absolute;
        top: 32px;
        left: 120px;
        width: 72%;
        height: 100%;
        display: flex;
        gap: 88px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        /* Allow images to wrap on smaller screens */
        padding: 10px;
    }

    .inside-image-home iframe {
        width: 40%;
        /* max-width: 250px;  */
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

    /* Add hover effect for image scaling (optional) */
    .inside-image-home img:hover {
        transform: scale(1.05);
    }

    #home-track1,
    #home-track2,
    #home-track3 {
        max-width: 175px;
        height: 160px;
    }

    .download p {
        max-width: 66%;
    }

    .gif_container {
        gap: 500px;
    }

    #submit-button {
        width: 80%;
    }

    .video-section-heading {
        position: absolute;
        top: 5%;
        /* Adjust as needed */
        z-index: 1;
    }

    .video-section-heading h2 {
        top: 5%;
        /* Adjust as needed */
        padding: 15px;
        border-radius: 20px;
        background-color: #ef3340;
        color: white;
        /* font-family: "Chelsea Market", serif; */
        z-index: 1;
    }

    .video-section-heading img {
        /* width: 18%; */
        height: auto;
        /* margin-left: -40px; */
        /* margin-top: -42px; */
    }

    /* .day-image p {
        font-size: 30px;
        padding: 15px;
        top: 60px;
    }

    .day-section-images {
        gap: 20px;
    }

    #day-image1,
    #day-image4,
    #day-image2,
    #day-image3 {
        margin-top: 5%;
    } */
    .day-section-images {
        margin-top: 74px;
        display: flex;
        flex-wrap: nowrap;
        gap: 18px;
        width: 100%;
    }

    .day-section-images img {
        max-width: 20%;
        /* Make images responsive */
        height: auto;
    }

    .day-title p {
        margin-top: -65px;
        padding: 15px;
        font-size: 22px;
    }

    .day-title-training p {
        margin-top: -36px;
        /* padding: 8px; */
        font-size: 18px;
    }

    .decorative-line {
        width: 50px;
        /* height: auto; */
        position: relative;
        left: -93px;
        top: -24px;
        margin-bottom: 26px;
    }

    .decorative-line-training {
        left: -133px;
        top: -5px;
        /* margin-bottom: -1px; */
    }

    #day-image1 {
        margin-top: 0;
        height: 284px;
        border-radius: 6px;
    }

    #day-image2 {
        margin-top: 110px;
        height: 179px;
        width: 162px;
        border-radius: 6px;
    }

    #day-image3 {
        margin-top: 110px;
        height: 179px;
        width: 140px;
        border-radius: 6px;
    }

    #day-image4 {
        margin-top: 0;
        width: 196px;
        height: 284px;
        border-radius: 6px;
    }

    .dayinlife {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px;
        width: 90%;
    }

    .responsive-iframe-day {
        margin-left: -45px;
    }

    .image-circule {
        width: 40%;
    }

    .day_life {
        margin-top: 0px;
        text-align: center;
        font-size: 18px;
    }

    .dayinlife p {
        font-size: 16px;
        text-align: justify;
    }

    .day-videopart p {
        max-width: 255px;
    }

    .numbers p {
        width: 87%;
    }
}

@media screen and (max-width: 768px) {
    .yourgallery {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .download {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .contact {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .footer-circle {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .day-section-images {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .secondimage {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .videopart {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .day-section-images-training {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
        gap: 12px;
        margin-top: 50px;
    }

    .find-second-section {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 15px;
    }

    .day-videopart {
        background-image: url("../images/Group.svg");
        /* Only keep this one */
        background-size: cover;
        /* Or whatever size you need */
        background-repeat: no-repeat;
        background-position: center;
    }

    .vector-img {
        display: none;
    }

    .responsive-iframe-day {
        width: 163%;
        margin-left: -107px;
    }

    .responsive-iframe {
        height: 139px;
    }

    .dayinlife {
        gap: 10%;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #f8f9fa;
        width: 100%;
        text-align: center;
        flex-direction: column;
        display: none;
        padding: 10px 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu ul li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
        margin-top: -13px;
        font-size: 22px;
        z-index: 1001;
    }

    /* Show Menu When Active */
    .nav-menu.active {
        display: flex;
    }

    body {
        max-width: 100%;
        max-height: 100%;
        overflow-x: hidden;
    }

    .imgday {
        height: 40vh;
        /* Shorter height on mobile */
    }

    .imgday p {
        /* font-size: clamp(16px, 5.5vw, 50px); */
        font-size: 20px;
        /* margin-top: 47px; */
    }

    .button-container {
        /* top: 20px;
        right: 20px; */
        /* flex-direction: column; */

        position: fixed;
        top: 91px;
        right: -17px;
        display: flex;
        z-index: 2;
        gap: 4px;
    }

    .button-container button {
        cursor: pointer;
        border: none;
        padding: 7px 10px;
        border-radius: 2px;
        color: black;
        background-color: #f9dc00;
        font-size: 7px;
        font-weight: semibold;
        /* font-family: "Quicksand", serif; */
        transition: 0.5s ease;
    }

    /* .button-container button {
        font-size: 3vw;
        padding: 8px;
    } */

    .formdetails {
        padding: 20px;
        gap: 34px;
    }

    .form-group {
        width: 90%;
        font-size: 19px;
    }

    .book {
        width: 46%;
        margin-left: 0;
        padding: 30px 30px 27px 30px;
        margin-top: 0px;
    }

    .book p {
        font-size: 16px;
    }

    .book button {
        width: auto;
        font-size: 14px;
        /* Increase the size of the button on small screens */
    }

    .phone {
        width: 26%;
        /* Adjust phone image size on mobile */
        max-width: 90px;
    }

    .contact {
        padding: 20px;
    }

    #submit-button {
        width: 79%;
        font-size: 14px;
    }

    #first-content-div h3,
    #second-content-div h3 {
        font-size: 18px;
    }

    #first-content-div p,
    #second-content-div p {
        font-size: 10px;
    }

    .first-content iframe,
    .second-content iframe {
        max-width: 250px;
    }

    .yourgallery {
        display: flex;
        flex-wrap: wrap;
        /* Allow items to wrap onto new rows */
        /* padding: 30px; */
        /* justify-content: center; */
        width: 70%;
    }

    .yourgallery h1 {
        font-size: 25px;
    }

    #abstract-line-gallery {
        position: absolute;
        margin-left: -130px;
        margin-top: 61px;
        width: 26px;
    }

    .yourgallery-images1 {
        margin-bottom: 25px;
    }

    #image6,
    #image8 {
        margin-bottom: 30px;
    }

    #image1,
    #image3 {
        margin-top: 50px;
    }

    #image5,
    #image7 {
        margin-bottom: 10px;
    }

    .yourgallery-images2 {
        margin-bottom: 42px;
    }

    .home-third-part {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        overflow: hidden;
        /* Prevent overflow of child elements */
    }

    .background-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 100vh;
        /* Limit the height of background image */
    }

    .inside-image-home {
        position: absolute;
        top: 0;
        left: 90px;
        width: 72%;
        height: 100%;
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        /* Allow images to wrap on smaller screens */
        padding: 10px;
    }

    .inside-image-home iframe {
        width: 40%;
        /* max-width: 250px;  */
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

    /* Add hover effect for image scaling (optional) */
    .inside-image-home img:hover {
        transform: scale(1.05);
    }

    .video-section-heading {
        position: absolute;
        top: 5%;
        /* Adjust as needed */
        z-index: 1;
    }

    .video-section-heading h2 {
        top: 5%;
        /* Adjust as needed */
        padding: 10px;
        border-radius: 20px;
        background-color: #ef3340;
        color: white;
        /* font-family: "Chelsea Market", serif; */
        z-index: 1;
    }

    .video-section-heading img {
        width: 10%;
        height: auto;
        margin-left: -29px;
        margin-top: -18px;
    }

    .training-dayinlife {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        /* Stack content vertically */
        align-items: center;
        /* Center the content horizontally */
        padding: 20px;
        /* Add some padding for better spacing */
    }

    #training-iframe2 {
        height: 159px;
    }

    .videopart {
        margin-bottom: 33px;
    }

    .training-day_life {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Center the text */
        margin-bottom: 20px;
        /* Add space between text and video */
        margin-top: 12px;
    }

    .training-day_life h1 {
        font-size: 1.5rem;
        /* Adjust heading size */
        margin-bottom: 10px;
        /* Add space below the heading */
    }

    .training-day_life p {
        font-size: 1rem;
        /* Adjust paragraph size */
        margin-bottom: 15px;
        /* Add space below the paragraph */
    }

    .training-day_life h4 {
        font-size: 1.2rem;
        /* Adjust subheading size */
        margin-bottom: 20px;
        /* Add space below the subheading */
    }

    #training-call {
        padding: 12px 20px;
        /* Adjust button padding */
        font-size: 1rem;
        /* Adjust font size of the button */
    }

    iframe {
        width: 100%;
        /* Make the iframe responsive */
        max-width: 560px;
        /* Set a max-width to prevent it from growing too large */
        height: 315px;
        /* Maintain the height ratio */
        border: none;
        /* Remove the border from the iframe */
    }

    .day-section-images {
        margin-top: 50px;
        display: flex;
        flex-wrap: nowrap;
        gap: 13px;
    }

    .day-section-images img {
        max-width: 22%;
        /* Make images responsive */
        height: auto;
    }

    .day-title p {
        margin-top: -70px;
        /* padding: 8px; */
        font-size: 19px;
    }

    .day-title-training p {
        margin-top: -32px;
        /* padding: 8px; */
        margin-left: 61px;
        font-size: 12px;
        border-radius: 7px;
    }

    .day-title-training {
        left: 47%;
    }

    .decorative-line {
        width: 50px;
        height: auto;
        position: relative;
        left: -86px;
        margin-bottom: 26px;
    }

    .decorative-line-training {
        left: -63px;
        margin-bottom: -4px;
    }

    #day-image1 {
        margin-top: 0;
        height: 191px;
        width: 146px;
        border-radius: 4px;
    }

    #day-image2 {
        margin-top: 70px;
        height: 117px;
        width: 100px;
        /* border-radius: 4px; */
    }

    #day-image3 {
        margin-top: 70px;
        height: 117px;
        width: 100px;
        /* border-radius: 4px; */
    }

    #day-image4 {
        margin-top: 0;
        height: 191px;
        width: 146px;
        /* border-radius: 4px; */
    }

    .dayinlife {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 95%;
    }

    .image-circule {
        width: 50%;
    }

    .day_life h1 {
        font-size: 22px;
    }

    .dayinlife p {
        font-size: 15px;
        text-align: justify;
    }

    #day-t-image1,
    #day-t-image4 {
        margin-top: 0;
        height: 191px;
        width: 146px;
        border-radius: 4px;
    }

    #day-t-image2,
    #day-t-image3 {
        margin-top: 70px;
        height: 117px;
        width: 100px;
    }

    .download {
        padding: 0px 15px 15px 15px;
        font-size: 15px;
    }

    .finish-gif {
        margin-left: 120px;
        margin-bottom: -101px;
    }

    .gif_container {
        gap: 390px;
    }

    .gif img {
        width: 40px;
    }

    .cap-img {
        margin-top: 25px;
        margin-left: 85px;
        margin-bottom: -61px;
    }

    .download h3 {
        font-size: 22px;
        /* Adjust h3 size for mobile */
    }

    .download p {
        max-width: 60%;
        /* Allow text to take up more space on smaller screens */
        font-size: 18px;
        /* Adjust font size for readability */
        padding: 15px 15px 0px 15px;
    }

    .download img {
        /* display: inline-block; */
        margin-left: -355px;
        margin-bottom: -21px;
        width: 25px;
    }

    .footer-circle {
        height: 100px;
        /* Reduced height for smaller screens */
    }

    #firt-circle {
        width: 54px;
        height: 52px;
        margin-right: 20px;
    }

    #second-circle {
        width: 53px;
        height: 49px;
        top: 25px;
        right: -10px;
    }

    #third-circle {
        width: 47px;
        height: 45px;
        top: 56px;
        right: -10px;
    }

    .footer-download h1 {
        margin: 0;
        font-size: 19px;
        flex: 0 1 auto;
    }

    #download-button {
        /* cursor: pointer; */
        padding: 4px 4px;
        border: solid white 1.5px;
        border-radius: 5px;
        font-size: 11px;
        /* border-radius: 7px; */
        /* background-color: rgb(44, 45, 104); */
        /* color: white; */
        /* flex: 0 1 auto; */
        /* transition: 0.8sease; */
    }

    footer {
        padding: 40px 5% 9px 5%;
    }

    .info-footer {
        padding: 20px 5px;
        gap: 35px;
    }

    .links-getapp {
        gap: 39px;
    }

    .footer-links a {
        font-size: 10px;
    }

    .social-links p {
        font-size: 10px;
    }

    .social-links a {
        font-size: 11px;
        padding: 9px;
    }

    .get-app {
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
        gap: 10px;
        width: 69px;
        /* margin-top: 12px; */
        /* width: 100%; */
        /* margin-left: 0; */
        /* margin-right: 0; */
    }

    .get-app p {
        font-size: 10px;
        width: 97px;
    }

    .get-app img {
        width: 63px;
    }

    .footer-links {
        gap: 40px;
    }

    .links1 {
        gap: 10px;
    }

    .links2 {
        gap: 10px;
    }

    .footer-info {
        padding: 2px;
    }

    .footer-info p {
        font-size: 10px;
    }

    .footer-downside span {
        font-size: 9px;
    }

    .footer-links {
        /* display: flex; */
        gap: 40px;
        /* flex-wrap: wrap; */
    }

    .numbers p {
        width: 70%;
        font-size: 9px;
        border-radius: 0 0 10px 10px;
    }

    .find-second-section img {
        width: 54%;
    }

    .find-header h1 {
        height: 48px;
        font-size: 20px;
    }

    .numbers {
        row-gap: 10px;
    }

    .numbers span {
        font-size: 13px;
    }
}

@media screen and (max-width: 540px) {
    .footer-links {
        gap: 21px;
    }

    .info-footer {
        gap: 19px;
    }

    .links-getapp {
        gap: 17px;
    }
}

@media (max-width: 430px) {
    .responsive-iframe-day-b {
        width: 110%;
        margin-left: -62px;
    }
}

@media screen and (max-width: 412px) {
    .image-circule {
        width: 77%;
        margin-left: 0px !important;
    }

    .responsive-iframe-day {
        width: 200% !important;
        margin-left: -1px !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        max-width: 100%;
        max-height: 100%;
        overflow-x: hidden;
    }

    .nav-menu {
        top: 37px;
        padding: 0px;
    }

    header {
        padding: 0px 20px;
    }

    header img {
        width: 61px;
    }

    #home-paragraph {
        /* font-size: clamp(12px, 6vw, 1px); */
        /* margin-top: 6px; */
        font-size: 21px;
        /* margin-top: 65px; */
        width: 100%;
    }

    /* .imgday video {
        margin-top: -34px;
    }
    .imgday img {
        margin-top: -34px;
    } */
    #imgday-home {
        margin-top: 10px;
        position: relative;
        width: 100%;
        height: 30vh;
        /* Adjust this value (e.g., 50vh, 400px) */
        overflow: hidden;
        /* Ensures video stays within bounds */
    }

    .imgday video {
        width: 100%;
        height: 100%;
        /* Fills the container height */
        object-fit: cover;
        /* Crop video to fit container */
    }

    #find-p {
        top: 58%;
    }

    #imgday-find {
        margin-top: 38px;
        position: relative;
        width: 100%;
        height: 24vh;
        overflow: hidden;
    }

    .button-container {
        top: 41px;
        right: -27px;
    }

    .button-container button {
        padding: 3px;
        font-size: 8px;
    }

    .responsive-iframe {
        width: 90%;
        /* Reduce width to 90% of the screen */
        height: auto;
        /* Adjust height proportionally */
    }

    .video-section-heading h2 {
        padding: 7px;
        border-radius: 10px;
        margin-top: -10px;
    }

    /* .inside-image-home {
        position: absolute;
        top: -10px;
        left: 23px;
        width: 83%;
        height: 98%;
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        padding: 10px;
    } */
    /* .image-circule iframe {
        display: flex;
        flex-wrap: wrap;
        width: 180px; 
        height: 150px; 
        margin-left: -5px;
    } */

    body,
    html {
        overflow-x: hidden;
        margin: 0;
        /* Remove any default margin */
        padding: 0;
        /* Remove any default padding */
    }

    .formdetails {
        padding: 15px;
        margin-left: -1px;
        gap: 2px;
        padding-right: 0px;
        padding-left: 30px;
    }

    input[type="text"],
    input[type="email"],
    textarea {
        width: 84%;
        padding: 0px 10px;
    }

    .form-group {
        margin-bottom: 15px;
        /* Increase margin between form fields */
    }

    .book {
        width: 100%;
        padding: 15px;
        margin-top: 20px;
        max-width: 444px;
        /* margin-left: 20px; */
    }

    .book button {
        width: auto;
        /* Book button takes larger width on very small screens */
        font-size: 13px;
    }

    .phone {
        width: 80%;
        max-width: 80px;
        /* Resize phone image further for very small screens */
    }

    .contact {
        padding: 15px;
    }

    /* Stack formdetails and book vertically on very small screens */
    .contact {
        display: block;
    }

    .formdetails,
    .book {
        width: 100%;
        margin-bottom: 20px;
    }

    #submit-button {
        width: 60%;
        margin-left: -27px;
    }

    body,
    html {
        overflow-x: hidden;
        margin: 0;
        /* Remove any default margin */
        padding: 0;
        /* Remove any default padding */
    }

    .first-content,
    .second-content {
        padding: 10px;
        gap: 3px;
        flex-direction: column;
        justify-content: center;
        margin-right: 35px;
    }

    .first-content img,
    .second-content img {
        max-width: 220px;
    }

    body,
    html {
        overflow-x: hidden;
        margin: 0;
        /* Remove any default margin */
        padding: 0;
        /* Remove any default padding */
    }

    #first-content-div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #second-content-div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .inside-image-home {
        top: 84px;
        left: 8px;
        bottom: 60px;
        width: 77%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    .inside-image-home iframe {
        height: auto;
        max-width: 120px;
        border-radius: 4px;
        cursor: pointer;
    }

    /* Popup Modal Styles */
    /* .video-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .popup-content {
        position: relative;
        background-color: #000;
        padding: 10px;
        border-radius: 8px;
        width: 90%;
        max-width: 800px;
    }

    .popup-content iframe {
        width: 100%;
        height: 450px;
    }

    .close-popup {
        position: absolute;
        top: 10px;
        right: 15px;
        color: white;
        font-size: 24px;
        cursor: pointer;
    } */
    .day-section-images-training img {
        border-radius: 5px;
    }

    #day-t-image1,
    #day-t-image4 {
        /* max-height: 500px; */
        height: 146px;
    }

    #day-t-image3,
    #day-t-image2 {
        margin-top: 13%;
        max-height: 98px;
    }

    #training-iframe2 {
        width: 77%;
        margin-left: 0px;
    }

    .training-dayinlife {
        margin-bottom: 29px;
    }

    .form-group {
        font-size: 20px;
    }

    /* Adjust the video heading */
    .video-section-heading h2 {
        font-size: 1rem;
        /* Slightly larger heading for readability */
        padding: 8px 7px;
        border-radius: 12px;
    }

    .video-section-heading img {
        width: 10%;
        /* Reduce decorative line size */
        margin: -11px 0 0 -20px;
    }

    .background-image {
        width: 115%;
    }

    .info-footer {
        padding: 0px 5px;
        gap: 21px;
    }

    footer {
        padding: 18px 5% 9px 5%;
    }

    .download img {
        /* display: inline-block; */
        margin-left: -286px;
        margin-bottom: -16px;
        width: 14px;
    }

    .small-img-formside,
    .finish-gif {
        display: none;
    }

    .cap-img {
        margin-top: 28px;
        margin-left: 85px;
        margin-bottom: -57px;
    }

    .gif_container {
        margin-top: 5px;
        gap: 294px;
        /* display: flex;
        justify-content: center;
        align-items: center; */
    }

    .gif {
        /* width: 70%; */
        /* gap: 100px; */
    }

    /* .home-third-part {
        padding: 95px 0px 0px 0px;
    } */
    #abstract-line-gallery {
        margin-left: -93px;
        margin-top: 63px;
        width: 16px;
    }

    .yourgallery h1 {
        font-size: 16px;
    }

    .yourgallery {
        width: 94%;
        margin-top: -63px;
    }

    .image-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 9999;
    }

    .image-popup img {
        max-width: 90%;
        max-height: 80vh;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .close-popup {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 40px;
        color: white;
        cursor: pointer;
        z-index: 10000;
        background-color: transparent;
        border: none;
    }

    #prevImage,
    #nextImage {
        background-color: rgba(0, 0, 0, 0.7);
        /* Dark background for buttons */
        color: white;
        /* White text color */
        font-size: 24px;
        /* Button text size */
        border: none;
        /* Remove any border */
        padding: 15px 20px;
        /* Add padding for better click area */
        cursor: pointer;
        /* Pointer cursor on hover */
        position: absolute;
        top: 50%;
        /* Vertically center the buttons */
        transform: translateY(-50%);
        /* Keep it centered */
        border-radius: 50%;
        /* Circular buttons */
        transition: background-color 0.3s ease, transform 0.2s ease;
        /* Smooth transition for background and scaling effect */
    }

    #prevImage {
        left: 10px;
    }

    #nextImage {
        right: 10px;
    }

    #prevImage:hover,
    #nextImage:hover {
        background-color: rgba(255,
                255,
                255,
                0.5);
        /* Light background on hover */
        transform: scale(1.1);
        /* Slightly enlarge the button */
    }

    #prevImage:active,
    #nextImage:active {
        transform: scale(1);
        /* Button size returns to normal when clicked */
        background-color: rgba(255,
                255,
                255,
                0.8);
        /* Lighter background on active */
    }

    #firt-circle {
        width: 38px;
        height: 37px;
        margin-right: 13px;
        border-radius: 10px;
    }

    #second-circle {
        width: 42px;
        height: 39px;
        top: 16px;
        right: -8px;
    }

    #third-circle {
        width: 38px;
        height: 34px;
        top: 44px;
        right: -15px;
    }

    .footer-info {
        padding: 0px;
        display: flex;
        font-size: 6px;
        gap: 7px;
        /* justify-content: center; */
    }

    .footer-links {
        display: flex;
        gap: 22px;
        /* flex-wrap: wrap; */
    }

    .social-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        /* margin-left: 46px; */
    }

    .links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
    }

    .social-links a {
        font-size: 9px;
        padding: 0px;
    }

    .social-links p {
        /* margin-top: -51px; */
        margin-left: 0px;
    }

    .links-getapp {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .get-app {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }

    .get-app img {
        /* margin-top: 5px; */
        width: 51px;
        /* max-width: 150px; */
        /* max-height: 70px; */
        display: inline-block;
    }

    .get-app p {
        font-size: 10px;
        width: 97px;
    }

    #image1,
    #image3 {
        margin-top: 31px;
    }

    #image5,
    #image7 {
        margin-bottom: 0px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0px;
    }

    .nav-menu ul li {
        padding: 5px 0;
        /* font-size: 4px; */
    }

    .nav-menu ul li a {
        font-size: 12px;
    }

    .contact {
        margin-bottom: -47px;
    }

    .day-image {
        margin-top: 26px;
    }

    .day-image-tr {
        margin-top: 26px;
    }

    .day-section-images-training {
        gap: 8px;
        margin-top: 35px;
    }

    .day-image p {
        font-size: 13px;
        padding: 4px;
        margin-top: -68px;
        border-radius: 4px;
    }

    .day-image-tr p {
        font-size: 13px;
        padding: 5px;
        margin-top: -68px;
        border-radius: 6px;
    }

    .day-title-training {
        top: 9px;
    }

    .day-title-training p {
        font-size: 10px;
        padding: 5px;
        margin-top: -2px;
        margin-left: 21px;
        border-radius: 4px;
    }

    .decorative-line-training {
        left: -53px;
        top: 4px;
    }

    .decorative-line-training {
        width: 15px;
    }

    /* .decorative-line-training {
        left: -74px;
        top: -95px;
    } */
    .day-section-images {
        display: flex;
        gap: 8px;
        /* margin-top: 24px; */
    }

    #day-image1 {
        margin-top: -10px;
        height: 146px;
        border-radius: 3px;
    }

    #day-image2 {
        margin-top: 8%;
        max-height: 98px;
    }

    #day-image3 {
        margin-top: 8%;
        max-height: 98px;
    }

    #day-image4 {
        margin-top: -10px;
        height: 146px;
        border-radius: 3px;
    }

    .decorative-line {
        width: 55px;
        height: auto;
        left: -53px;
        margin-top: 2px;
        margin-bottom: 31px;
    }

    .day_life {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        width: 83%;
        font-size: 18px;
    }

    .dayinlife {
        width: 83%;
        padding: 15px;
        margin-top: 120px;
    }

    .responsive-iframe-day {
        /* width: 130%; */
        margin-left: -5px;
    }

    .responsive-iframe-day-b {
        width: 130%;
        margin-left: 4px;
    }



    .image-circule {
        width: 77%;
        margin-left: -70px;
    }

    .day_life h1 {
        font-size: 15px;
    }

    .dayinlife p {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.5;
        text-align: justify;
    }

    .download {
        padding: 0px 10px 10px 10px;
    }

    .download h3 {
        font-size: 18px;
        /* Smaller font size for h3 on small screens */
        margin-bottom: 2px;
    }

    .download p {
        max-width: 90%;
        /* Text will take up almost full width */
        font-size: 16px;
        /* Smaller font size for small devices */
        padding: 10px 10px 0px 10px;
    }

    .day-videopart {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-bottom: 53px;
        width: 96%;
    }

.day-videopart img, .day-videopart iframe {
        position: static;
        margin-left: 17px;
        margin-top: -113px;
        width: 90%;
        height: 55%; /* Maintain aspect ratio */
        border-radius: 30px 40px 40px 30px;
        /* padding: 25px 35px 20px 20px; */
        z-index: 2;
        /* margin-bottom: 20px; */
    }

    .day-videopart .day-content {
        width: 87%;
        height: 90%;
        z-index: 2;
        padding: 35px 0px 140px 0px;
        margin-top: 6px;
        margin-bottom: 20px;
        left: 25px;
    }

    .day-videopart a button {
        font-size: 13px;
        margin-top: 4%;
    }

    .day-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 5px;
    }

    .day-videopart p {
        margin-top: 8%;
        font-size: 16px;
        width: 211px;
    }


    .training-day_life h1 {
        font-size: 10px;
    }

    .find-second-section {
        display: flex;
        flex-direction: column;
        /* Stack image and content vertically */
        align-items: center;
        /* Center content horizontally */
        justify-content: center;
        /* Center content vertically */
        padding: 5%;
        gap: 20px;
        text-align: center;
        /* Ensures text is centered within its container */
    }

    /* Image adjustments */
    .find-second-section img {
        width: 100%;
        max-width: 367px;
        height: auto;
    }

    /* Header styling */
    .find-header h1 {
        font-size: 20px;
        text-align: center;
        margin: -47px 0;
        margin-bottom: 2px;
    }

    /* Numbers section */
    .numbers {
        display: grid;
        grid-template-columns: repeat(2,
                1fr);
        /* Create 2 equal-width columns */
        gap: 20px;
        /* Space between grid items */
        justify-items: center;
        /* Align items horizontally in the center */
        padding: 0;
    }

    .numbers p {
        font-size: 14px;
        padding: 10px;
        min-height: 60px;
        text-align: center;
        /* Center text inside number boxes */
        width: 71%;
        border-radius: 10px;
        /* Ensure the item takes up the full width of the grid cell */
    }

    /* Number span styling */
    .numbers span {
        font-size: 18px;
    }

    .training-dayinlife {
        flex-direction: column;
        /* Stack text and video vertically */
        padding: 4%;
        gap: 0px;
        /* Space between text and video */
        align-items: center;
        /* Center content horizontally */
        /* Add top margin for spacing from top */
        margin-top: 0px;
    }

    .training-day_life {
        font-size: 18px;
        /* Further reduce heading font size */
        text-align: center;
        margin-top: 10px;
        /* Add space above text section */
    }

    .training-day_life h1 {
        font-size: 22px;
        /* Smaller heading */
        margin-bottom: 10px;
        /* Space below heading */
    }

    .training-day_life p {
        max-width: 100%;
        font-size: 14px;
        /* Reduce paragraph font size */
        line-height: 22px;
        /* Adjust line spacing */
        margin: 10px 0;
        /* Space above and below paragraph */
    }

    .training-day_life h4 {
        font-size: 16px;
        /* Reduce subheading size */
        margin: 10px 0;
        /* Add spacing */
    }

    .training-dayinlife-container {
        margin-top: 21px;
    }

    #training-call {
        padding: 10px 18px;
        /* Smaller button padding */
        font-size: 14px;
        /* Smaller button text */
        margin: 15px 0 0 0;
        /* Margin above the button */
    }

    iframe {
        width: 100%;
        max-width: 300px;
        /* Limit video width */
        height: auto;
        aspect-ratio: 16 / 9;
        /* Maintain aspect ratio */
        margin-top: 15px;
        /* Add space above iframe */
    }

    .videopart {
        margin-bottom: 22px;
        margin-top: 20px;
    }

    .videopart .content {
        width: 100%;
    }

    .videopart p {
        font-size: 13px;
    }

    .videopart a button {
        font-size: 10px;
        margin-top: 4%;
    }

    .videopart img {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .inside-image-home iframe {
        max-width: 106px;
    }

    .image-circule {
        width: 73%;
        margin-left: 0px;
    }

    #find-p {
        top: 49%;
    }
}

@media (max-width: 338px) {
    .links-getapp {
        display: flex;
        flex-direction: row;
        /* justify-content: start; */
        align-items: self-start;
        gap: 62px;
    }

    .info-footer {
        gap: 12px;
    }
}

@media screen and (max-width: 760px) and (min-width: 490px) {
    .day-videopart p {
        max-width: 212px;
    }
}

@media screen and (max-width: 760px) and (min-width: 490px) {
    .day-videopart p {
        max-width: 161px;
    }
}

@media (max-width: 414px) {

    .first-content,
    .second-content {
        padding: 10px !important;
        gap: 3px !important;
        flex-direction: column !important;
        justify-content: center !important;
        margin-right: 40px !important;
    }

    #submit-button {
        width: 60%;
        margin-left: -27px;
    }

    .responsive-iframe-day {
        /* width: 130%; */
        margin-left: -5px;
    }

    .day-videopart .day-content {
        width: 87%;
        height: 90%;
        z-index: 2;
        padding: 35px 0px 140px 0px;
        margin-top: 6px;
        left: 20px;
    }

    .responsive-iframe-day-b {
        width: 130%;
        margin-left: -31px !important;
    }
}

@media (max-width: 390px) {

    .first-content,
    .second-content {
        padding: 10px !important;
        gap: 3px !important;
        flex-direction: column !important;
        justify-content: center !important;
        margin-right: 37px !important;
    }

    #submit-button {
        width: 60%;
        margin-left: -27px;
    }

    .responsive-iframe-day {
        /* width: 130%; */
        margin-left: -5px;
    }

    .day-videopart .day-content {
        width: 87%;
        height: 87%;
        z-index: 2;
        padding: 35px 0px 140px 0px;
        margin-top: 6px;
        left: 20px;
    }

    .responsive-iframe-day-b {
        width: 126% !important;
        margin-left: -24px !important;
    }
}