body {
    background-color: #111314 !important;
    margin: 0;
    /* padding: 0 3%; */
    box-sizing: border-box !important;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    color: white;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 25px;
    position: relative;
    overflow: hidden;

}

.navbar img {
    width: 145px;
    height: 31px;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 30px;
    object-fit: contain;
}


.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    color: white !important;
    white-space: nowrap;
    display: inline-block;
    padding-bottom: 5px;
    font-family: jost, 'sans-serif';
    font-weight: 500;

}

.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 60%;
    height: 1px;
    background-color: white;
    transform: translateX(-50%);
}

@media (max-width: 1100px) and (min-width: 1024px) {
    .navbar img {
        width: 135px;
        height: auto;
        margin-top: 20px;
        margin-left: 15px;
    }

    .navbar-nav {
        gap: 10px;
        margin-top: 25px;
    }

    .navbar-nav .nav-link {
        font-size: 1.4rem !important;
        /* Reduce font size */
        padding-bottom: 4px;
    }
}

@media (max-width: 992px) {
    .navbar-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }

    .navbar-collapse {
        justify-content: center;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
        font-size: 1.3rem !important;
        position: absolute;
        right: 25px;
        top: 40px;
    }

}

@media (max-width: 576px) {
    .navbar img {
        width: 125px;
        height: auto;
    }

    .navbar-toggler {
        right: 20px !important;
    }

    .navbar-toggler-icon {
        width: 1.3em !important;
        height: 1.3em !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-collapse {
        width: 100%;
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        font-size: 0.8rem;
        text-align: center;
    }

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        font-size: 1.1rem !important;
        padding: 6px 0;
        margin-top: 30px;
    }

    .nav-btn {
        margin-top: 15px;
    }
}
.animated-navbar {
  opacity: 0;
  transform: translateY(-50px);
  animation: slideDown 0.8s ease-out 0.2s forwards;
}

/* Keyframes for slideDown */
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bg-white {
    padding: 0 5%;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .content-wrapper {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        width: 100%;
        font-size: 20px;
    }

    .bg-white {
        padding: 0 5%;
    }
}

@media screen and (max-width: 480px) {
    .content-wrapper {
        font-size: 18px;
    }

    .bg-white {
        padding: 0 5%;
    }
}


.hero-section {
    padding: 4vw 0;
    text-align: center;
}

.custom-image {
    width: 370px;
    max-height: 425px;
    border-radius: 20px;
    object-fit: cover;
    position: absolute;
    right: 5%;
    top: 10%;
    transform: translateY(-30%);
}

@media (max-width: 1440px) and (min-width: 1024px) {
    .custom-image {
        right: 2%;
        top: 12.5%;
        transform: translateY(-50%);
        width: 330px;
        max-height: 360px;
    }
}

@media (max-width: 1200px) and (min-width: 1024px) {
    .custom-image {
        right: 5%;
        top: 10%;
        width: 250px;
        max-height: 340px;
    }
}

@media screen and (max-width: 1024px) {
    .custom-image {
        width: 250px;
        max-height: 300px;
        top: 6%;
        right: 3%;
        margin: 30px 0;


    }
}


.heading {
    font-family: Jost, sans-serif;
    font-weight: 500;
    font-size: 55px;
    line-height: 60px;
    text-align: center !important;
    margin-bottom: 15px;
}

.title {
    font-family: Jost, sans-serif;
    font-weight: 400;
    font-size: 1.5vw;
    line-height: 2;
    text-align: center !important;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .title {
        font-size: 1.8vw;
        line-height: 1.6;
    }
}


@media (max-width: 991px) {
    .hero-section .row {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        padding: 1.5vw 0;
        /* Less space on tablets */
    }

    .heading {
        font-size: 6vw;
        /* Increase size for smaller screens */
        padding-top: 0;
    }

    .title {
        font-size: 2.5vw;
        line-height: 1.6;
    }

    .custom-image {
        width: 40%;
        max-height: 320px;
        position: static;
        transform: none;
        margin-top: 20px;
        margin-bottom: 10px;
    }
}

/* Responsive design for small screens */
@media (max-width: 600px) {
    .hero-section {
        padding: 1vw 0;
        /* Minimal space on mobile */
    }

    .heading {
        font-size: 8vw;
    }

    .title {
        font-size: 4vw;
    }

    .custom-image {
        width: 220px;
        max-height: 300px;
        position: static;
        transform: none;
        margin-top: 40px;
    }
}

p.text-center {
    font-size: 28px;
    font-family: jost, sans-serif;
    line-height: 1.5;
    font-weight: 500;
    padding: 3vw 0;
}

p.text-center {
    margin: 0;
    padding: 3rem 0;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    p.text-center {
        font-size: 3vw;
        padding: 3vw 0;
    }
}

@media (max-width: 480px) {
    p.text-center {
        font-size: 4.5vw;
        padding: 5vw 0;
    }
}

.project-highlight {
    color: #f15a24;
}

/* Process Section Styling */
.process-container {
    width: 100%;
    text-align: center;
    padding: 50px 80px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-card {
    background: white;
    width: 30%;
    padding: 16px;
    border-radius: 15px;
    text-align: start;
    position: relative;
    width: 270px;
    height: 350px;
    font-family: jost, sans-serif;
}

.responsive-image {
    width: 30px !important;
    height: 30px !important;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .responsive-image {
        margin-top: 22px;
    }
}

@media (max-width: 768px) {
    .responsive-image {
        width: 25px !important;
        margin-top: 20px;
    }
}

.process-card h3 {
    font-size: 21px;
    font-weight: 500;
    color: #2E3538;
    margin-top: 5px;
}

.process-card p {
    font-size: 15px;
    font-weight: 400;
    color: #2E3538;
}

/* Image Styling */
.process-card img {
    width: 200px;
    height: 140px;
    object-fit: cover;
}

.process-card .process-main-img {
    width: 100%;
    max-width: 130px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    display: block;
    margin-inline: auto;
    margin-top: 43px !important;
}

/* Step Number */
.process-number {
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    background: #F16529;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: joti one, sans-serif;
    font-weight: 400;

}

.process-container::before {
    content: "";
    position: absolute;
    width: 57%;
    height: 100px;
    top: 31.5%;
    left: 20.5%;
    border-top: 2px dashed #F16529;
    border-radius: 0%;
    transform: rotate(0deg);
    z-index: 0;
    flex-grow: 1;
}

.process-footer {
    margin-top: 30px;
    background: white;
    font-family: jost, sans-serif;
    color: #2E3538;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    position: relative;
}

.process-footer span {
    color: #F16529;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-card {
        width: 80%;
        height: auto;
        text-align: center;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-card p {
        font-size: 15px;
    }

    .process-container::before {
        display: none;
    }

    .pro-container::before {
        display: none;
    }

    .pro-container::after {
        display: none;
    }

    .cube-icon {
        margin-top: 12px;
    }
}

@media screen and (max-width: 768px) {
    .process-card {
        width: 90%;
        text-align: center;
        height: auto;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-card h3 {
        font-size: 18px;

    }

    .process-card p {
        font-size: 14px;
    }

    .process-number {
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .process-footer {
        font-size: 17px;
        /* Adjust footer text */
    }

    .process-card img {
        max-width: 150px;

    }
}

@media screen and (max-width: 480px) {
    .process-card {
        width: 100%;
        padding: 20px;
    }

    .process-card h3 {
        font-size: 17px;
    }

    .process-card p {
        font-size: 13px;
    }

    .process-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .process-footer {
        font-size: 14px;
    }

    .process-card img {
        max-width: 120px;
        /* Further reduce image size for mobile */
    }

}

/* ----------- smart flex widths for all break‑points ----------- */

/* desktop & large‑laptop: 4 cards in one row */
@media (max-width: 1440px) and (min-width: 1201px) {
    .process-steps {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 30px;
    }

    .process-card {
        flex: 1 1 calc(25% - 30px);
    }

    /* 4 × 25 % */
}

/* small‑laptop / big‑tablet: 3 cards per row */
@media (max-width: 1200px) and (min-width: 993px) {
    .process-steps {
        justify-content: center;
        gap: 30px;
    }

    .process-card {
        flex: 1 1 calc(36.333% - 30px);
    }

    .process-container::before {
        display: none;
    }
}

/* tablet: 2 cards per row */
@media (max-width: 992px) and (min-width: 601px) {
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .process-card {
        flex: 1 1 calc(50% - 30px);
    }

    /* 2 × 50 % */
}

@media (min-width: 1201px) {
    .process-steps {
        flex-wrap: nowrap;
        justify-content: center;
    }
}


.s-circle {
    width: 100px;
    height: 100px;
    background-color: #F86635;
    border-radius: 50%;
    position: absolute;
    bottom: 50%;
    right: -55px;
    z-index: 10;
}

.orange-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: #F86635;
    border-radius: 50%;
    top: 36.5%;
    left: -180px;
    transform: translateY(-50%);
    z-index: 0;
}

.circle {
    width: 100px;
    height: 100px;
    background-color: #2E3538;
    /* Adjust color */
    border-radius: 50%;
    bottom: 25%;
    position: absolute;
    left: -50px;
    /* Aligns with the right edge */
    z-index: 10;
    /* Ensures it's above other content */
}

.header {
    font-family: Jost, sans-serif;
    font-weight: 500;
    font-size: clamp(20px, 2.5vw, 26px);
    /* Min: 20px, Preferred: 2.5vw, Max: 26px */
    line-height: clamp(40px, 6vw, 65px);
    /* Min: 40px, Preferred: 6vw, Max: 65px */
    text-align: center;
    color: #2E3538;
    padding-top: 35px;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
    height: 100%;
}

.pro-row {
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    gap: 80px;
    justify-content: center;
    align-items: center;
    /* Ensures vertical alignment */
    width: 100%;
}

.pro-row:nth-of-type(1) .pro-box:nth-child(1) .inner-box {
    background: #B9E5FE;
}

.pro-row:nth-of-type(1) .pro-box:nth-child(2) .inner-box {
    background: #E7FFF1;
}

.pro-row:nth-of-type(2) .pro-box:nth-child(1) .inner-box {
    background: #F3E3FE;
}

.pro-row:nth-of-type(2) .pro-box:nth-child(2) .inner-box {
    background: #B9E5FE;
}

.pro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 1024px) {
    .pro-container {
        gap: 40px;
        /* Reduce gap for tablets */
    }

    .footer-circle {
        display: none;

    }
}

@media (max-width: 768px) {
    .pro-container {
        gap: 0;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .pro-container {
        gap: 0;
        align-items: center;
    }
}

.pro-box {
    width: 280px;
    height: 310px;
    background: #ffffff;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Odd-Numbered Boxes */
.pro-box:nth-child(odd) {
    transform: rotate(10deg);
    margin-right: auto;
    margin-left: 20%;
    margin-top: 50px;
}

/* Even-Numbered Boxes */
.pro-box:nth-child(even) {
    transform: rotate(-10deg);
    margin-left: 0%;
    margin-right: auto;
    margin-top: 100px;
}

.inner-box {
    width: 230px;
    height: 245px;
    border-radius: 28px;
    border-image-slice: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.clip {
    position: absolute;
    width: 99px;
    height: 99px;
    top: -41px;
    right: 15px;
    transform: rotate(-25deg);
}

.pro-title {
    font-weight: 400;
    font-family: 'Joti One', cursive;
    color: #12C7CD;
    font-size: 22px;

}

.pro-row:nth-of-type(1) .pro-box:nth-child(1) .pro-title {
    color: #12C7CD;
}

.pro-row:nth-of-type(1) .pro-box:nth-child(2) .pro-title {
    color: #84FFB7;
}

.pro-row:nth-of-type(2) .pro-box:nth-child(1) .pro-title {
    color: #D496FF;
}

.pro-row:nth-of-type(2) .pro-box:nth-child(2) .pro-title {
    color: #12C7CD;
}


.pro-content {
    font-size: 16px;
    color: #2E3538;
    font-family: jost;
    font-weight: 400;
}

.pro-heading {
    color: #2E3538;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: jost;

}

.pro-content {
    list-style: none;
    padding: 0;
}

.pro-content li {
    position: relative;
    padding-left: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: #333;
}

.pro-content li::before {
    content: '–';
    font-family: 'Joti One', cursive;
    font-size: 22px;
    color: #12C7CD;
    position: absolute;
    left: 0;
    top: -6px;
    font-weight: 400;
}

/* First pro-row */
.pro-row:nth-of-type(1) .pro-box:nth-child(1) .pro-content li::before {
    color: #12C7CD;
}

.pro-row:nth-of-type(1) .pro-box:nth-child(2) .pro-content li::before {
    color: #84FFB7;
}

/* Second pro-row */
.pro-row:nth-of-type(2) .pro-box:nth-child(1) .pro-content li::before {
    color: #D496FF;
}

.pro-row:nth-of-type(2) .pro-box:nth-child(2) .pro-content li::before {
    color: #12C7CD;
}

@media (max-width: 1024px) {

    .pro-box {
        width: 250px;
        height: 300px;
    }

    .pro-heading {
        font-size: 20px;
    }

    .orange-circle {
        width: 250px;
        height: 250px;
        top: 53%;
        left: -160px;
    }

    .s-circle {
        width: 80px;
        height: 80px;
        right: -45px;
        bottom: 31% !important;
    }

    .circle {
        width: 80px;
        height: 80px;
        right: -45px;
        bottom: 22% !important;
    }

    .dashed-line-3 {
        display: none;
    }

}

@media (max-width: 768px) {
    .pro-box {
        width: 100%;
        max-width: 300px;
        height: auto;
        transform: none;
        margin: 80px 0;
    }

    .pro-heading {
        font-size: 18px;
    }

    .inner-box {
        width: 90%;
        height: auto;
    }

    .pro-content li {
        font-size: 14px;
    }

    .pro-row {
        flex-direction: column;
        gap: 0;
    }

    .orange-circle {
        width: 200px;
        height: 200px;
        top: 47%;
        left: -150px;
    }
}


@media (max-width: 480px) {
    .pro-box {
        width: 80%;
        max-width: 250px;
        height: auto;
        transform: none;
        margin: 75px auto;
    }

    .pro-content li {
        font-size: 13px;
    }

    .inner-box {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .orange-circle {
        width: 180px;
        height: 180px;
        top: 48%;
        left: -140px;
    }

    .footer-circle {
        display: none;
    }
}

.pro-container::before {
    content: "";
    position: absolute;
    width: 24%;
    height: 218px;
    top: 17%;
    left: 40%;
    border-top: 2px dashed #C9C8C8;
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

.pro-container::after {
    content: "";
    position: absolute;
    width: 29%;
    height: 300px;
    top: 34%;
    left: 39.5%;
    border-top: 2px dashed #C9C8C8;
    border-radius: 50%;
    transform: rotate(-25deg);
    z-index: -1;
}

.dashed-line-3 {
    position: absolute;
    width: 25%;
    height: 216px;
    top: 68%;
    left: 39%;
    border-top: 2px dashed #C9C8C8;
    border-radius: 50%;
    transform: rotate(10deg);
    z-index: 1;
}

.footer-text {
    font-family: Jost;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0%;
    text-align: center;
    color: #2E3538;
    padding: 20px;
    margin-bottom: 50px;
    margin-top: 50px;
}


.btn-wrap {
    font-family: Jost;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: normal;
    letter-spacing: 0%;
    text-align: center;
    background: #F86635;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-block;
    border: none;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.btn-wrap:hover {
    background: #70260d;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-text {
        font-size: 1.5rem;
        line-height: 1.3;
        text-align: center !important;
        margin: 0;
    }

    .btn-wrap {
        font-size: 1.5rem;
        padding: 8px 16px;
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .s-circle {
        width: 80px;
        height: 80px;
        right: -40px;
        bottom: 37%;
    }
}

@media (max-width: 480px) {
    .btn-wrap {
        font-size: 1.25rem;
        padding: 6px 12px;
        margin-top: 10px;
    }

    .footer-text {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: auto;
    }

    .s-circle {
        width: 80px;
        height: 80px;
        right: -45px;
        bottom: 33% !important;
    }
}

.row>div {
    padding: 15px;
}

.custom-col-2-5 {
    flex: 0 0 20.8333%;
    max-width: 19.8333% !important;
}

.custom-col-3-5 {
    flex: 0 0 29.1667%;
    max-width: 29.1667% !important;
}

.custom-col-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

@media (max-width: 767.98px) {

    .custom-col-2-5,
    .custom-col-3-5 {
        flex: 0 0 100%;
        max-width: 100% !important;
    }
}

.footer-section {
    background-color: #2E3538;

}

.footer-section p,
.footer-section a,
.footer-section li {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #ffffff;
}

.footer-section a {
    text-decoration: none;
    color: #ffffff;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-icon {
    width: 35px;
    height: 35px;
}

.footer-bottom {
    background-color: #2E3538;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-circle {
    width: 200px;
    height: 200px;
    background-color: #F15A29;
    position: absolute;
    bottom: -425px;
    right: -13px;
    border-top-left-radius: 100%;
    z-index: 0;
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .footer-circle {
    bottom: -454px; /* Adjust this value until it aligns well */
    right: -15px;       /* Or tweak as needed */
  }
}

@media (max-width: 768px) {
    .footer .col-12.col-sm-6.col-md-3:first-child {
        text-align: left;
        margin-bottom: 20px;
    }

    .footer .col-6 {
        width: 48%;
        text-align: left;
    }

    .footer .col-12.col-sm-6.col-md-3:last-child {
        text-align: left;
        margin-top: 20px;
    }

    .footer .col-12 p {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer .d-flex {
        justify-content: flex-start;
        gap: 15px;
    }

    .footer ul {
        padding-left: 0;
        list-style: none;
    }

    .footer ul li {
        margin-bottom: 10px;
    }

    .footer .email-link {
        display: inline-block;
        word-break: break-word;
    }

    .footer .copyright-text {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        margin-top: 10px;
    }
}

footer {
    font-family: 'Poppins', sans-serif;
}

.footer-description {
    font-family: 'Jost', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: clamp(22px, 2vw, 24px);
    font-weight: 400;
    color: #f8f9fa;
}
@media (max-width: 576px) {
  footer .container {
    margin-left: 15px !important;
  }
}
