/* header style start  */
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-c-cstm {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 5rem;
    height: 75px;
    width: 100%;
}

.logo img {
    max-width: 180px;
    height: 23px;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-links a {
    font: 500 1rem var(--font-primary);
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #f57f20;
}

.dropdown {
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .nav-c-cstm {
        padding: 0 1rem;
    }

    .navbar {
        top: 0;
        padding: 0 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: -110%;
        width: 100%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        transition: left 0.3s ease;
        gap: 1rem;
        display: flex;
        padding: 0;
        justify-content: flex-start;
        padding-top: 5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
}

/* header style end  */


/* hero section style start  */
.hero-wrapper {
    position: relative;
    height: 100vh;
    background-color: var(--primary-color);
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

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

.hero-contents {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 4rem;
}

.h-content-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.h-c {
    max-width: 400px;
    width: 100%;
}

.h-content-wrap h1 {
    font: 500 3rem var(--font-primary);
    color: var(--primary-text-color);
}

.h-content-wrap p {
    font: 300 1.2rem var(--font-primary);
    color: var(--secondary-text-color);
    line-height: 1.3;
}


/* Mobile - Extra Small (below 360px) */
@media screen and (max-width: 360px) {
    .hero-wrapper {
        height: 90vh;
    }

    .hero-contents {
        padding: 0 0 2rem;
    }

    .h-content-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-c {
        max-width: 100%;
    }

    .h-content-wrap h1 {
        font-size: 1.8rem;
    }

    .h-content-wrap p {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    .hero-chart {
        display: none;
    }

    .hero-image img {
        max-width: 80%;
        height: auto;
    }
}

/* Mobile - Small (360px - 559px) */
@media screen and (min-width: 360px) and (max-width: 559px) {
    .hero-wrapper {
        height: 90vh;
    }

    .hero-contents {
        padding: 0 0 2.5rem;
    }

    .h-content-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-c {
        max-width: 100%;
    }

    .h-content-wrap h1 {
        font-size: 2rem;
    }

    .h-content-wrap p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .hero-chart {
        display: none;
    }

    .hero-image img {
        max-width: 85%;
        height: auto;
    }
}

/* Tablet - Small (560px - 768px) */
@media screen and (min-width: 560px) and (max-width: 768px) {
    .hero-wrapper {
        height: 95vh;
    }

    .hero-contents {
        padding: 0 0 3rem;
    }

    .h-content-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .h-c {
        max-width: 100%;
    }

    .h-content-wrap h1 {
        font-size: 2.3rem;
    }

    .h-content-wrap p {
        font-size: 1.1rem;
        margin-top: 0.8rem;
    }

    .hero-chart {
        display: none;
    }

    .hero-image img {
        max-width: 70%;
        height: auto;
    }
}

/* Tablet - Medium (769px - 991px) */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .hero-wrapper {
        height: 80vh;
    }

    .hero-contents {
        padding: 0 0 3.5rem;
    }

    .h-content-wrap h1 {
        font-size: 2.5rem;
    }

    .h-content-wrap p {
        font-size: 1.1rem;
        margin-top: 0.8rem;
    }

    .hero-chart {
        max-width: 250px;
    }

    .hero-chart img {
        width: 100%;
        height: auto;
    }

    .hero-image img {
        max-width: 65%;
        height: auto;
    }
}

/* Desktop - Small (992px - 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .h-content-wrap h1 {
        font-size: 2.7rem;
    }

    .h-content-wrap p {
        font-size: 1.15rem;
    }

    .hero-chart {
        max-width: 280px;
    }

    .hero-chart img {
        width: 100%;
        height: auto;
    }

    .hero-image img {
        max-width: 60%;
        height: auto;
    }
}

/* Desktop - Medium (1201px - 1400px) */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .h-content-wrap h1 {
        font-size: 2.9rem;
    }

    .h-content-wrap p {
        font-size: 1.18rem;
    }

    .hero-chart {
        max-width: 300px;
    }

    .hero-chart img {
        width: 100%;
        height: auto;
    }

    .hero-image img {
        max-width: 55%;
        height: auto;
    }
}

/* hero section style end  */


/* about section style start  */
.about-section {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    padding: 0 1rem;
}

.about-section p {
    font: 500 2rem var(--font-primary);
    color: var(--primary-text-color);
    text-align: center;
    max-width: 1000px;
    width: 100%;
    line-height: 1.4;
}

/* ===== Responsive Breakpoints ===== */

/* Extra Small Devices (up to 360px) */
@media screen and (max-width: 360px) {
    .about-section {
        height: auto;
        padding: 3rem 1rem;
    }

    .about-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Small Devices (361px - 559px) */
@media screen and (min-width: 360px) and (max-width: 559px) {
    .about-section {
        height: auto;
        padding: 4rem 1.2rem;
    }

    .about-section p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Medium Devices (560px - 768px) */
@media screen and (min-width: 560px) and (max-width: 768px) {
    .about-section {
        height: auto;
        padding: 5rem 2rem;
    }

    .about-section p {
        font-size: 1.25rem;
        line-height: 1.6;
        max-width: 700px;
    }
}

/* Large Tablets / Small Laptops (769px - 991px) */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .about-section {
        height: 90vh;
        padding: 5rem 3rem;
    }

    .about-section p {
        font-size: 1.5rem;
        line-height: 1.5;
        max-width: 800px;
    }
}

/* Desktops (992px - 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .about-section {
        height: 100vh;
        padding: 6rem 4rem;
    }

    .about-section p {
        font-size: 1.75rem;
        line-height: 1.4;
        max-width: 900px;
    }
}

/* about section style end */


/* video section style start  */
.video-section {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.video-section-wrap {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.video-text-content-wrp {
    max-width: 500px;
}

.video-text-content-wrp h3 {
    font: 500 2rem var(--font-primary);
    color: var(--primary-text-color);
}

.video-text-content-wrp p {
    font: 300 1.3rem var(--font-primary);
    color: var(--secondary-text-color);
    line-height: 1.3;
}

.video-side-wrp {
    display: flex;
    gap: 1rem;
}

.video-one {
    width: fit-content;
    padding: 0.5rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    background: #fff;
}

.video-one iframe {
    border-radius: 2rem;
}

/* Mobile - Extra Small (below 360px) */
@media screen and (max-width: 360px) {
    .video-section {
        padding: 40px 0;
    }

    .video-section-wrap {
        flex-direction: column;
        gap: 2rem;
    }

    .video-text-content-wrp {
        max-width: 100%;
        text-align: center;
    }

    .video-text-content-wrp h3 {
        font-size: 1.5rem;
    }

    .video-text-content-wrp p {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .video-side-wrp {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .video-one {
        width: 100%;
        max-width: 280px;
    }

    .video-one iframe {
        width: 100%;
        height: 320px;
    }
}

/* Mobile - Small (360px - 559px) */
@media screen and (min-width: 360px) and (max-width: 559px) {
    .video-section {
        padding: 50px 0;
    }

    .video-section-wrap {
        flex-direction: column;
        gap: 2.5rem;
    }

    .video-text-content-wrp {
        max-width: 100%;
        text-align: center;
    }

    .video-text-content-wrp h3 {
        font-size: 1.6rem;
    }

    .video-text-content-wrp p {
        font-size: 1.05rem;
        margin-top: 0.5rem;
    }

    .video-side-wrp {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .video-one {
        width: 100%;
        max-width: 320px;
    }

    .video-one iframe {
        width: 100%;
        height: 350px;
    }
}

/* Tablet - Small (560px - 768px) */
@media screen and (min-width: 560px) and (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-section-wrap {
        flex-direction: column;
        gap: 3rem;
    }

    .video-text-content-wrp {
        max-width: 100%;
        text-align: center;
    }

    .video-text-content-wrp h3 {
        font-size: 1.75rem;
    }

    .video-text-content-wrp p {
        font-size: 1.1rem;
        margin-top: 0.6rem;
    }

    .video-side-wrp {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .video-one {
        width: fit-content;
    }

    .video-one iframe {
        width: 220px;
        height: 320px;
    }
}

/* Tablet - Medium (769px - 991px) */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .video-section {
        padding: 70px 0;
    }

    .video-section-wrap {
        flex-direction: column;
        gap: 3rem;
    }

    .video-text-content-wrp {
        max-width: 100%;
        text-align: center;
    }

    .video-text-content-wrp h3 {
        font-size: 1.85rem;
    }

    .video-text-content-wrp p {
        font-size: 1.15rem;
        margin-top: 0.6rem;
    }

    .video-side-wrp {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .video-one iframe {
        width: 230px;
        height: 330px;
    }
}

/* Desktop - Small (992px - 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .video-section {
        padding: 80px 0;
    }

    .video-section-wrap {
        gap: 3rem;
    }

    .video-text-content-wrp {
        max-width: 450px;
    }

    .video-text-content-wrp h3 {
        font-size: 1.9rem;
    }

    .video-text-content-wrp p {
        font-size: 1.2rem;
    }

    .video-side-wrp {
        gap: 0.8rem;
    }

    .video-one iframe {
        width: 200px;
        height: 300px;
    }
}

/* Desktop - Medium (1201px - 1400px) */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .video-section {
        padding: 90px 0;
    }

    .video-section-wrap {
        gap: 4rem;
    }

    .video-text-content-wrp {
        max-width: 480px;
    }

    .video-text-content-wrp h3 {
        font-size: 1.95rem;
    }

    .video-text-content-wrp p {
        font-size: 1.25rem;
    }

    .video-side-wrp {
        gap: 0.9rem;
    }

    .video-one iframe {
        width: 230px;
        height: 330px;
    }
}

/* video section style End  */

/* services home section style start  */
.services-section {
    background: #F2EEEE;
    padding: 0 0 5rem;
}

.section-title {
    display: flex;
    justify-content: center;
    margin: 0 0 2rem;
}

.services-section .section-title {
    color: var(--primary-text-color);
}

.section-title h3 {
    font: 600 2rem var(--font-primary);
    padding: 5rem 0;
}

.service-cards-wrp {
    display: flex;
    justify-content: center;
}

.service-cards-wrp-home {
    gap: 0 !important;
}

.service-cards-wrp-home .service-card {
    justify-content: space-between;
}

.service-card {
    width: 320px;
    height: 397px;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0px 4px 4px 0px #00000040;
    /* justify-content: space-between; */
}

.card-home-01 {
    background: url('images/card-001.svg');
    transform: rotate(352deg);
    z-index: 0;
}

.card-home-02 {
    background: url('images/card-002.svg');
    transform: rotate(8deg);
    z-index: 3;
}

.card-home-03 {
    background: url('images/card-003.svg');
    z-index: 2;
}

.card-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.service-page-cards-wrp .card-icon {
    margin-bottom: 4rem;
}

.card-title {
    font: 500 2rem var(--font-primary);
    color: var(--primary-text-color);
    text-align: start;
    max-width: 200px;
    width: 100%;
}

.service-page-cards-wrp .card-title {
    margin-bottom: 1rem;
    min-height: 2.5em;

}

.card-description {
    font: 500 1.2rem var(--font-primary);
    text-align: start;
    margin: 0;
}

.service-page-cards-wrp .card-description {
    margin-top: 3rem;
}


/* Mobile - Extra Small (below 360px) */
@media screen and (max-width: 360px) {
    .services-section {
        padding: 0 0 2rem;
    }

    .section-title {
        margin: 0 0 1.5rem;
    }

    .section-title h3 {
        font-size: 1.5rem;
        padding: 2rem 0;
    }

    .service-cards-wrp {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem !important;
    }

    .service-card {
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 350px;
        padding: 2rem 1.5rem;
        transform: rotate(0deg) !important;
    }

    .card-title {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .card-description {
        font-size: 1rem;
    }
}

/* Mobile - Small (360px - 559px) */
@media screen and (min-width: 360px) and (max-width: 559px) {
    .services-section {
        padding: 0 0 2.5rem;
    }

    .section-title {
        margin: 0 0 1.5rem;
    }

    .section-title h3 {
        font-size: 1.6rem;
        padding: 2.5rem 0;
    }

    .service-cards-wrp {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem !important;
    }

    .service-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 360px;
        padding: 2rem 1.5rem;
        transform: rotate(0deg) !important;
    }

    .card-title {
        font-size: 1.6rem;
        max-width: 100%;
    }

    .card-description {
        font-size: 1.05rem;
    }
}

/* Tablet - Small (560px - 768px) */
@media screen and (min-width: 560px) and (max-width: 768px) {
    .services-section {
        padding: 0 0 3rem;
    }

    .section-title h3 {
        font-size: 1.75rem;
        padding: 3rem 0;
    }

    .service-cards-wrp {
        flex-direction: column;
        align-items: center;
        gap: 2rem !important;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 370px;
        transform: rotate(0deg) !important;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .card-description {
        font-size: 1.1rem;
    }
}

/* Tablet - Medium (769px - 991px) */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .services-section {
        padding: 0 0 3.5rem;
    }

    .section-title h3 {
        font-size: 1.85rem;
        padding: 3.5rem 0;
    }

    .service-cards-wrp {
        flex-wrap: wrap;
        gap: 2rem !important;
    }

    .service-card {
        width: 280px;
        height: 370px;
        transform: rotate(0deg) !important;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-description {
        font-size: 1.15rem;
    }
}

/* Desktop - Small (992px - 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .services-section {
        padding: 0 0 4rem;
    }

    .section-title h3 {
        font-size: 1.9rem;
        padding: 4rem 0;
    }

    .service-cards-wrp {
        gap: 1rem;
    }

    .service-card {
        width: 290px;
        height: 380px;
    }

    .card-title {
        font-size: 1.85rem;
    }

    .card-description {
        font-size: 1.15rem;
    }
}

/* Desktop - Medium (1201px - 1400px) */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .services-section {
        padding: 0 0 4.5rem;
    }

    .section-title h3 {
        font-size: 1.95rem;
        padding: 4.5rem 0;
    }

    .service-card {
        width: 310px;
        height: 390px;
    }

    .card-title {
        font-size: 1.95rem;
    }

    .card-description {
        font-size: 1.18rem;
    }
}

/* services section style End  */


/* why choose section style start  */

.why-choose-section {
    background: #fff;
}

.why-choose-section .section-title {
    color: var(--primary-text-color);
}

.whychoose-contents {
    display: flex;
    justify-content: center;
}

.content-img-btns {
    position: relative;
    max-width: 100%;
}

.content-img-btns img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-btn {
    background-color: #9b7a9b;
    color: #fff;
    font: 300 1.2rem var(--font-primary);
    padding: 12px 24px;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: absolute;
    white-space: nowrap;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Top Button */
.btn-top {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
}

/* Top Right Button */
.btn-top-right {
    top: 22%;
    right: -10%;
}

/* Left Button */
.btn-left {
    top: 30%;
    left: -5%;
    transform: translateY(-50%);
}

.btn-left-bottom {
    top: 65%;
    left: -13%;
    transform: translateY(-50%);
}

/* Right Button */
.btn-right {
    bottom: 25%;
    right: -15%;
}

/* Mobile - Extra Small (below 360px) */
@media screen and (max-width: 360px) {

    .section-title h3 {
        font-size: 1.5rem;
        padding: 2rem 0;
    }

    .custom-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .btn-top {
        top: 2%;
    }

    .btn-top-right {
        top: 18%;
        right: 0%;
    }

    .btn-left {
        top: 28%;
        left: 0%;
    }

    .btn-left-bottom {
        top: 62%;
        left: -1%;
    }

    .btn-right {
        bottom: 22%;
        right: 0%;
    }
}

/* Mobile - Small (360px - 559px) */
@media screen and (min-width: 360px) and (max-width: 559px) {

    .section-title h3 {
        font-size: 1.6rem;
        padding: 2.5rem 0;
    }

    .custom-btn {
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .btn-top {
        top: 2.5%;
    }

    .btn-top-right {
        top: 19%;
        right: 0%;
    }

    .btn-left {
        top: 28%;
        left: 0%;
    }

    .btn-left-bottom {
        top: 63%;
        left: -1%;
    }

    .btn-right {
        bottom: 23%;
        right: 0%;
    }
}

/* Tablet - Small (560px - 768px) */
@media screen and (min-width: 560px) and (max-width: 768px) {

    .section-title h3 {
        font-size: 1.75rem;
        padding: 3rem 0;
    }

    .custom-btn {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .btn-top {
        top: 2.5%;
    }

    .btn-top-right {
        top: 20%;
        right: 0%;
    }

    .btn-left {
        top: 29%;
        left: 0%;
    }

    .btn-left-bottom {
        top: 63.5%;
        left: -1%;
    }

    .btn-right {
        bottom: 24%;
        right: 0%;
    }
}

/* Tablet - Medium (769px - 991px) */
@media screen and (min-width: 769px) and (max-width: 991px) {

    .section-title h3 {
        font-size: 1.85rem;
        padding: 3.5rem 0;
    }

    .custom-btn {
        font-size: 0.95rem;
        padding: 9px 16px;
    }

    .btn-top {
        top: 2.8%;
    }

    .btn-top-right {
        top: 21%;
        right: -1.5%;
    }

    .btn-left {
        top: 29.5%;
        left: 0%;
    }

    .btn-left-bottom {
        top: 64%;
        left: -3%;
    }

    .btn-right {
        bottom: 24.5%;
        right: -4%;
    }
}

/* Desktop - Small (992px - 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {

    .section-title h3 {
        font-size: 1.9rem;
        padding: 4rem 0;
    }

    .custom-btn {
        font-size: 1.05rem;
        padding: 10px 20px;
    }

    .btn-top {
        top: 2.8%;
    }

    .btn-top-right {
        top: 21.5%;
        right: -9.8%;
    }

    .btn-left {
        top: 29.8%;
        left: -4.8%;
    }

    .btn-left-bottom {
        top: 64.5%;
        left: -12%;
    }

    .btn-right {
        bottom: 24.8%;
        right: -14%;
    }
}

/* Desktop - Medium (1201px - 1400px) */
@media screen and (min-width: 1201px) and (max-width: 1400px) {

    .section-title h3 {
        font-size: 1.95rem;
        padding: 4.5rem 0;
    }

    .custom-btn {
        font-size: 1.15rem;
        padding: 11px 22px;
    }

    .btn-top {
        top: 2.9%;
    }

    .btn-top-right {
        top: 21.8%;
        right: -10%;
    }

    .btn-left {
        top: 30%;
        left: -5%;
    }

    .btn-left-bottom {
        top: 65%;
        left: -12.5%;
    }

    .btn-right {
        bottom: 25%;
        right: -14.5%;
    }
}

/* why choose section style End */

/* Testimonials section style start  */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.testimonials-section .section-title {
    color: #ffffff;
}

.testimonials-section .section-title h3 {
    padding: 1rem 0 2rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 450px;
}

.testimonial-card {
    border-radius: 24px;
    padding: 2.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    backdrop-filter: blur(27.600000381469727px);
    border: 1px solid #FFFFFF03;
    background: #FFFFFF52;
    height: fit-content;
    min-height: 576px;
}

.testimonial-header {
    background-color: #F3E8DC;
    border-radius: 15px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    flex-shrink: 0;
}

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

.testimonial-name {
    font: 400 1rem var(--font-primary);
    color: var(--primary-text-color);
}

.testimonial-content {
    background: #9A7291;
    border-radius: 20px 20px 20px 0;
    padding: 2rem;
    width: 100%;
}

.testimonial-text,
.footer-text {
    color: #ffffff;
    font: 400 1.1429rem var(--font-primary);
    text-align: start;
}

.testimonial-footer {
    background: #9A7291;
    border-radius: 20px 20px 0 20px;
    padding: 1rem 1.5rem;
    text-align: center;
    align-self: flex-end;
}

@media screen and (max-width: 360px) {
    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonials-container {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
        gap: 3rem;
        border-radius: 18px;
        min-width: 100%;
    }

    .testimonial-header {
        padding: 0.4rem 0.75rem;
        border-radius: 12px;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }

    .testimonial-name {
        font-size: 0.875rem;
    }

    .testimonial-content {
        padding: 1.25rem;
        border-radius: 16px 16px 16px 0;
    }

    .testimonial-text,
    .footer-text {
        font-size: 0.95rem;
    }

    .testimonial-footer {
        padding: 0.75rem 1rem;
        border-radius: 16px 16px 0 16px;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem 1.2rem;
        gap: 3.5rem;
        border-radius: 20px;
        min-width: 100%;
    }

    .testimonial-header {
        padding: 0.5rem 0.875rem;
        border-radius: 13px;
    }

    .avatar {
        width: 38px;
        height: 38px;
    }

    .testimonial-name {
        font-size: 0.9375rem;
    }

    .testimonial-content {
        padding: 1.5rem;
        border-radius: 18px 18px 18px 0;
    }

    .testimonial-text,
    .footer-text {
        font-size: 1rem;
    }

    .testimonial-footer {
        padding: 0.875rem 1.25rem;
        border-radius: 18px 18px 0 18px;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .testimonials-section {
        padding: 3.5rem 0;
    }

    .testimonials-container {
        gap: 1.75rem;
        padding: 0 1.5rem;
    }

    /* .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        padding: 2.25rem 1.25rem;
        gap: 4rem;
    } */

    .testimonial-content {
        padding: 1.75rem;
    }

    .testimonial-text,
    .footer-text {
        font-size: 1.05rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-container {
        gap: 1.85rem;
        padding: 0 2rem;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: 420px;
    }

    .testimonial-text,
    .footer-text {
        font-size: 1.0714rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .testimonials-section {
        padding: 4.5rem 0;
    }

    .testimonials-container {
        gap: 1.85rem;
        padding: 0 2.5rem;
    }

    .testimonial-card {
        flex: 1 1 320px;
        max-width: 420px;
        min-width: 100%;
    }

    .testimonial-text,
    .footer-text {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    .testimonial-card {
        max-width: 420px;
        min-width: 100%;
    }
}

/* testimonials section style End  */


/* Blog section style start  */

.blog-home-section {
    padding: 5rem 0;
}

.blog-home-section .section-title h3 {
    padding: 2rem 0 2rem;
}

.blog-wrp {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.blog-card {
    max-width: 400px;
    width: 100%;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    border-radius: 1.2rem;
    margin-bottom: 1rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-card-category {
    text-transform: uppercase;
    font: 600 0.9rem var(--font-primary);
    color: var(--primary-text-color);
}

.blog-card-date {
    color: #9A7291;
    font: 500 0.9rem var(--font-primary);
}

.blog-card-title {
    color: #000000;
    margin-bottom: 1rem;
    font: 500 1.7rem var(--font-primary);
}

.blog-card-description {
    color: #666666;
    font: 400 1.2rem var(--font-primary);
    line-height: 1.5;
}

.blog-card-link {
    color: #9A7291;
    text-decoration: underline;
    display: inline-block;
    transition: opacity 0.3s ease;
    font: 600 1.2rem var(--font-primary);
}

.blog-card-link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 360px) {
    .blog-wrp {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-card-image {
        max-height: 180px;
        border-radius: 0.8rem;
    }

    .blog-card-meta {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .blog-card-category {
        font-size: 0.75rem;
    }

    .blog-card-date {
        font-size: 0.75rem;
    }

    .blog-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .blog-card-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .blog-card-link {
        font-size: 0.95rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .blog-wrp {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.25rem;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-card-image {
        max-height: 200px;
        border-radius: 1rem;
    }

    .blog-card-meta {
        gap: 0.75rem;
    }

    .blog-card-category {
        font-size: 0.8rem;
    }

    .blog-card-date {
        font-size: 0.8rem;
    }

    .blog-card-title {
        font-size: 1.4rem;
        margin-bottom: 0.85rem;
    }

    .blog-card-description {
        font-size: 1rem;
        line-height: 1.45;
    }

    .blog-card-link {
        font-size: 1rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .blog-wrp {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;
        align-items: center;
    }

    .blog-card {
        max-width: 500px;
    }

    .blog-card-image {
        max-height: 220px;
    }

    .blog-card-title {
        font-size: 1.5rem;
    }

    .blog-card-description {
        font-size: 1.1rem;
    }

    .blog-card-link {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .blog-wrp {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .blog-card {
        max-width: calc(50% - 0.75rem);
        min-width: 300px;
    }

    .blog-card-image {
        max-height: 220px;
    }

    .blog-card-title {
        font-size: 1.5rem;
    }

    .blog-card-description {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .blog-wrp {
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .blog-card {
        max-width: 350px;
    }

    .blog-card-image {
        max-height: 230px;
    }

    .blog-card-title {
        font-size: 1.6rem;
    }

    .blog-card-description {
        font-size: 1.15rem;
    }
}

/* Blog section style End  */


/* CTA section style start  */
.cta-section {
    position: relative;
    width: 100%;
    background: url('images/cta-section.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-title {
    font: 600 2.5rem var(--font-primary);
}

.cta-description {
    font: 400 1.2rem var(--font-primary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0px 3px 4px 0px #00000040;
    font: 400 1.3rem var(--font-primary);
}

.cta-button:hover {
    background-color: #8B6A9E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 127, 181, 0.4);
    color: #fff;
}

@media screen and (max-width: 360px) {
    .cta-content {
        padding: 2rem 1rem;
        gap: 0.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 15px;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .cta-content {
        padding: 2.5rem 1.5rem;
        gap: 0.5rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 0.85rem 1.75rem;
        font-size: 1.1rem;
        border-radius: 18px;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .cta-content {
        padding: 3rem 2rem;
        gap: 0.75rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 0.9rem 1.85rem;
        font-size: 1.15rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .cta-content {
        padding: 4rem 2.5rem;
        gap: 0.75rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .cta-description {
        font-size: 1.15rem;
    }

    .cta-button {
        padding: 0.95rem 1.95rem;
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .cta-content {
        padding: 4.5rem 3rem;
    }

    .cta-title {
        font-size: 2.35rem;
    }

    .cta-description {
        font-size: 1.18rem;
    }

    .cta-button {
        padding: 0.98rem 1.98rem;
        font-size: 1.25rem;
    }
}

/* CTA section Style End  */


/* about page style Start */
.about-p-wraapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}

.about-p-wraapper .section-title h3 {
    font: 600 2rem var(--font-primary);
    padding: 0;
}

.about-p-wraapper p {
    font: 400 1.428571rem var(--font-primary);
    max-width: 900px;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    margin: 0 0 2rem;
}

.abt-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0px 3px 4px 0px #00000040;
    font: 400 1rem var(--font-primary);
}

.abt-btn:hover {
    background-color: #8B6A9E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 127, 181, 0.4);
    color: #fff;
}

@media screen and (max-width: 360px) {
    .about-p-wraapper {
        padding: 100px 1rem;
    }

    .about-p-wraapper .section-title h3 {
        font-size: 1.5rem;
    }

    .about-p-wraapper p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .abt-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 15px;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .about-p-wraapper {
        padding: 120px 1.5rem;
    }

    .about-p-wraapper .section-title h3 {
        font-size: 1.6rem;
    }

    .about-p-wraapper p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .abt-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .about-p-wraapper {
        padding: 150px 2rem;
    }

    .about-p-wraapper .section-title h3 {
        font-size: 1.8rem;
    }

    .about-p-wraapper p {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .abt-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .about-p-wraapper {
        padding: 180px 2rem;
    }

    .about-p-wraapper .section-title h3 {
        font-size: 1.9rem;
    }

    .about-p-wraapper p {
        font-size: 1.15rem;
        max-width: 700px;
    }

    .abt-btn {
        font-size: 1rem;
        padding: 1rem 2.2rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .about-p-wraapper {
        padding: 200px 3rem;
    }

    .about-p-wraapper .section-title h3 {
        font-size: 2rem;
    }

    .about-p-wraapper p {
        font-size: 1.2rem;
        max-width: 750px;
    }

    .abt-btn {
        font-size: 1rem;
        padding: 1rem 2.4rem;
    }
}

/* about page style End  */



/* Services page style Start  */
.servicess-p-wrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}

.service-cards-wrp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.c-s-one {
    background: url('images/card-002.svg');
}

.c-s-two {
    background: url('images/card-001.svg');
}

.c-s-three {
    background: url('images/card-003.svg');
}

/* Servicess page style End  */

/* blogs page style start  */
.blogs-p-wrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}

.blog-p-c-wrp {
    display: flex;
    justify-content: center;
    gap: 4rem 2rem;
    flex-wrap: wrap;
}

/* blogs page style End  */

/* blogs details page style start   */

.blog-article-wrap {
    padding: 150px 0;
    width: 100%;
}

.category-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category {
    color: var(--primary-text-color);
    font: 600 0.8rem var(--font-primary);
}

.date {
    color: #999;
    font: 500 0.8rem var(--font-primary);
}

.article-header h3 {
    color: #333333;
    margin-bottom: 2rem;
    font: 500 3rem var(--font-primary);
    max-width: 900px;
}

.blog-d-image {
    max-height: 600px;
    width: 100%;
    border-radius: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.blog-d-image img {
    width: 100%;
}

.article-content p {
    color: #666666;
    margin-bottom: 25px;
    font: 400 1.2rem var(--font-primary);
    line-height: 1.5;
}

.article-content a {
    color: #1a73e8;
    text-decoration: none;
    border-bottom: 1px solid #1a73e8;
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: #0d47a1;
    border-bottom-color: #0d47a1;
}

.blog-view-all-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0px 3px 4px 0px #00000040;
    font: 400 1rem var(--font-primary);
}

.related-posts-sec {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 0 0 0;
}

.related-posts-title-sec {
    display: flex;
    justify-content: space-between;
}

.related-posts-sec-wrp {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@media screen and (max-width: 360px) {
    .blog-article-wrap {
        padding: 60px 0;
    }

    .article-header h3 {
        font-size: 1.6rem;
    }

    .related-posts-sec-wrp {
        flex-direction: column;
    }

    .blog-card {
        width: 100%;
    }

    .blog-card-image img {
        height: 180px;
    }

    .article-content p {
        font-size: 1rem;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    .article-header h3 {
        font-size: 1.8rem;
    }

    .blog-article-wrap {
        padding: 80px 0;
    }

    .related-posts-sec-wrp {
        flex-direction: column;
        gap: 1.5rem;
    }

    .blog-card {
        width: 100%;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    .article-header h3 {
        font-size: 2.2rem;
    }

    .related-posts-sec-wrp {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .blog-card {
        width: 45%;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .article-header h3 {
        font-size: 2.6rem;
    }

    .related-posts-sec-wrp {
        gap: 1.5rem;
        display: flex;
        flex-wrap: wrap;
    }

    .blog-card {
        width: 48%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .article-header h3 {
        font-size: 2.8rem;
    }

    .related-posts-sec-wrp {
        gap: 1.8rem;
    }

    .blog-card {
        width: 30%;
    }
}

/* blogs details page style  */

/* Contact us page style start  */

.contact-p-wrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}

.contact-container {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #00000012;
    box-shadow: 0px 4px 4px 0px #00000040;
    align-items: center;
    position: relative;
}

.contact-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #9A7291;
    z-index: 0;
}

.contact-p-info {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    color: #000000;
    font: 500 3.8rem var(--font-primary);
}

.title .touch {
    color: #B47566;
}

.subtitle {
    color: #000000;
    margin-bottom: 30px;
    font: 400 1rem var(--font-primary);
    text-wrap-style: pretty;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-text {
    color: #000000;
    font: 400 1rem var(--font-primary);
}

.h-map {
    width: fit-content;
    height: fit-content;
    padding: 30px 60px;
    z-index: 1;
}

.h-map iframe {
    border-radius: 20px;
}

@media screen and (max-width: 360px) {
    .contact-p-wrp {
        padding: 80px 0;
    }

    .contact-container {
        flex-direction: column;
        box-shadow: none;
        border-radius: 10px;
    }

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

    .contact-p-info {
        padding: 40px 20px;
        text-align: center;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .contact-text {
        text-align: start;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-item img {
        width: 20px;
        height: 20px;
    }

    .contact-text {
        font-size: 1rem;
    }

    .h-map {
        padding: 20px;
    }

    .h-map iframe {
        width: 100%;
        height: 250px;
    }
}

/* --- Small Devices (360px - 559px) --- */
@media screen and (min-width: 360px) and (max-width: 559px) {
    .contact-p-wrp {
        padding: 100px 0;
    }

    .contact-container {
        flex-direction: column;
        border-radius: 15px;
    }

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

    .contact-p-info {
        padding: 50px 30px;
        text-align: center;
    }

    .title {
        font-size: 2.4rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-text {
        text-align: start;
    }

    .h-map {
        padding: 30px;
    }

    .h-map iframe {
        width: 100%;
        height: 280px;
    }
}

/* --- Medium Devices (560px - 768px) --- */
@media screen and (min-width: 560px) and (max-width: 768px) {
    .contact-p-wrp {
        padding: 120px 0;
    }

    .contact-container {
        flex-direction: column;
    }

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

    .contact-p-info {
        padding: 60px 40px;
        text-align: center;
    }

    .title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .h-map {
        padding: 30px 40px;
    }

    .h-map iframe {
        height: 350px;
    }
}

/* --- Tablets (769px - 991px) --- */
@media screen and (min-width: 769px) and (max-width: 991px) {
    .contact-p-wrp {
        padding: 140px 0;
    }

    .contact-container {
        flex-direction: column;
    }

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

    .contact-p-info {
        padding: 60px 40px;
    }

    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .contact-item img {
        width: 25px;
        height: 25px;
    }

    .h-map iframe {
        height: 350px;
    }
}

/* --- Small Laptops (992px - 1200px) --- */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .contact-container::after {
        width: 250px;
    }

    .contact-p-info {
        padding: 70px 50px;
    }

    .title {
        font-size: 3.4rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .h-map iframe {
        width: 500px;
        height: 400px;
    }
}

/* contact us page style End  */



/* team section style start  */
section.team-section {
    padding: 5rem 0;
}

.section-title-team h3 {
    font: 600 2rem var(--font-primary);
    text-align: center;
    margin: 0 0 4rem;
}

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

.team-card {
    max-width: 344px;
    width: 100%;
    position: relative;
}

.team-info {
    background: #F8F8F8;
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 312px;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
}

.team-name {
    font: 600 18px var(--font-primary);
}

.team-role {
    font: 400 14px var(--font-primary);
    color: #9A7291;
    margin: 0;
}

@media screen and (max-width: 360px) {
    section.team-section {
        padding: 2.5rem 1rem;
    }

    .section-title-team h3 {
        font-size: 1.5rem;
        margin: 0 0 2rem;
    }

    .team-grid {
        gap: 1.5rem;
        flex-direction: column;
    }

    .team-card {
        max-width: 100%;
    }

    .team-info {
        max-width: 90%;
        padding: 0.875rem 1rem;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 13px;
    }
}

@media screen and (min-width: 360px) and (max-width: 559px) {
    section.team-section {
        padding: 3rem 1rem;
    }

    .section-title-team h3 {
        font-size: 1.5rem;
        margin: 0 0 2.5rem;
    }

    .team-grid {
        gap: 1.5rem;
        flex-direction: column;
    }

    .team-card {
        max-width: 100%;
    }

    .team-info {
        max-width: 90%;
        padding: 0.875rem 1rem;
    }

    .team-name {
        font-size: 16px;
    }

    .team-role {
        font-size: 13px;
    }
}

@media screen and (min-width: 560px) and (max-width: 768px) {
    section.team-section {
        padding: 3.5rem 1.5rem;
    }

    .section-title-team h3 {
        font-size: 1.75rem;
        margin: 0 0 3rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .team-card {
        max-width: 280px;
    }

    .team-info {
        max-width: 260px;
        padding: 0.875rem 1rem;
    }

    .team-name {
        font-size: 17px;
    }

    .team-role {
        font-size: 13px;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    section.team-section {
        padding: 4rem 2rem;
    }

    .section-title-team h3 {
        font-size: 1.875rem;
        margin: 0 0 3.5rem;
    }

    .team-grid {
        gap: 1.25rem;
    }

    .team-card {
        max-width: 300px;
    }

    .team-info {
        max-width: 280px;
        padding: 1rem 1.1rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    section.team-section {
        padding: 4.5rem 2rem;
    }

    .section-title-team h3 {
        margin: 0 0 3.5rem;
    }

    .team-grid {
        gap: 1.25rem;
    }

    .team-card {
        max-width: 320px;
    }

    .team-info {
        max-width: 295px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
    section.team-section {
        padding: 4.5rem 2rem;
    }

    .team-grid {
        gap: 1.25rem;
    }

    .team-card {
        max-width: 330px;
    }

    .team-info {
        max-width: 305px;
    }
}

/* team section style end  */



/* footer style start  */

footer {
    background-color: #F2EEEE;
    padding: 5rem 0 1rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.logo-column .logo {
    width: 250px;
}

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

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-text {
    font: 500 1.2rem var(--font-primary);
    color: var(--primary-text-color);
    line-height: 1.5;
}

.links-column {
    display: flex;
    gap: 80px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s;
    font: 500 1rem var(--font-primary);
    color: var(--primary-text-color);
}

.footer-links a:hover {
    color: #8B6A9E;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #D0C8C8;
}

.footer-bottom p {
    color: #666;
    font: 400 0.9rem var(--font-primary);
    margin: 0;
}

.contact-item a {
    text-decoration: none;
}

.contact-item a:hover {
    cursor: pointer;
}

/* Extra Small Devices (up to 360px) */
@media screen and (max-width: 360px) {
    footer {
        padding: 3rem 0 1rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .logo-column .logo {
        width: 150px;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .links-column {
        gap: 25px;
    }

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

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

/* Small Devices (360px - 559px) */
@media screen and (min-width: 360px) and (max-width: 559px) {
    footer {
        padding: 3.5rem 0 1rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 35px;
    }

    .logo-column .logo {
        width: 180px;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-icon {
        width: 22px;
        height: 22px;
    }

    .links-column {
        gap: 30px;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

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

/* Medium Small Devices (560px - 768px) */
@media screen and (min-width: 560px) and (max-width: 768px) {
    footer {
        padding: 4rem 0 1rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .logo-column .logo {
        width: 200px;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .links-column {
        gap: 60px;
    }

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

/* Tablet Devices (769px - 991px) */
@media screen and (min-width: 769px) and (max-width: 991px) {
    footer {
        padding: 4.5rem 0 1rem;
    }

    .footer-main {
        gap: 40px;
        margin-bottom: 50px;
    }

    .logo-column .logo {
        width: 200px;
    }

    .links-column {
        gap: 50px;
    }

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

/* Small Desktop (992px - 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    footer {
        padding: 4.5rem 0 1rem;
    }

    .footer-main {
        gap: 50px;
        margin-bottom: 55px;
    }

    .logo-column .logo {
        width: 220px;
    }

    .links-column {
        gap: 60px;
    }
}

/* footer style end  */