* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
}

:root {
    --main-theme-neavyblue: rgb(0, 33, 71);
    --main-theme-orange: #f05a09;
    --main--black-trans: rgba(0, 0, 0, 0.1);
    --main--black-less-trans: rgba(0, 0, 0, 0.5);
    --orange-hover-button: rgba(240, 90, 9, 0.8);

    --blue--main-theme: rgb(6, 93, 127);
    --blue--secondry-theme: rgb(238, 249, 255);
    --grey--text: #666;
}

.anim-tl {
    animation-timeline: view(50%);
}

.navbar-dark .navbar-nav .nav-link {
    color: black;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.show {
    color: var(--blue--main-theme);
}

h4 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    color: black;
    font-size: 28px;
}

h6 {
    font-weight: bold;
    color: var(--blue--main-theme);
    margin-top: 2%;
    font-size: 1rem;
    margin-bottom: 1%;
    text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
    h4 {
        font-size: 24px;
    }

    h6 {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    h4 {
        font-size: 22px;
    }

    h6 {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    h4 {
        font-size: 20px;
    }

    h6 {
        font-size: 0.8rem;
    }
}




.carousel-item {
    height: 100vh;
    position: relative;
    font-family: 'Nunito', sans-serif;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #ffffff;

}

.carousel-caption h1 {
    font-size: 4.5rem;
    font-weight: 900;
}

.btn {
    border-radius: 0;
    margin: .5%;
    padding: 1% 2%;
}

@media (max-width: 1024px) {
    .carousel-caption h1 {
        font-size: 3.5rem; /* Adjust for medium screens */
    }


    .carousel-caption .btn {
        font-size: 1.1rem; /* Adjust button font size */
    }
}


@media (max-width: 768px) {
    .carousel-item {
         height: 70vh;
    }
    .carousel-caption h1 {
        font-size: 2.8rem; /* Adjust for tablets and smaller devices */
    }


    .carousel-caption .btn {
        font-size: 1rem; /* Further adjust button font size */
    }
}


@media (max-width: 480px) {
    .carousel-caption h1 {
        font-size: 2rem; /* Adjust for small mobile screens */
    }


    .carousel-caption .btn {
        font-size: 0.9rem; /* Small font for buttons */
    }
}



.containerr {
    padding: 2%;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}


.image-section {
    flex: 1;

}

.image-section img {
    width: 100%;
    height: auto;
}

.text-section {
    flex: 1;
    padding: 0 2%;

}

.text-section h1 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.4%;
    font-weight: bold;
    font-style: italic;
}

.text-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.explore-button {
    display: inline-block;
    padding: 1%;
    font-size: .7rem;
    color: #000000;
    font-weight: bold;
    border: 2px solid var(--main--black-trans);
    text-decoration: none;
    border-radius: 5px;
}

.explore-button:hover {
    background-color: var(--main--black-trans);
}

@media (max-width: 768px) {
    .containerr {
        padding: 3%;
    }


    .text-section {
        padding: 0 1%;
    }


    .text-section h1 {
        font-size: 1.5rem; /* Slightly smaller for tablets */
    }


    .text-section p {
        font-size: 0.9rem; /* Adjust paragraph size */
    }


    .explore-button {
        font-size: 0.8rem; /* Slightly larger button font for better readability */
    }
}


/* Mobile Devices (Max Width: 480px) */
@media (max-width: 480px) {
    .containerr {
        flex-direction: column; /* Stacks content vertically */
        padding: 5%;
    }


    .image-section,
    .text-section {
        flex: unset; /* Removes flex layout */
        width: 100%; /* Full width for both sections */
    }


    .text-section h1 {
        font-size: 1.2rem; /* Smaller font for mobile screens */
        margin-bottom: 1rem;
    }


    .text-section p {
        font-size: 0.85rem; /* Compact text for mobile */
    }


    .explore-button {
        font-size: 0.7rem; /* Smaller button font */
        padding: 2%; /* Adjust padding for touch interaction */
    }
}


.blue-lines {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.blue-lines .line1 {
    width: 50px;
    height: 2px;
    background-color: var(--blue--main-theme);
}

.blue-lines .line2 {
    width: 20px;
    height: 2px;
    background-color: var(--blue--main-theme);
}


@media (max-width: 1024px) {


    .text-section h1 {
        font-size: 1.6rem;
    }

    .text-section p {
        font-size: 0.9rem;
    }

    .explore-button {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    .containerr {
        flex-direction: column;
    }

    .text-section h1 {
        font-size: 1.4rem;
    }

    .text-section p {
        font-size: 0.8rem;
    }

    .explore-button {
        font-size: 0.85rem;
        padding: 7px 16px;
    }
}

@media (max-width: 480px) {
    .text-section h1 {
        font-size: 1.2rem;
    }

    .text-section p {
        font-size: 0.9em;
    }

    .explore-button {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}


.heading-caption {
    background-color: var(--blue--main-theme);
    padding: 1% 0;
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--blue--secondry-theme);
    font-style: italic;
    text-align: center;

}

@media (max-width: 1024px) {
    .heading-caption {
        font-size: 2rem;
        padding: 1.5% 0;
    }
}

@media (max-width: 768px) {
    .heading-caption {
        font-size: 1.8rem;
        padding: 2% 0;
    }
}

@media (max-width: 480px) {
    .heading-caption {
        font-size: 1.5rem;
        padding: 2% 0;
    }
}



.moving-line-container {
    position: relative;
    width: 10%;
    height: 3px;
    background-color: var(--blue--main-theme);
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 1.5%;
}

.moving-line {
    position: absolute;
    top: 0;
    left: 10%;
    width: 5%;
    height: 100%;
    background-color: #ffffff;
    animation: moveLine 4s ease-in-out infinite;
}

@keyframes moveLine {
    0% {
        left: 0%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 0%;
    }
}


.contact-main {
    max-width: 2000px;
    margin: 0 auto;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue--main-theme);
    font-family: Arial, sans-serif;
    justify-content: space-between;
    width: 100%;
}

.large-div {
    height: 430px;
    width: 60%;
    background-color: white;
    position: relative;
    padding: 30px;
    box-sizing: border-box;
}


.small-div {
    height: 430px;
    width: 35%;
    background-color: var(--main-theme-neavyblue);
    padding: 30px;
    box-sizing: border-box;
    color: var(--blue--secondry-theme);

}

.large-div h2,
.small-div h2 {
    font-size: 2rem;
    margin-bottom: 3%;
    padding-left: 0;
    font-weight: bold;
    color: var(--main-theme-neavyblue);
}

.small-div h2 {
    margin-bottom: 5%;
    color: var(--blue--main-theme);
}

.contact-info p {
    display: flex;
    align-items: center;
    padding-bottom: 5%;
}

.contact-info i {
    margin-right: 10px;
    border: 1px solid white;
    background-color: var(--blue--main-theme);
    padding: 5%;
    color: var(--blue--secondry-theme);
}

.contact-main form {
    padding-left: 0;
}

.contact-main input,
.contact-main textarea,
.contact-main button {
    width: 100%;
    padding: 1%;
    margin: 10px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact-main textarea {
    resize: vertical;
}

.contact-main button {
    background-color: var(--main-theme-neavyblue);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
}

.contact-main button:hover {
    background-color: var(--blue--main-theme);
    color: #000000;
}

@media (max-width: 1024px) {


    .large-div,
    .small-div {
        width: 48%;
        margin-bottom: 20px;
    }


    .large-div h2,
    .small-div h2 {
        font-size: 1.8rem;
    }
}


@media (max-width: 768px) {


    .large-div,
    .small-div {
        width: 100%;
        margin-bottom: 20px;
    }


    .large-div h2,
    .small-div h2 {
        font-size: 1.5rem;
    }


    form {
        padding-left: 0;
        text-align: center;
    }


    input,
    textarea,
    button {
        padding: 10px;
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .contact-main {
        flex-direction: column;
    }


    .large-div,
    .small-div {
        width: 100%;
        padding: 15px;


    }


    .large-div h2,
    .small-div h2 {
        font-size: 1.3rem;
        /* text-align: center; */
    }


    .contact-main button {
        font-size: 14px;
    }


    .contact-main input,
    .contact-main textarea,
    .contact-main button {
        padding: 10px;
        font-size: 14px;
    }


    .contact-info p {
        font-size: 14px;
        padding-bottom: 3%;
    }


    .contact-info i {
        font-size: 16px;
    }
}


.gradient-img {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
    z-index: -1;
}

.gradient-img-content {
    text-align: center;
    margin: auto 3%;
    z-index: 1;
}

.gradient-img-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: oblique;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.gradient-img-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Times New Roman', Times, serif;
}



.halfcircle-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.half-circle {
    width: 25px;
    height: 50px;
    background-color: var(--blue--main-theme);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.halfcircle-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--main-theme-neavyblue);
}

@media (max-width: 1024px) {
    .halfcircle-text {
        font-size: 1.6rem;
    }

    .half-circle {
        width: 20px;
        height: 40px;
    }
}

@media (max-width: 769px) {
    .halfcircle-text {
        font-size: 1.4rem;
    }

    .half-circle {
        width: 18px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .halfcircle-text {
        font-size: 1.2rem;
    }

    .half-circle {
        width: 15px;
        height: 30px;
    }
}

.stat-contaniner {
    position: relative;
    margin-top: 5%;
}


.stat-contaniner #background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


.stat-contaniner #overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.stat-contaniner #stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 20px 0;
    background: rgba(25, 36, 55, 0.8);
    position: relative;
    z-index: 1;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}


.stat-box {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--blue--secondry-theme);
    width: 20%;
    padding: 2% 1%;
}


.stat-box i {
    font-size: 4rem;
    color: var(--blue--main-theme);
    margin-bottom: 10px;
    display: block;
}


.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-top: 5%;
}


.stat-text {
    margin-top: 5%;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}


/* Responsive Styles */


/* Tablets (1024px and below) */
@media screen and (max-width: 1024px) {
    .stat-box {
        width: 22%;
        padding: 3% 2%;
    }


    .stat-box i {
        font-size: 3.5rem;
    }


    .stat-number {
        font-size: 2rem;
    }


    .stat-text {
        font-size: 1.2rem;
    }
}


/* Mobile Screens (768px and below) */
@media screen and (max-width: 768px) {
    .stat-box {
        width: 45%; /* Two boxes per row */
        margin-bottom: 20px; /* Space between rows */
    }


    .stat-box i {
        font-size: 3rem;
    }


    .stat-number {
        font-size: 1.8rem;
    }


    .stat-text {
        font-size: 1rem;
    }
}


/* Small Mobile Screens (480px and below) */
@media screen and (max-width: 480px) {
    .stat-box {
        width: 45%; /* Two boxes per row */
        padding: 4% 3%;
        margin-bottom: 20px; /* Space between rows */
    }


    .stat-box i {
        font-size: 2.5rem;
    }


    .stat-number {
        font-size: 1.5rem;
    }


    .stat-text {
        font-size: 0.9rem;
    }
}




@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Playpen+Sans:wght@100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Playpen+Sans&family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

.what-is {
    height: auto;
    width: 80%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 4% auto;
    padding: 2%;
}

.what-is p {
    line-height: 25px;
    color: var(--grey--text);
}

.what-is-detail {
    margin-top: 2%;
    padding: 0 2%;
}

@media (max-width: 480px) {
    .what-is {
        width: 90%;
        margin: 5% auto;
        padding: 5% 3%;
    }

    .what-is p {
        font-size: 0.9rem;
        line-height: 22px;
    }

    .what-is-detail {
        padding: 0 3%;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .what-is {
        width: 85%;
        margin: 5% auto;
        padding: 4% 3%;
    }

    .what-is p {
        font-size: 1rem;
        line-height: 24px;
    }

    .what-is-detail {
        padding: 0 3%;
    }
}


.step-main-container h4,
.step-main-container h6,
.flip-card-main-container h4,
.flip-card-main-container h6 {
    text-align: center;
}

.step-main-container {
    margin: 0 auto;
    padding: 3% 0;
    width: auto;
    margin-bottom: 3%;
    background-color: var(--blue--secondry-theme);
}

.step-container {
    padding: 0 4%;
    align-items: center;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin: 0 auto;
}

.step {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blue--secondry-theme);
    padding: 5%;
    text-align: center;
    position: relative;
    min-height: 250px;
    box-sizing: border-box;
    border: 1px solid white;
}

.step-container .step:nth-child(odd) {
    background-color: rgb(130, 210, 236);
}

.step-container .step:nth-child(even) {
    background-color: rgb(149, 203, 221);
}

.step h2 {
    color: var(--grey--text);
    font-size: 6em;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.step h3 {
    color: var(--main-theme-neavyblue);
    font-family: "Barlow Condensed", serif;
    font-size: 1.5em;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    top: 18%;
    width: 80%;
}

.step p {
    font-size: 1em;
    text-align: center;
    font-family: "Playpen Sans", serif;
    padding-top: 4%;
}


@media (max-width: 575px) {
    .step-container {
        padding: 0 2%;
        grid-template-columns: 1fr;
    }

    .step {
        min-height: 200px;
    }

    .step h2 {
        font-size: 4em;
    }

    .step h3 {
        font-size: 1.2em;
    }

    .step p {
        font-size: 0.9em;
    }
}

@media (min-width: 576px) and (max-width: 1024px) {
    .step-container {
        padding: 0 3%;
        grid-template-columns: repeat(2, 1fr);
    }

    .step h2 {
        font-size: 5em;
    }

    .step h3 {
        font-size: 1.4em;
    }

    .step p {
        font-size: 1em;
    }
}

@media (min-width: 1025px) {
    .step-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .step h2 {
        font-size: 6em;
    }

    .step h3 {
        font-size: 1.5em;
    }

    .step p {
        font-size: 1.1em;
    }
}




.flip-card-main-container {
    margin: 4% auto;
    max-width: 1400px;
}

.flip-card-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    justify-items: center;
    align-items: start;
    padding: 20px;
}


.flip-card {
    width: 300px;
    height: 350px;
    perspective: 1000px;
    transition: transform 0.6s ease;
}

.flip-card-inner {
    position: relative;
    width: auto;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.flip-card-front {
    background-color: rgb(151, 220, 246);
    flex-direction: column;
    padding: 5%;
}

.flip-card-front h3 {
    font-size: 1.5em;
    font-weight: bold;
}

.flip-card-front img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.flip-card-back {
    background-color: #789ebb;
    transform: rotateY(180deg);
    flex-direction: column;
    padding: 10%;
}

.flip-card-back h3 {
    margin-bottom: 7%;
    font-size: 1.3em;
    color: white;
    font-weight: bold;
}

.flip-card-back p {
    font-size: 1em;
    color: #f0f0f0;
    text-align: justify;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .flip-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .flip-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 630px) {
    .flip-card-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .flip-card-inner {
        width: 90%;
    }

    .flip-card {
        width: 280px;
        height: 350px;
        perspective: 1000px;
        transition: transform 0.6s ease;
    }
}

@media (max-width: 300px) {
    .flip-card-inner {
        width: 80%;
    }

    .flip-card {
        width: 250px;
        height: 350px;
        perspective: 1000px;
        transition: transform 0.6s ease;
    }
}


.our-expertise {
    margin: 5% 0;
    background-color: var(--blue--secondry-theme);
    padding: 1% 5% 2% 5%;
}

.our-expertise h6,
.our-expertise h4 {
    text-align: center;
}

.our-expertise-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.expertise-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 15px;
}

.expertise-box-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: relative;
}

.expertise-box-logo div {
    height: 80px;
    width: 80px;
    background-color: var(--blue--main-theme);
    border-radius: 50%;
    position: absolute;
}

.expertise-box-logo img {
    height: 100px;
    width: 100px;
    position: relative;
    z-index: 1;
    transform: translate(-30px, 35px);
}

.expertise-box-content h1 {
    text-align: center;
    font-size: 24px;
margin-top:10%;
    color: var(--grey--text);
    font-family: "Barlow Condensed", serif;
}

@media screen and (max-width: 1024px) {
    .our-expertise-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .expertise-box-content h1 {
        font-size: 22px;
    }

    .expertise-box-logo div {
        height: 70px;
        width: 70px;
    }

    .expertise-box-logo img {
        height: 50px;
        width: 50px;
    }
}

@media screen and (max-width: 768px) {
    .our-expertise-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .expertise-box-content h1 {
        font-size: 20px;
        margin-top:10%;
    }

    .expertise-box-logo div {
        height: 60px;
        width: 60px;
    }

    .expertise-box-logo img {
        height: 60px;
        width: 60px;
    }

    .our-expertise {
        padding: 1% 3% 2% 3%;
    }
}

@media screen and (max-width: 480px) {
    .our-expertise-row {
       grid-template-columns: repeat(2, 1fr);
    }

    .expertise-box-content h1 {
        font-size: 18px;
    }

    .expertise-box-logo div {
        height: 50px;
        width: 50px;
    }

    .expertise-box-logo img {
             top:-14;
    }

    .our-expertise {
        padding: 1% 2% 2% 2%;
    }
}