* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000B58;
    color: white;
}

.whatsapp-call-cta {
    position: fixed;
    right: 1px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(246, 245, 245);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    row-gap: 10px;
    padding: 10px;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-call-cta a {
    background: #000B58;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /* Ensure no underlines */
}

.whatsapp-call-cta a img {
    width: 3vh;
    height: auto;
}

.heading {
    text-align: center;
}

.heading h3 {
    color: white;
    font-size: 35px;
}

.heading h3 span {
    color: #43B261;
    position: relative;
    display: inline-block;
}

.heading h3 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background-color: #43B261;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
}

/* When in view, the underline animates */
.heading h3 span.show::after {
    transform: scaleX(1);
}


#main-container {
    width: 100%;
    margin: auto;
    padding: 0;
}

#navbar {
    padding: 0;
}

#navbar .content {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

#navbar .content .logo {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    margin-left: 5%;
}

#navbar .content .logo img {
    width: 15vh;
    margin-top: -15px;
}

#navbar .content .items {
    display: flex;
    justify-content: center;
    margin-right: 5%;
}

#navbar .content .items ul {
    display: flex;
    justify-content: center;
    column-gap: 40px;
    align-items: center;
    list-style-type: none;
}

#navbar .content .items ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#navbar .content .items ul li button {
    background: white;
    border: 1px solid white;
    color: #0e337c;
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: 500;
}

#navbar .content .burger-menu {
    display: none;
    margin-top: -5px;
    margin-right: 10px;
}

#navbar .content .burger-menu img {
    width: 4.5vh;

}

#navbar .content .burger-menu img #nav-cross {
    display: none;
}

#front-banner {
    /* margin-top: 5%; */
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#front-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#front-banner .content {
    display: flex;
    justify-content: center;
    position: relative;
    width: 90%;
    align-items: center;
    margin: auto;
    z-index: 1;
    margin-top: 5%;
}

#front-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.222);
    /* Black overlay with 50% opacity */
    z-index: -1;
    /* Keeps the overlay above the video but behind the content */
}

#front-banner .content .box {
    width: 50%;
}

#front-banner .content .box .text {
    margin-top: 4%;
}

#front-banner .content .box .text h1 {
    font-size: 50px;
    color: white;
    font-family: "Archivo Black", serif;
    font-weight: 400;
}

#front-banner .content .box .text h1 span {
    color: #43B261;
}

#front-banner .content .box .text p {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

#front-banner .content .box2 {
    padding: 0;
}

#front-banner .content .box2 .form {
    background: white;
    padding: 20px 0px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 11, 88, 0.2);
    width: 75%;
    margin: auto;
    position: relative;
    left: 5%;
    overflow: hidden;
}

#front-banner .content .box2 .form form {
    width: 80%;
    margin: auto;
}

#front-banner .content .box2 .form form h2 {
    color: #000B58;
    font-family: "Anton", serif;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 5%;
}

/* .box2::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #000B58, #009ffd);
    transform: rotate(10deg);
    z-index: -1;
    opacity: 0.2;
} */

#front-banner .content .box2 .form form .input-form {
    position: relative;
    margin-bottom: 15px;
}

#front-banner .content .box2 .form form .input-form input,
#front-banner .content .box2 .form form .input-form select,
#front-banner .content .box2 .form form .input-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #000B58;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease-in-out;
    background: transparent;
}

#front-banner .content .box2 .form form .input-form input:focus,
#front-banner .content .box2 .form form .input-form select:focus,
#front-banner .content .box2 .form form .input-form textarea:focus {
    border-color: #43B261;
    box-shadow: 0 0 10px #1c8939b1;
}

#front-banner .content .box2 .form form .input-form label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: #000B58;
    font-size: 14px;
    transition: 0.3s;
}

#front-banner .content .box2 .form form .input-form input:focus+label,
#front-banner .content .box2 .form form .input-form input:not(:placeholder-shown)+label,
#front-banner .content .box2 .form form .input-form select:focus+label,
#front-banner .content .box2 .form form .input-form textarea:focus+label,
#front-banner .content .box2 .form form .input-form textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 12px;
    color: #000B58;
}

#front-banner .content .box2 .form form .input-form textarea {
    height: 100px;
    resize: none;
}

#front-banner .content .box2 .form form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #000B58;
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

#front-banner .content .box2 .form form button:hover {
    background: #010732;
}

#front-banner .content .box2 .form form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

#front-banner .content .box2 .form form button:hover::before {
    left: 100%;
}

.cta-btn {
    background: #43B261;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    width: 290px;
    margin-top: 5%;
}

.cta-btn a {
    text-decoration: none;
    color: #000B58;
    font-weight: 500;
    font-size: 18px;
}

#partners {
    background: white;
    width: 80%;
    margin: auto;
    padding: 30px;
    margin-top: 5%;
    border-radius: 10px;
}

#partners .image-slider1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 50px;
}

#partners .images1 {
    display: flex;
    width: max-content;
    position: absolute;
    animation: none;
}

#partners .images1 img {
    width: 120px;
    height: 70px;
    margin-right: 55px;
}

#partners .images1 img#insta {
    width: 200px;
}

#dummy-video {
    margin-top: 5%;
}

#dummy-video .content .laptop-image {
    position: relative;
    background: url('../images/laptop-dummy.png') center/contain no-repeat;
    width: 85%;
    height: 500px;
    margin: auto;
}

#dummy-video .content .laptop-image .scroll-frame {
    position: absolute;
    /* Adjust the position and size to fit the laptop frame */
    top: 6%;
    /* Change according to laptop image */
    left: 22.8%;
    /* Adjust based on frame */
    width: 54%;
    /* Frame width */
    height: 82.5%;
    overflow: hidden;

}

#dummy-video .content .laptop-image .scroll-frame video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Ensures video covers the frame without distortion */
    position: relative;
}

#leading-expert {
    margin-top: 5%;
    padding: 10px;
}

#leading-expert .content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    column-gap: 30px;
}

#leading-expert .content .box {
    width: 20%;
    border-radius: 5px;
    border: 1px solid white;
    padding: 20px;
    box-shadow: rgba(245, 245, 249, 0.25) 0px 6px 12px -2px, rgba(245, 239, 239, 0.3) 0px 3px 7px -3px;
}

#leading-expert .content .box .image-icon {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#leading-expert .content .box .image-icon img {
    width: 50%;
}

#leading-expert .content .box .text {
    color: white;
    text-align: center;
}

#leading-expert .content .box .text h2 {
    font-size: 40px;
    font-weight: 700;
}

#leading-expert .content .box .text p {
    font-size: 22px;
    font-weight: 500;
}

#leads-agency {
    margin-top: 5%;
    padding: 10px;
}

#leads-agency .content {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

#leads-agency .content .box {
    width: 50%;
    color: white;
}

#leads-agency .content .box .image {
    width: 60%;
    margin: auto;
    margin-top: -20px;
}

#leads-agency .content .box .image img {
    width: 100%;
    text-align: center;
}

#leads-agency .content .box h2 {
    font-size: 50px;
    font-weight: 700;
}

#leads-agency .content .box p {
    font-size: 25px;
    font-weight: 500;
}

#leads-agency .content .box .points ul {
    padding-left: 0;
}

#leads-agency .content .box .points ul li {
    list-style-type: none;
    font-size: 20px;
    display: flex;
}

#leads-agency .content .box .points ul li span {
    margin-right: 5px;
}

#car-moving {
    width: 80%;
    margin: auto;
    margin-top: 5%;
}

#carouselExampleAutoplaying {
    margin-top: 5%;
    background: rgb(234, 233, 233);
}

.carousel-item {
    position: relative;

}

.carousel-item img {
    width: 80%;
    height: 400px;
    object-fit: fill;
    border: 4px solid #43B261;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(111, 109, 109, 0.162);
}
/* General Styling */
#website-we-done {
    margin-top: 5%;
    padding: 50px 5%;
    background: #f8f9fa;
    text-align: center;
}

/* Heading Styling */
#website-we-done .heading h3 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    position: relative;
    display: inline-block;
}

#website-we-done .heading h3 span {
    color: #43B261;
}

/* Content Styling */
#website-we-done .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Box Styling */
#website-we-done .content .box {
    width: 30%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

#website-we-done .content .box:hover {
    transform: translateY(-5px);
}

/* Website Screenshot Frame (Scrollable) */
#website-we-done .content .box .web {
    width: 100%;
    height: 300px; /* Set a fixed height for the viewport */
    overflow-y: scroll; /* Enable vertical scrolling */
    border-radius: 10px 10px 0 0;
    scrollbar-width: thin;
    scrollbar-color: #888 #f0f0f0;
}

#website-we-done .content .box .web::-webkit-scrollbar {
    width: 6px;
}

#website-we-done .content .box .web::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

#website-we-done .content .box .web .image {
    width: 100%;
}

/* Ensure the long image remains scrollable */
#website-we-done .content .box .image img {
    width: 100%;
    display: block;
}

/* Text Styling */
#website-we-done .content .box .text {
    padding: 15px;
    text-align: center;
}

#website-we-done .content .box .text h5 a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

#website-we-done .content .box .text h5 a:hover {
    color: #43B261;
}

/* Call-to-Action */
#website-we-done .website-cta {
    background: #43B261;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 40px;
    transition: background 0.3s ease-in-out;
}

#website-we-done .website-cta:hover {
    background: #2e8540;
}

/* Responsive Styling */
@media (max-width: 992px) {
    #website-we-done .content .box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    #website-we-done .content {
        flex-direction: column;
        align-items: center;
    }

    #website-we-done .content .box {
        width: 90%;
    }

    #website-we-done .heading h3 {
        font-size: 28px;
    }

    #website-we-done .website-cta {
        font-size: 18px;
        padding: 10px 20px;
    }
}


#management-service {
    width: 80%;
    margin: auto;
    margin-top: 5%;
    padding: 10px;
}

#management-service .heading p {
    font-size: 20px;
    font-weight: 500;
    margin-top: 2%;
}

#management-service .content {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin-top: 40px;
}

#management-service .content .box {
    border: 1px solid rgba(205, 203, 203, 0.405);
    border-radius: 10px;
    width: 15%;
    padding: 20px;
    text-align: center;
}

#management-service .content .box img {
    width: 10vh;
    margin-bottom: 10px;
}

#moving-cta {
    margin-top: 5%;
}

#moving-cta .content {
    background: rgb(243, 240, 240);
    overflow: hidden; /* Ensures scrolling text doesn't overflow the container */
    width: 100%;
    position: relative;
    border-radius: 1px;
    height: 40px; /* Adjust height as needed */
}

#moving-cta .scrolling-text {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    position: absolute;
    animation: scroll-left 50s linear infinite;
    white-space: nowrap; /* Prevent line breaks */
}

#moving-cta .scrolling-text p {
    display: flex;
    color: rgba(74, 73, 73, 0.905);
    margin: 0;
    padding:  6px;
}

@keyframes scroll-left {
    from {
        left: 100%;
    }
    to {
        left: -100%;
    }
}


#services-we-offer {
    width: 80%;
    margin: auto;
    margin-top: 5%;
}

#services-we-offer .content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

#services-we-offer .content .box {
    border: 1px solid rgba(205, 203, 203, 0.405);
    border-radius: 10px;
    width: 20%;
    background: rgba(255, 255, 255, 0.286);
    padding: 20px;
    text-align: center;
}

#services-we-offer .content .box img {
    width: 10vh;
    margin-bottom: 10px;
    border-radius: 50%;
}

#services-we-offer .content .box h6 {
    font-weight: 700;
    font-size: 18px;
}

#services-we-offer .content .box p {
    font-size: 14px;
}

#serving-industries {
    width: 80%;
    margin: auto;
    margin-top: 5%;
    padding: 10px;
}

#serving-industries .content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

#serving-industries .content .box {
    width: 23%;
    padding: 20px;
}

#serving-industries .content .box .image-icon {
    width: 100%;
    height: 200px;
    margin: auto;
    display: flex;
    border-radius: 10px;
    border: 1px solid white;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: rgba(245, 245, 249, 0.25) 0px 6px 12px -2px, rgba(245, 239, 239, 0.3) 0px 3px 7px -3px;

}

#serving-industries .content .box .image-icon img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#serving-industries .content .box .text {
    color: white;
    text-align: center;
}

#serving-industries .content .box .text p {
    font-size: 18px;
    font-weight: 500;
}

#why-choose-us {
    margin-top: 5%;
}

#why-choose-us .content {
    display: flex;
    justify-content: center;
}

#why-choose-us .content .box {
    width: 45%;
}

#why-choose-us .content .box .heading {
    text-align: start;
}

#why-choose-us .content .box h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 40px;
}

#why-choose-us .content .box p {
    font-size: 18px;
}

#why-choose-us .content .box2 {
    display: flex;
    justify-content: end;
}

#why-choose-us .content .box .image {
    width: 90%;
    margin-top: 80px;
}

#why-choose-us .content .box .image video {
    width: 100%;
    border-radius: 10px;
}

#footer {
    margin-top: 5%;
}

#footer .content {
    display: flex;
    justify-content: space-between;
    color: black;
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: rgba(245, 245, 249, 0.25) 0px 6px 12px -2px, rgba(245, 239, 239, 0.3) 0px 3px 7px -3px;
}

#footer .content .box {
    width: 20%;
}

#footer .content .box h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #010732d7;
    font-family: Arial, Helvetica, sans-serif;
}

#footer .content .box p {
    color: rgb(42, 41, 41);
    font-family: sans-serif;
}

#footer .content .box ul {
    padding-left: 0;
}

#footer .content .box ul li {
    list-style-type: none;
    color: rgb(42, 41, 41);
}

#footer .content .box ul li a {
    text-decoration: none;
    color: rgb(42, 41, 41);
    font-weight: 400;
    font-size: 18px;
}

#footer .content .box ul li a i {
    margin-right: 10px;
}

hr {
    color: white;
}

.nav-footer {
    text-align: center;
    color: white;
}

.nav-footer p {
    margin-bottom: 20px;
}

/* thankyou-page */

.thank-you-container {
    position: relative;
    text-align: center;
    padding: 3rem 4rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1;
    animation: pop-in 0.8s cubic-bezier(0.5, 1.3, 0.5, 1) forwards;
    opacity: 0;
}

.thank-you-container h1 {
    font-size: 2.8rem;
    color: #000B58;
    margin-bottom: 1rem;
    animation: slide-in 1s ease-in-out forwards;
    opacity: 0;
}

.thank-you-container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2.5rem;
    animation: slide-in 1.5s ease-in-out forwards;
    opacity: 0;
}

.thank-you-container .btn-home {
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    background: #43B261;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(67, 178, 97, 0.4);
    transition: all 0.3s ease-in-out;
    animation: slide-in 2s ease-in-out forwards;
    opacity: 0;
}

.thank-you-container .btn-home:hover {
    background: #36a94d;
    box-shadow: 0 15px 30px rgba(67, 178, 97, 0.6);
    transform: translateY(-3px);
}

/* Circle Animations */
.thank-you-container::before,
.thank-you-container::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #43B261;
    opacity: 0.1;
    animation: pulse 4s infinite alternate ease-in-out;
    z-index: -1;
}

.thank-you-container::before {
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.thank-you-container::after {
    bottom: -150px;
    right: -150px;
    animation-delay: 1s;
}

/* Animations */
@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}


/* #meet-the-team{
    width: 50%;
    margin-top: 5%;
}

#meet-the-team img{
    width: 100%;
} */

#video-testimonials {
    margin-top: 2%;
}

#video-testimonials .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#video-testimonials .content .arrow-btn {
    width: 10%;
    text-align: center;
}

#video-testimonials .content .arrow-btn button {
    border: none;
    background: transparent;
}

#video-testimonials .content .arrow-btn button img {
    width: 3.5vh;
}

#video-testimonials .content .review-section {
    width: 80%;
    overflow: hidden;
    margin: 0 auto;
}

#video-testimonials .content .review-section .wrapper {
    display: flex;
    transition: transform 0.5s ease;
    position: relative;
    width: fit-content;
}

#video-testimonials .content .review-section .box {
    flex-shrink: 0;
    width: calc(100% / 3);
    padding: 10px;
}

#video-testimonials .content .review-section .box .text {
    padding: 20px;
    background: linear-gradient(to right, #f9f6f6, #fef9fd, #f2eaef, #f9f2f6, #efefeffa);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 10px;
    height:350px;
}

#video-testimonials .content .review-section .box .text p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000000;  
}

#video-testimonials .content .review-section .box .text .student-name {
    position: absolute;
    bottom: 20px;
}

#video-testimonials .content .review-section .box .text .student-name h6 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

#video-testimonials .content .review-section .box .text .student-name p {
    display: flex;
    justify-content: start;
    column-gap: 5px;
}

#video-testimonials .content .review-section .box .text .student-name p img{
    width: 2vh;
}