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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            /* lighter saffron glow */
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            /* soft white middle */
            rgba(32, 210, 121, 0.25) 75%,
            /* light green right side */
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;
}


:root {
    --style: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --orange: #f26522;
    --green: #009245;
    --white: #ffffff;
    --nevy: #0c1a24;
    --background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            /* lighter saffron glow */
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            /* soft white middle */
            rgba(32, 210, 121, 0.25) 75%,
            /* light green right side */
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;
    /* Subtle dark base */
}
.video-section h2 {
    font-family: var(--style);
    font-size: 2rem; /* You can adjust the font size as needed */
    background: linear-gradient(90deg, var(--orange), rgba(32, 210, 121, 0.7), var(--green));
    -webkit-background-clip: text; /* This ensures the gradient is applied to the text */
    color: transparent; /* Make the text color transparent to show the gradient */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 4rem;
}
.devoindiaOrange{
    color: var(--orange);
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: justify;
    line-height: 2rem;
    color: black;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
}

.floating-buttons-section {
    position: relative;
    z-index: 999;
}

/* Button container */
.floating-buttons {
    position: fixed;
    right: 1rem;
    bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Common button styles */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* WhatsApp & Call colors */
.whatsapp {
    background: #25D366;
    font-size: 30px;
}

.call {
    background: #0078ff;
}

/* Responsive adjustments */
@media (max-width: 530px) {
    .floating-buttons {
        right: 0.5rem;
        bottom: 1rem;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ---------------------------navigation-start--------------------------- */
.header {
    background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            /* lighter saffron glow */
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            /* soft white middle */
            rgba(32, 210, 121, 0.25) 75%,
            /* light green right side */
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;
    /* Subtle dark base */

    padding: 0.8rem 2rem 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(90, 90, 90, 0.2);
    transition: background 0.35s ease;
    z-index: 100;
}

.header.scrolled {
    background-color: rgba(30, 30, 30, 0.85);
}

.nav-left {
    max-width: 28rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 4rem;
    height: 4rem;
}

.logo-text {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: start;
    margin-bottom: 0.5rem;
}

.devo {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: start;
    font-weight: 500;
    font-size: 1.5rem;
    margin-left: 0.3rem;
    color: var(--orange);
    line-height: 2rem;
    letter-spacing: 0.5px;
}

.devo span {
    color: var(--green)
}

.sub-t {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: start;
    font-weight: 500;
    font-size: 1rem;
    margin-left: 0.3rem;
    color: var(--nevy);
    line-height: 1.2rem;
    letter-spacing: 1.2px;
}

#about {
    scroll-margin-top: 80px;
    /* match your header height */
}

.book button {
    background: var(--orange);
    color: #fff;
    border: 1px solid var(--nevy);
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
    gap: 10px;
    transition: all 0.3s ease;
}

.book button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.book button:hover {
    background: rgb(231, 109, 49);
}

.book button:hover i {
    transform: rotate(-15deg);
}


.nav-data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    position: relative;
    width: 40px;
    height: 40px;
}

.bar,
.close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 4rem;
    cursor: pointer;
    transition: opacity .1s, transform .2s;
}

.nav-toggle i {
    font-size: 1.6rem;
}

.close {
    opacity: 0;
}

@media screen and (max-width:960px) {
    .header {
        padding: 0.1rem 0.2rem;
    }

    .nav-left {
        max-width: 30rem;
    }

    .logo {
        width: 3.5rem;
        height: 3.5rem;
    }

    .logo-text {
        align-items: start;
    }

    .devo {
        font-weight: 500;
        font-size: 1.45rem;
    }

    .sub-t {
        font-weight: 500;
        font-size: 0.99rem;
    }

    .nav-menu {
        position: absolute;
        border-top: 1px solid var(--nevy);
        left: -100%;
        top: 4.68rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        pointer-events: none;
        transition: left 0.2s, opacity 0.1s;
        z-index: 100;
        background-color: white;
    }

    .nav-link {
        color: black;
        font-weight: 400 !important;
        font-size: 1rem !important;
        padding: 0.9rem 1rem;
    }

    .nav-menu::-webkit-scrollbar {
        width: 0;
    }

    .nav {
        padding: 0.4rem 0.5rem;
    }

    .book {
        padding: 1rem 16px !important;
        margin-top: 0rem;
        font-size: 1.1rem !important;
        border-radius: 6px;
        width: 100%;
        text-align: center;
        justify-content: center !important;
    }

    .book button {
        width: 100%;
        margin-left: 0rem;
        justify-content: center;
    }
}

.nav-link {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.nav-link i {
    font-size: 12px;
}

.show-menu {
    left: 0;
    opacity: 1;
    pointer-events: initial;
}

.show-icon .bar {
    opacity: 0;
    transform: rotate(90deg);
}


.show-icon .close {
    opacity: 1;
    transform: rotate(90deg);
}

@media screen and (min-width: 961px) {
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: none;
    }

    .nav-list {
        height: 100%;
        display: flex;
    }

    .nav-link {
        height: 100%;
        padding: 0.3rem 0.7rem;
        justify-content: initial;
        column-gap: .5rem;
        font-size: 1rem;
        color: black;

    }

    .nav-link:hover {
        background-color: rgb(246, 244, 244);
        border-radius: 6px;
    }
}

/* ------------------------------------my-jorney--------------------------------------- */
.banner {
    margin-top: 5.5rem;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    height: 30rem;
    width: 100%;
    background:
        radial-gradient(circle at 10% 40%,
            rgba(240, 174, 88, 0.333) 0%,
            /* lighter saffron glow */
            rgba(234, 151, 42, 0) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            /* soft white middle */
            rgba(32, 210, 121, 0.25) 75%,
            /* light green right side */
            rgba(0, 200, 100, 0.315) 100%),
        linear-gradient(90deg,
            rgba(255, 180, 80, 0.25) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(0, 200, 100, 0.25) 100%),
        #f7f7f7;
    /* Subtle dark base */
}

.right-photo img {
    position: absolute;
    width: 26rem;
    height: 25rem;
    bottom: 0;
    left: 2rem;
    z-index: 10;
    transition: opacity 0.1ms ease-in-out;
    /* Add smooth fade effect */
}

.rightside img {
    transition: opacity 0.1ms ease-in-out;
}

.left-photo,
.right-photo {
    width: 50%;
    height: 100%;
}

.left-photo,
.right-photo {
    transition: transform 0.8s cubic-bezier(0.47, 0, 0.745, 0.715), opacity 0.8s cubic-bezier(0.47, 0, 0.745, 0.715);
    /* smooth effect */
}

.left-photo.slide-initial {
    transform: translateX(-140px);
    opacity: 0;
}

.right-photo.slide-initial {
    transform: translateX(140px);
    opacity: 0;
}

.left-photo,
.right-photo {
    transform: translateX(0);
    opacity: 1;
}

.left-photo {
    color: var(--nevy);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: start;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content h1 {
    font-weight: bold;
    font-size: 2.2rem;
    padding-left: 3rem;
    letter-spacing: 0.03em;
    color: var(--orange);

}

.content h2 {
    font-weight: lighter;
    font-size: 1.8rem;
    font-family: Segoe UI;
    margin: 0.2rem 0 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--green);
}

.content h3 {
    font-weight: 600;
    font-size: 2rem;
    font-family: Segoe UI;
    margin: 0 3rem 2rem;
    letter-spacing: 0.03em;
    color: var(--nevy);
}

/* Button container */
.buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

#buttons {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#buttons.show {
    opacity: 1;
}


/* Buttons */
.project-btn {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1rem;

}

.resume-btn {
    background-color: transparent;
    border: 1.5px solid var(--orange);
    color: var(--nevy);
    padding: 0.8rem 1.5rem;
    font-weight: normal;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1rem;
}

.resume-btn a {
    color: white;
}

/* Optional: Hover effects */
.project-btn:hover {
    background-color: var(--orange);
}

.resume-btn:hover {
    background-color: var(--orange);
    color: white;
}

.right-photo {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.rightside {
    position: absolute;
    width: 480px;
    height: 450px;
    bottom: 0;
}

.round {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: 55%;
    left: 47%;
    transform: translate(-50%, -50%);
    /* Main ring color */
    border: 1.5rem solid var(--orange);
    box-shadow: 0 0 30px rgba(51, 196, 32, 0.6),
        0 0 600px rgba(27, 219, 43, 0.4),
        0 0 200px rgba(199, 199, 199, 0.2);

    /* Inner radial gradient */
    background: radial-gradient(circle,
            rgba(221, 216, 216, 0.15) 70%,
            transparent 100%);
    z-index: 2;
}

.right-photo img {
    /* position: absolute;
    width: 26rem;
    height: 25rem;
    bottom: 0;
    left: 2rem;
    z-index: 10; */
    position: absolute;
    width: 29rem;
    height: 20rem;
    bottom: 0;
    left: -3rem;
    z-index: 10;
}


.arrow {
    position: absolute;
    font-size: 8rem;
    z-index: 15;
    font-weight: bold;
    color: var(--orange);
    transform: translateY(-50%);
    font-family: Arial, sans-serif;
}

.arrow.left {
    top: 7rem;
    left: -2rem;
}

.arrow.right {
    right: -1.5rem;
    bottom: -2.5rem;
}

.left-photo,
.right-photo {
    /* Default visible properties */
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Initial state class for slide-in */
.slide-initial.left-photo {
    opacity: 0;
    transform: translateX(-50px);
    /* Slide image 50px left */
}

.slide-initial.right-photo {
    opacity: 0;
    transform: translateX(50px);
    /* Slide image 50px right */
}


@media screen and (max-width: 1024px) {
    .rightside {
        position: absolute;
        width: 450px;
        height: 450px;
        bottom: 0;
    }

    .round {
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        top: 56%;
        left: 45%;
    }


    .right-photo img {
        position: absolute;
        width: 25rem;
        height: 18rem;
        bottom: 0;
        left: -1rem;
        z-index: 10;
    }


    .arrow {
        position: absolute;
        font-size: 7rem;
        z-index: 15;
        font-weight: bold;
        color: rgba(255, 80, 50, 0.6);
        transform: translateY(-50%);
        font-family: Arial, sans-serif;
    }

    .arrow.left {
        top: 6rem;
        left: -2rem;
    }

    .arrow.right {
        right: -0.5rem;
        bottom: -2rem;
    }

}

@media screen and (max-width: 960px) {
    .banner {
        margin-top: 4rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
        height: auto;
    }


    .left-photo {
        justify-content: center;
        margin-top: 7.5rem;
    }

    .content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .content h1 {
        font-size: 1.8rem;
        padding-left: 0rem;
        text-align: center;
    }

    .content h2 {
        font-size: 1.5rem;
        margin: 0.2rem 0 1rem;
        font-weight: 600;
        text-align: center;
    }

    .content h3 {
        font-size: 1.7rem;
        margin: 0 1rem 1rem;

    }

    .project-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .resume-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .left-photo,
    .right-photo {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        position: relative;
    }

    .rightside {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto;
        border: none;
    }

    .round {
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        left: 50%;
        top: 1rem;
        transform: translateX(-50%);
    }

    /* Position image at the bottom of the .rightside (relative container) */
    .right-photo img {
        position: absolute;
        width: 22rem;
        height: 15rem;
        left: 45%;
        bottom: -1rem;
        transform: translateX(-50%);
        z-index: 10;
    }

    .arrow {
        position: absolute;
        font-size: 7rem;
        z-index: 15;
        font-weight: bold;
        color: rgba(255, 80, 50, 0.6);
        transform: translateY(-50%);
        font-family: Arial, sans-serif;
    }

    .arrow.left {
        top: 6rem;
        left: -2.5rem;
    }

    .arrow.right {
        right: -3rem;
        bottom: -2rem;
    }

}

@media screen and (max-width: 530px) {
    .banner {
        gap: 1rem;

    }

    .left-photo {
        height: 9rem;
    }

    .right-photo {
        height: 22rem;
    }

    .content {
        gap: 0.9rem;
        justify-content: center;
        align-items: center;
    }

    .content h1 {
        font-size: 1.3rem;
        padding-left: 0rem;
        text-align: center;
        font-weight: 600;

    }

    .content h2 {
        font-size: 1.3rem;
        margin: 0;
        font-weight: 500;
        text-align: center;
    }

    .content h3 {
        font-size: 1.3rem;
        margin: 0 1rem 1rem;
        font-weight: 500;


    }

    .project-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .resume-btn a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }


    .rightside {
        max-width: 350px;
        height: 350px;

    }

    .round {
        width: 266px;
        height: 266px;
        left: 48%;
        top: 5rem;
        border: 1.3rem solid var(--orange);
        transform: translateX(-50%);
    }

    /* Position image at the bottom of the .rightside (relative container) */
    .right-photo img {
        position: absolute;
        width: 21rem;
        height: 14.5rem;
        left: 42%;
        bottom: -1rem;
        transform: translateX(-50%);
        z-index: 10;
    }

    .arrow {
        position: absolute;
        font-size: 5rem;
        z-index: 15;
        font-weight: bold;
        color: rgba(255, 80, 50, 0.6);
        transform: translateY(-50%);
        font-family: Arial, sans-serif;
    }

    .arrow.left {
        top: 7rem;
        left: 0.5rem;
    }

    .arrow.right {
        right: 0rem;
        bottom: -1rem;
    }

}

/* =-------------------------languaage ------------- */
.lang {
    background: var(--background);
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    padding: 1rem;
    flex-wrap: wrap;

}

.lang h1 {
    color: var(--nevy);
    font-size: 1rem;
    font-weight: 500;
    font-family: Segoe UI;
    padding-inline: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;

}

@media screen and (max-width:768px) {
    .lang {
        padding: 0.5rem;
    }

    .lang h1 {
        font-size: 0.9rem;
        padding-block: 0.5rem;
    }

}

/* ----------------------about-me------------ */

.about-section {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-dark);
    padding: 3rem 2rem 1rem;
    color: var(--text-light);
    gap: 2rem;
}

.services {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.line {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.line-1 {
    color: var(--orange);
    width: 2px;
    height: 3rem;
    background-color: var(--orange);
}

.cr {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--orange);
    border-radius: 50%;
}

.line-right {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.line-right h3 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--nevy);
}

.service-item img {
    width: 45px;
    height: 48px;
}

.number {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}

.about-content {
    flex: 2 1 300px;
}

.about-content h2 {
    font-size: 2rem;
    color: var(--nevy);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

.about-content p {
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--nevy);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.stat {
    text-align: left;
}

.stat .number {
    font-size: 2rem;
    font-weight: bold;
}

.plus {
    color: var(--orange);
}

.percent {
    color: var(--orange);
}

.about-section .services,
.about-section .about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

/* When section is visible, animate in */
.about-section.visible .services {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.about-section.visible .about-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
    /* delay, so it shows after services */
}


@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .services {
        align-items: center;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .service-item {
        flex-direction: column;
    }

    .services {
        gap: 0.5rem;
    }

    .line {
        gap: 0.2rem;
    }

    .line-1 {
        width: 2px;
        height: 2rem;
    }

    .cr {
        width: 0.5rem;
        height: 0.5rem;
    }

    .line-right {
        display: flex;
        gap: 0.8rem;
    }

    .service-item {
        gap: 0rem;
    }

    .line-right h3 {
        font-size: 1.1rem;
    }

    .service-item img {
        width: auto;
        height: 40px;
    }

    .number {
        font-weight: 500;
    }

    .about-content {
        margin-block: 1.5rem 1rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1rem;

    }

    .stats {
        gap: 4rem;
    }

    .stat .number {
        font-size: 2rem;
    }

}

@media (max-width: 530px) {
    .about-content h2 {
        font-size: 1.6rem;
    }

    .number {
        font-size: 1.5rem;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.5rem 1rem;
    }

    .service-item {
        flex-direction: column;
    }

    .services {
        gap: 0.5rem;
    }

    .line {
        gap: 0.2rem;
    }

    .line-1 {
        width: 2px;
        height: 2rem;
    }

    .line-right h3 {
        font-size: 1rem;
        font-weight: 500;
    }

    .service-item img {
        width: auto;
        height: 2.8rem;
    }


    .about-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;

    }

    .about-content p {
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        margin-top: 0.3rem;
        padding-inline: 0rem;

    }

    .stats {
        gap: 2rem;
    }

    .stat .number {
        font-size: 1.2rem;
    }
}

/* -----------------------services------------------------ */
.service-section {
    margin-inline: 1rem;
}

.service-container {
    margin: 0 auto 1rem;
    border: 2.5px solid var(--orange);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    max-width: 1350px;
    position: relative;
}

.heading {
    text-align: center;
    position: absolute;
}

.heading h1 {
    background-color: var(--orange);
    color: white;
    padding: 0.3rem 1.5rem 0.6rem;
    font-size: 1.3rem;
    top: 0;
    font-weight: 500;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 0 0 15px 15px;
}

.service-div {
    margin-top: 5rem;
    padding: 1rem 3rem 1rem;

}

.service1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8rem;
    row-gap: 2rem;
}


.service-l img {
    width: 26rem;
    height: 20rem;

}

.service-r {
    background: linear-gradient(180deg, #ff99333f, #ffffff2e, #13880843);
    /* Saffron → White → Green */
    border-radius: 20px;
    padding: 1.5rem 1rem 0.8rem;
    color: #1a1a1a;
    /* Dark text for readability on bright background */
    flex: 1;
    max-width: 31rem;
    border: 1.3px solid var(--nevy);
    /* Dark blue/navy border for contrast */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Optional for a card-like feel */
}

.service-r h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-r p {
    color: var(--nevy);
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1.5rem;
}

.service-l img,
.service-r {
    opacity: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: none;
}

.im2 img {
    width: 30rem;
}

/* Slide up for .service-l img */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flip in for .service-r */
@keyframes flipIn {
    0% {
        opacity: 0;
        transform: rotateY(90deg);
    }

    100% {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Classes to trigger animations */
.animate-slideUp {
    animation: slideUp 1s forwards;
}

.animate-flipIn {
    animation: flipIn 1s forwards;
}

.service-r ul {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.service-r ul li {
    margin-bottom: 0.5rem;
    color: var(--orange);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.service-r ul i {
    font-size: 0.3rem;
}

.btn-wrapper {
    text-align: center;
    /* Center horizontally */
}

.pricing-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 0.4rem;
    border: 1.3px solid var(--orange);
    color: var(--nevy);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--style);
}

.pricing-btn i {
    font-size: 0.9rem;
    margin-inline: 0.5rem;
}

.pricing-btn:hover {
    background: var(--orange);
    color: white;
}

@media (max-width: 768px) {
    .service-container {
        border-radius: 8px;
    }

    .heading h1 {
        padding: 0.3rem 1.5rem 0.6rem;
        font-size: 1.2rem;
    }

    .service-div {
        margin-top: 4rem;
        padding: 1rem 2rem 1rem;

    }

    .service1 {
        column-gap: 2rem;
        row-gap: 1rem;
    }

    .s1,
    .s3 {
        flex-direction: column-reverse;
    }

    .s2 {
        flex-direction: column;
    }

    .service-l img {
        width: 26rem;
        height: 20rem;

    }

    .service-r {
        border-radius: 20px;
        padding: 1.5rem 1rem 0.8rem;
    }

    .service-r h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-r p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-r ul {
        margin-top: 1rem;
    }

    .service-r ul li {
        margin-bottom: 0.5rem;
        gap: 0.7rem;
        font-size: 0.9rem;
    }

    .service-r ul i {
        font-size: 0.3rem;
    }

    .pricing-btn {
        margin-top: 1rem;
        padding: 0.6rem 0.4rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .pricing-btn i {
        font-size: 0.9rem;
        margin-inline: 0.5rem;
    }

}

@media (max-width: 530px) {
    .service-section {
        margin-inline: 0rem;
    }

    .service-container {
        margin: 0 0 1rem;
        border-radius: 10px;
    }

    .heading h1 {
        padding: 0.2rem 1.1rem 0.3rem;
        font-size: 1.3rem;
        border-radius: 0 0 15px 15px;
    }

    .service-div {
        margin-top: 4rem;
        padding: 0.5rem;

    }

    .service1 {
        column-gap: 0rem;
        row-gap: 1rem;
    }

    .im1 img {
        width: 22rem;
        height: 15rem;
    }

    .im2 img {
        width: 23rem;
        height: 15rem;
    }

    .im3 img {
        width: 22rem;
        height: 16rem;
    }


    .service-r {
        border-radius: 10px;
        padding: 1rem 0.5rem 0.5rem;
        width: 100%;
    }

    .service-r h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .service-r p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-r ul {
        margin-top: 0.5rem;
    }

    .service-r ul li {
        margin-bottom: 0.5rem;
        gap: 0.7rem;
        font-size: 0.8rem;
    }

    .service-r ul i {
        font-size: 0.3rem;
    }

    .pricing-btn {
        margin-top: 1rem;
        padding: 0.5rem 0.4rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .pricing-btn i {
        font-size: 0.8rem;
        margin-inline: 0.5rem;
    }
}

@media (max-width: 370px) {
    .im1 img {
        width: 18rem;
        height: 13rem;
    }

    .im2 img {
        width: 18rem;
        height: 13rem;
    }

    .im3 img {
        width: 18rem;
        height: 13rem;
    }
}

/* ----------------devo-video-- */
section.video-section {
    text-align: center;
    margin-top: 1rem;
    padding: 60px 20px;
}

.video-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    font-size: 2rem;
    color: var(--nevy);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.video-wrapper {
    position: relative;
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-wrapper video {
    width: 100%;
    display: none;
    border-radius: 12px;
}

.thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.342);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 22px 35px;
    transition: 0.3s ease;
}

.thumbnail:hover .play-btn {
    background: linear-gradient(180deg, #ff993315, #ffffff16, #1388082b);
    color:rgba(255, 0, 0, 0.354);
}

@media (max-width: 768px) {

    .video-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
}

/* Responsive Design */
@media (max-width: 570px) {
  section.video-section {
    text-align: center;
    margin-top: 1rem;
    padding:1rem 0.5rem;
}

    .video-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .play-btn {
        font-size: 40px;
        padding: 12px 18px;
    }
}

/* ---------------we work-------- */
.work-section {
    margin: 3rem 1rem 1rem;
}

.card-item {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem;
}


.how-we-work h2 {
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-size: 2rem;
    color: var(--nevy);
    margin-bottom: 1rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.how-we-work p {
    color: var(--nevy);
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 1rem;
    max-width: 640px;
    font-family: var(--style);
}

.process-card {
    position: relative;
    border: 1.5px solid var(--nevy);
    background: linear-gradient(180deg, #ff99333f, #ffffff2e, #13880843);
    /* Saffron → White → Green */
    border-radius: 20px;
    color: var(--nevy);
    flex: 1 1 260px;
    padding: 1.5rem 1rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.process-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.6, 0, 0.4, 1), transform 0.6s cubic-bezier(0.6, 0, 0.4, 1);
}

.process-card.show {
    opacity: 1;
    transform: translateY(0);
}

.how-we-work {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.how-we-work.show {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    position: absolute;
    font-size: 6.5rem;
    font-weight: 500;
    color: rgb(167 148 118 / 28%);
    top: 28%;
    font-family: var(--style);
    left: 45%;
}

.process-card:hover {
    transform: translateY(-4px) scale(1.01);
}

.process-card .icon {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
}

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    margin-bottom: 0.6rem;
}

.process-card p {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--nevy);
    line-height: 1.5;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

}

@media (max-width: 768px) {
    .work-section {
        margin: 2.5rem 0.5rem 1rem;
    }

    .card-item {
        gap: 1rem;
        padding: 0.5rem;
    }


    .how-we-work h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .how-we-work p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0 auto 1rem;
        max-width: 640px;
    }


    .process-card {
        border-radius: 1.2rem;
        flex: 1 1 260px;
        padding: 2rem 1.2rem 3rem;
    }

    .process-number {
        font-size: 6rem;
        top: 28%;
        left: 45%;
    }

    .process-card .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .process-card h3 {
        font-size: 1.3rem;
    }

}

@media (max-width: 530px) {
    .card-item {
        gap: 1rem;
        padding: 0rem;
    }


    .how-we-work h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .how-we-work p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0 auto 1rem;
        max-width: 640px;
    }


    .process-card {
        border-radius: 1rem;
        flex: 1 1 260px;
        padding: 1rem 0.5rem 1rem;
    }

    .process-number {
        font-size: 6rem;
        top: 10%;
        left: 45%;
    }

    .process-card .icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .process-card h3 {
        font-size: 1.18rem;
        font-weight: 500;
        font-family: var(--style);

    }

    .process-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

}

/* ----------------why choose us------------------ */
.why-work {
    text-align: center;
    margin: 3.5rem 0 3.5rem;
}

.why-work h1 {
    letter-spacing: 0.02em;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--nevy);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.why-work p {
    color: var(--nevy);
    font-family: var(--style, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 1rem;
    max-width: 640px;
}

/* Desktop: Circular Features */
.why-choose-desktop-circle {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-circle-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--orange);
    z-index: 1;
    opacity: 0.5;
}

.why-choose-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.why-feature {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #FF9933, #FFFFFF, #138808);
    /* Saffron → White → Green */
    border-radius: 50%;
    border: 2px solid var(--nevy);
    color: var(--orange);
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 18px #41330e44;
    transition: background 0.18s, box-shadow 0.2s, transform 0.19s;
    opacity: 0.97;
}

.why-feature.active,
.why-feature:hover {
    transform: scale(1.05);
    z-index: 9;
    color: var(--nevy);
}

.why-choose-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: linear-gradient(180deg, #FF9933, #FFFFFF, #138808);
    /* Saffron → White → Green */
    border: 2px solid var(--nevy);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
    transition: box-shadow 0.28s;
    padding: 15px;
    pointer-events: none;
}

.why-choose-center h2 {
    font-size: 1.20rem;
    margin-bottom: 11px;
    font-family: var(--style, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    font-weight: 500;
    color: var(--nevy);
}

.why-choose-center p {
    color: var(--nevy);
    line-height: 1.55;
    font-size: 1rem;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Entrance Animation for Section */
.why-choose-us-section {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.3, 0.7, 0.52, 1), transform 0.7s cubic-bezier(0.3, 0.7, 0.52, 1);
    will-change: opacity, transform;
}

.why-choose-us-section.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* MOBILE VIEW - Stacked Card Features, Hide Circle */
.why-choose-features-mobile {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.why-feature-mobile {
    display: flex;
    align-items: center;
    border: 2px solid var(--nevy);
    background: linear-gradient(180deg, #ff99333f, #ffffff2e, #13880843);
    border-radius: 14px;
    border: 1px solid var(--nevy);
    color: var(--nevy);
    padding: 18px 15px;
    opacity: 0.98;
    margin-inline: 0.5rem;
}

.why-feature-mobile i {
    font-size: 2rem;
    color: var(--orange);
    margin-right: 16px;
    flex-shrink: 0;
}

.why-title {
    font-size: 1.12rem;
    color: var(--nevy);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin-bottom: 4px;
}

.why-desc {
    color: var(--nevy);
    font-size: 0.9rem;
    font-family: var(--style, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif);
    line-height: 1.58;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-feature-mobile {
    opacity: 0;
    /* Initially hidden */
    animation-fill-mode: forwards;
}

.why-feature-mobile.animated {
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

/* Responsive: Show Cards, Hide Circle on Mobile */
@media (max-width: 768px) {
    .why-work {
        margin: 3rem 0 3rem;
    }

    .why-work h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .why-work p {
        font-size: 1rem;
        margin: 0 auto 1rem;
        padding-inline: 0.5rem;
        text-align: center;
        max-width: 470px;
    }

    .why-choose-circle-outline {
        border: 2px solid var(--accent, gold);
    }

    .why-choose-center h2 {
        font-size: 1.20rem;
        margin-bottom: 11px;
        font-weight: 500;
    }

    .why-choose-center p {
        line-height: 1.5;
        font-size: 0.9rem;
    }
}

@media (max-width: 530px) {
    .why-choose-desktop-circle {
        display: none;
    }

    .why-feature-mobile {
        opacity: 1;
    }

    .why-choose-features-mobile {
        display: flex;
    }

    .why-work {
        margin: 2.5rem 0 1.5rem;
    }

    .why-work h1 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
        font-weight: 700;
    }

    .why-work p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0 auto 1rem;
        max-width: 640px;
    }
}

/* <!-- ---------------------photos----------------------------- --> */

.portfolio-section {
    max-width: 1100px;
    margin: 2.5rem auto 1rem;
    padding: 24px 8px;

}

/* Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 32px;
}

.portfolio-section.hidden-left {
    transition: all 0.8s ease;
}

.tab-btn {
    border: 1px solid var(--orange);
    font-weight: 500;
    padding: 10px 1.2rem;
    border-radius: 32px;
    cursor: pointer;
    font-size: 1.14rem;
    background: transparent;
    color: var(--nevy);
    font-family: var(--style);
    font-weight: 400;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--orange);
    color: white;
}

/* Info Section */
.tab-info {
    text-align: center;
    margin-bottom: 2rem;
}

.tab-heading {
    text-align: center;
    font-size: 1.5rem;
    color: var(--nevy);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.tab-desc {
    font-size: 1.1rem;
    color: var(--nevy);
    text-align: center;
    font-family: var(--style);
}

.view-more {
    color: var(--orange);
    margin-left: 6px;
    text-decoration: underline;
    transition: color 0.2s;
}

.view-more i {
    font-size: 1rem;
    margin-left: 0.5rem;
}

.view-more:hover {
    color: var(--nevy);
}

.slider-group {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.slider-group.active {
    display: flex;
    /* show active */
}

.slider-img {
    height: 380px;
    width: 200px;
    object-fit: contain;
    border-radius: 5px;
}

.img1,
.img2,
.img3 {
    height: 450px;
    width: 270px;
}

.slider-img-big {
    height: 27rem;
    width: 42rem;
}

.hidden-left {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 1s ease-out;
}

/* Visible state */
.show-left {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
    .portfolio-section {
        max-width: 700px;
        margin: 2.5rem auto 24rem;
        padding: 20px 8px;
    }

    /* Tabs */
    .portfolio-tabs {
        gap: 1rem;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 8px 1rem;
        border-radius: 30px;
        font-size: 1rem;
    }

    .tab-heading {
        font-size: 1.3rem;
    }

    .tab-desc {
        font-size: 0.9rem;
    }

    .view-more {
        font-size: 0.9rem;
    }

    .view-more i {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .slider-group {
        gap: 25px;
        position: relative;
    }

    .slider-img {
        position: absolute;

    }

    .img1 {
        top: 0rem;
        height: 22rem;
        width: 18rem;
        z-index: 6;
        right: 4rem;
        transition: all 0.3s ease;
    }

    .img2 {
        height: 22rem;
        width: 18rem;
        top: 0rem;
        z-index: 5;
        right: 12rem;
        transition: all 0.3s ease;

    }

    .img3 {
        height: 22rem;
        width: 18rem;
        top: 0rem;
        z-index: 4;
        left: 3rem;
        transition: all 0.3s ease;
    }

    .img4 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        left: 5rem;
        transition: all 0.3s ease;
    }

    .img5 {
        height: 22rem;
        width: 12rem;
        top: 0rem;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .img6 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        right: 5rem;
        transition: all 0.3s ease;
    }

    .slider-img-big {
        position: absolute;
        top: 0rem;
        height: 20rem;
        width: 32rem;
        margin-inline: auto;
    }
}

@media (max-width: 530px) {
    .portfolio-section {
        max-width: 530px;
        padding: 1rem 8px;
    }

    /* Tabs */
    .portfolio-tabs {
        gap: 0.3rem;
        margin-bottom: 1.5rem;
        justify-content: space-around;
    }

    .tab-btn {
        padding: 8px 9px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

    .tab-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .tab-desc {
        font-size: 1rem;
        max-width: 22rem;
        margin-inline: auto;
        line-height: 1.5rem;
    }

    .view-more {
        font-size: 1rem;
    }

    .view-more i {
        font-size: 1rem;
        margin-left: 0.3rem;
    }

    .slider-group {
        position: relative;
    }

    .slider-img {
        position: absolute;

    }

    .img1 {
        top: 0rem;
        height: 19rem;
        width: 12rem;
        z-index: 6;
        right: 1rem;
        transition: all 0.3s ease;
    }

    .img2 {
        height: 19rem;
        width: 12rem;
        top: 0rem;
        z-index: 5;
        right: 7rem;
        transition: all 0.3s ease;

    }

    .img3 {
        height: 19rem;
        width: 12rem;
        top: 0rem;
        z-index: 4;
        left: 1rem;
        transition: all 0.3s ease;
    }

    .img4 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        left: -1rem;
        transition: all 0.3s ease;
    }

    .img5 {
        height: 22rem;
        width: 12rem;
        top: 0rem;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .img6 {
        height: 19rem;
        width: 12rem;
        top: 2rem;
        z-index: 8;
        right: -1rem;
        transition: all 0.3s ease;
    }

    .slider-img-big {
        height: 15rem;
        width: 19.5rem;
    }
}
/* -----------------------------------------------for the mission and vission ------------------------------- */
/* SECTION BACKGROUND */
#mission {
    background: var(--background);
    padding: 80px 0;
    font-family: var(--style);
}

/* LAYOUT GRID */
#mission .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* CARD DESIGN */
#mission .box {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#mission .box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.20);
}

/* ICON BADGE */
#mission .icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* GRADIENT COLORS */
.gradient-orange {
    background: linear-gradient(135deg, var(--orange), #ff9b56);
}
.gradient-green {
    background: linear-gradient(135deg, var(--green), #47d37b);
}

/* HEADINGS */
#mission h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--nevy);
}

/* TEXT */
#mission p {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
}

/* ANIMATIONS */
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-slide-left { animation: slideLeft 0.8s ease forwards; }
.animate-slide-right { animation: slideRight 0.8s ease forwards; }

/* =================== RESPONSIVE IMPROVEMENTS =================== */

/* Tablets */
@media (max-width: 992px) {
    #mission {
        padding: 65px 0;
    }
    #mission .box {
        padding: 32px;
    }
    #mission h3 {
        font-size: 26px;
    }
}

/* Large Phones */
@media (max-width: 768px) {
    #mission {
        padding: 55px 0;
    }
    #mission .container {
        max-width: 94%;
        grid-template-columns: 1fr;
        gap: 28px;
    }
    #mission .box {
        padding: 30px;
        border-radius: 20px;
    }
    #mission h3 {
        font-size: 24px;
    }
    #mission p {
        font-size: 16px;
        line-height: 1.55;
    }
    #mission .icon-wrap {
        width: 55px;
        height: 55px;
        border-radius: 16px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    #mission {
        padding: 45px 0;
    }
    #mission .box {
        padding: 24px;
    }
    #mission h3 {
        font-size: 22px;
    }
    #mission p {
        font-size: 15.5px;
    }
    #mission .icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}

/* ---------------------------------- Fro the testimonial section --------------------------------*/
/* SECTION BACKGROUND */
#testimonials {
    background: #f7f7f7;
    padding: 80px 0;
    font-family: var(--style);
}

/* HEADINGS */
#testimonials h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--nevy);
}

#testimonials p.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
#testimonials .testimonial-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* CARD */
#testimonials .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#testimonials .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* PROFILE BADGE */
#testimonials .profile-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

/* NAME + RATING */
#testimonials .profile-info p {
    font-size: 18px;
    font-weight: 600;
    color: var(--nevy);
}
#testimonials .rating {
    font-size: 18px;
    color: #ffcc33;
}

/* REVIEW TEXT */
#testimonials .testimonial-card p.review-text {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* BADGES */
.gradient-orange {
    background: linear-gradient(135deg, var(--orange), #ff9b56);
}
.gradient-green {
    background: linear-gradient(135deg, var(--green), #47d37b);
}
.gradient-blue {
    background: linear-gradient(135deg, #007bff, #6cb3ff);
}

/* ANIMATION */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUp 0.9s ease forwards;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    #testimonials h2 {
        font-size: 32px;
    }

    #testimonials p.section-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    #testimonials .testimonial-card {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    #testimonials h2 {
        font-size: 26px;
    }

    #testimonials .testimonial-grid {
        gap: 22px;
    }

    #testimonials .testimonial-card {
        padding: 22px;
        border-radius: 18px;
    }

    #testimonials .profile-info p,
    #testimonials p.review-text {
        font-size: 15.5px;
    }
}


/*     <!-- ---------------------------------get-quete-------------------- --> */
.quote-section {
    padding: 1rem;
    text-align: center;
    animation: queate 0.5s ease;
}

.quote-section.show {
    display: block;
    animation: fadeSlide 0.8s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-heading h2 {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--style);
    color: var(--nevy);
    margin-bottom: 10px;
}

.quote-heading p {
    font-size: 1.1rem;
    color: var(--nevy);
    font-family: var(--style);
    margin-bottom: 2rem;
    text-align: center;
}

.quote-form {
    background: linear-gradient(180deg, #ff99333f, #ffffff2e, #13880843);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    border: 1.5px solid var(--nevy);
    max-width: 550px;
    margin: 0rem auto;


}

.form-group {
    text-align: left;
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    color: var(--nevy);
    margin-bottom: 0.6rem;
    font-size: 1.09rem;
    font-family: var(--style);
    font-weight: 400;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--orange);
    background: linear-gradient(180deg, #ff99332d, #ffffff24, #13880829);
    color: var(--nevy);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--nevy);
}

.submit-btn {
    background: var(--orange);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 28px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.hidden {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}

/* When visible */
.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 530px) {
    .quote-section {
        padding: 0.5rem;
    }

    .quote-heading h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        line-height: 2rem;
    }

    .quote-heading p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .quote-form {
        border-radius: 12px;
        padding: 2rem 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 8px 10px;
        border-radius: 5px;
        background: linear-gradient(180deg, #ff99332d, #ffffff24, #13880829);
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 8px 32px;
        border-radius: 20px;
        margin-top: 0.5rem;
    }
}

/* -----------------------footer-section--------------- */
.footer {
    background: #000000f8;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-family: var(--style);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-about .logo1 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-about .logo1 img {
    width: 3.8rem;
    height: 3.8rem;
}

.logo1 h1 {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--style);
    font-weight: 500;
}

.footer-about .about-text {
    font-size: 0.8rem;
    color: #bbb;
    font-weight: 600;
    line-height: 1.45;
    font-family: var(--style);
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}


.footer-links ul li,
.footer-products ul li {
    margin: 6px 0;
}

.footer-links a,
.footer-products a {
    color: #ccc;
    font-size: 0.9rem;
    font-family: var(--style);
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--accent);
}

.footer-contact .social-icons {
    display: flex;
    gap: 0.6rem;
}

.footer-contact p span {
    margin-left: 1rem;
}

.footer-contact .social-icons a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s;
}

.footer-contact a {
    color: #fff;
    line-height: 0.5;
    font-size: 0.9rem;
    font-family: var(--style);
    display: block;
    margin-block: 0.8rem;
}

.footer-contact .social-icons i:hover {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 6px 0;
    color: #fff;
    line-height: 1.5;
    text-align: start;

}

.footer-contact i {
    margin-right: 8px;
    color: #fff;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom .policy-links {
    margin-bottom: 8px;
}

.footer-bottom .policy-links a {
    color: #aaa;
    margin: 0 10px;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom .policy-links a:hover {
    color: var(--accent);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom span {
    color: var(--orange);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 530px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }


    .footer-about .logo1 {
        gap: 0.5rem;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .footer-about .logo1 img {
        width: 4rem;
        height: 4rem;
    }

    .logo1 h1 {
        font-size: 1.18rem;
    }

    .footer-about .about-text {
        font-size: 0.8rem;
        line-height: 1.58;
    }

    .footer-contact p span {
        margin-left: 0rem;
    }


    .footer-links h3,
    .footer-products h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }


    .footer-links ul li,
    .footer-products ul li {
        margin: 10px 0;
    }

    .footer-links a,
    .footer-products a {
        font-size: 0.9rem;
    }

    .footer-contact .social-icons {
        gap: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-contact .social-icons a {
        font-size: 1.5rem;
    }

    .footer-contact a {
        font-size: 0.9rem;
        margin-block: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin: 9px 0;
        line-height: 1.5;
        text-align: center;

    }

    .footer-contact i {
        margin-right: 8px;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .footer-bottom .policy-links {
        margin-bottom: 8px;
    }

    .footer-bottom .policy-links a {
        margin: 0 10px;
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .footer-bottom span {
        font-weight: 500;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact .social-icons {
        justify-content: center;
    }
}