﻿body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.main {
    padding-top: 0px;
}

.none {
    display: none;
}

.block {
    display: block;
}

.book-mobile {
    display: none;
}





/*------ FOR TEXT COME FROM IN TO OUT---------*/
.hidden {
    opacity: 0;
    /*transform: scale(0.6);*/ /* aur chhota start karega */
    /*transition: all 0.9s ease-out;*/ /* thoda slow bhi rakha */

    transform: scale(0.4); /* bahut chhota se start hoga */
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.show {
    opacity: 1;
    transform: scale(1); /* final normal size */
}







/*-------for-HEADER PAGE-------------*/
.header-mobile {
    display: none;
}

.header {
    background-color: white;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    display: block;
}

.header-inner {
    display: flex;
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 10px 0px 10px 0px;
    justify-content: space-between;
}

.header-logo {
    width: 6%;
}

.header-nav {
    position: relative;
    padding: 20px 20px 0px 20px;
    width: 50%;
}

.header-nav-inner {
    margin: 0px 0px 0px 95px;
}

.nav-container {
    display: flex;
}

.nav-link {
    position: relative;
}

    .nav-link:hover .sub-navlink {
        display: block;
    }

    .nav-link a {
        font-family: 'Poppins';
        font-weight: 600;
        font-size: 17px;
        padding: 20px 19px 0px 19px;
        color: #171717;
        transition: 0.5s ease all;
        display: block;
    }

        .nav-link a span {
            position: relative;
            display: inline-block;
            padding-bottom: 5px;
        }

            /* underline hidden by default */
            .nav-link a span::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 0%;
                height: 2px;
                background-color: #853B94;
                transition: width 0.3s ease;
            }

    /* on hover show underline */
    .nav-link:hover a span::after {
        width: 100%;
    }


.head-sub-navlink {
    position: absolute;
    margin: 5px;
    border-top: 2px solid #843B94;
    border-bottom: 2px solid #843B94;
    border-radius: 20px 0px 20px 0px;
    overflow: hidden;
}


.sub-navlink {
    display: none;
    padding: 14px 5px;
    background-color: white;
    width: 17vw;
    font-size: 16px;
}

    .sub-navlink a {
        padding: 0px 10px;
        font-size: 15px;
    }

        .sub-navlink a:hover {
            color: white;
        }

    .sub-navlink:hover {
        background-color: #00AFF0;
    }
/* Dropdown arrow */
.arrow > a::after {
    content: "▼";
    font-size: 11px;
    margin-left: 5px;
}

.call-section {
    margin-top: 35px;
}

.call-section-container {
    border-radius: 10px;
    background-color: #00AFF0;
    padding: 8px 10px;
    transition: 0.5s ease all;
}

    .call-section-container:hover {
        background-color: #843B94;
    }


    .call-section-container a {
        font-size: 14px;
        color: white;
        font-family: 'Poppins';
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.calendar {
    color: white;
    font-size: 14px;
    font-family: poppins;
    font-weight: 500;
    letter-spacing: 1px;
}

    .calendar::before {
        display: inline-block;
        content: '\1F4C5\FE0E';
        color: white;
        font-size: 13px;
        margin-right: 10px;
        vertical-align: middle;
    }

.call-icon {
    margin-top: 35px;
}

    .call-icon img {
        transition: all 0.3s ease;
    }

    /* Hover color → #853B94 */
    .call-icon:hover img {
        transform: scale(1.1);
        filter: brightness(0) saturate(100%) invert(22%) sepia(41%) saturate(1624%) hue-rotate(266deg) brightness(92%) contrast(91%);
    }

.icons {
    display: flex;
    padding: 30px 0px 0px 50px;
    width: 20%;
    margin-left: -48px;
}

.fb-icon, .insta-icon, .youtube-icon {
    padding: 2px;
}

    .fb-icon img, .insta-icon img, .youtube-icon img {
        background-color: #843A93;
        border-radius: 50%;
        padding: 10px;
        width: 80%;
        transition: 0.5s ease all;
    }

        .fb-icon img:hover, .insta-icon img:hover, .youtube-icon img:hover {
            background-color: #3B3B3B;
            transform: scale(1.2);
        }



/*---------FOOTER PAGE---------*/
.footer-mobile {
    display: none;
}

.footer {
    position: relative;
    background-color: white;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    border-top: 3px solid #843B93;
}

.footer-container {
    display: grid;
    width: 100%;
    margin: auto;
    max-width: 1500px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-bottom: 70px;
    padding: 70px 0 70px 0;
}

.footer-logo {
    width: 55%;
    margin-top: 105px;
}

.footer-heading h3 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 37px;
    color: #150e1f;
    margin: 0px 0 10px 0;
}

.footer1-p p {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    color: #171717;
}

.divider2 {
    width: 30%;
    height: 3px;
    background: #843B94;
}

.footer-heading h4 {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 30px;
    color: #150e1f;
    margin: 0px 0 10px 0;
}

.footer-container1 {
    margin-left: -60px;
    margin-right: 130px;
}

.footer2-p a {
    display: block; /* keeps each item on its own line */
    margin: 5px 0;
    color: #171717;
    font-family: 'Poppins';
    font-size: 17px;
    font-weight: 500;
}

    /* span holds the underline */
    .footer2-p a span {
        position: relative;
        display: inline-block; /* important: underline only word width */
        padding: 15px 0 0px;
        transition: 0.3s ease;
    }

        /* underline hidden */
        .footer2-p a span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: #404296;
            transition: width 0.3s ease;
        }

    /* hover effects */
    .footer2-p a:hover span {
        color: #404296;
        font-weight: 600;
    }

        /* underline visible */
        .footer2-p a:hover span::after {
            width: 100%;
        }

.footer-container3 {
    margin-left: -45px;
}

.footer-flex {
    display: flex;
    gap: 10px;
}

.footer-img {
    width: 11%;
    margin-top: 20px;
}

    .footer-img img {
        transition: 0.3s ease-in-out;
    }

    .footer-img:hover img {
        transform: scale(1.1);
        filter: brightness(0) invert(63%) sepia(85%) saturate(7484%) hue-rotate(173deg) brightness(101%) contrast(101%);
    }

.alg {
    width: 25%;
    margin-top: 20px;
}

.footer3-p p {
    font-family: 'Poppins';
    font-size: 17px;
    line-height: 30px;
    color: #171717;
}

    .footer3-p p:hover {
        color: #843B93;
    }

.footer-icons {
    display: flex;
    margin-top: 35px;
}

.footer-fb, .footer-insta, .footer-youtube {
    padding: 2px;
    transition: 0.5s ease all;
}

    .footer-fb:hover, .footer-insta:hover, .footer-youtube:hover {
        transform: scale(1.2);
    }

    .footer-fb img {
        background-color: #4E69A2;
        border-radius: 50%;
        padding: 10px;
        width: 80%;
    }

    .footer-insta img {
        background-color: #3B3B3B;
        border-radius: 50%;
        padding: 10px;
        width: 80%;
    }

    .footer-youtube img {
        background-color: #D23635;
        border-radius: 50%;
        padding: 10px;
        width: 80%;
    }






/*############  BACK TO TOP BUTTON ###########*/
#back-to-top-section {
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.back-to-top {
    position: fixed;
    bottom: 48px;
    right: 30px;
    padding: 10px 12px;
    border: none;
    border-radius: 50%;
    background-color: #843B94;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.5s ease-in-out;
}


    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #00AFF0;
        color: #1D1F45;
    }


@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
    }
}





/*---------Copyright-Block-----------*/

.copyright {
    display:block;
    width: 100%;
    background-color: #843B93;
}

.copyright-container {
    display: flex;
}

.left {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 50%;
    text-align: center;
    font-family: 'Poppins';
    border-right: 3px solid white;
    color: white;
    font-size: 17px;
    font-weight: 400;
}

.right {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 50%;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 400;
}

    .right a {
        color: white;
        font-size: 17px;
    }





.banner-desktop {
    display: block;
    width: 100%;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.banner-mobile {
    display: none;
}



.section1 {
    margin-top: 40px;
    width: 100%;
}

.section1-container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.section1-contents {
    display: flex;
    justify-content: center; /* center horizontally */
    gap: 80px; /* same spacing as screenshot */
    width: 100%;
}

.section1-content1 {
    width: 33.33%; /* equal width like screenshot */
}

    .section1-content1:hover {
        border-top: 4px solid #853B94;
        border-bottom: 4px solid #853B94;
        box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

.section1-img {
    border: 3px solid #853B94;
    border-radius: 50%;
    margin: auto;
    width: 33%;
    margin-top: 15px;
    transition: 0.5s ease all;
}

    .section1-img:hover {
        transform: scale(1.1);
    }

    .section1-img img {
        border-radius: 50%;
    }

.section1-txt h4 {
    font-size: 24px;
    font-family: 'Poppins';
    color: #853B94;
    text-align: center;
    font-weight: 500;
    margin: 25px 0px;
}

.section1-txt p {
    font-family: 'Poppins';
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 25px;
}




.section2 {
    position: relative;
    padding: 70px 0px 0px 0px;
    width: 100%;
    background-color: #F7EFFA;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.rotation {
    display: block;
    transform: rotate(180deg);
    bottom: -1px;
    position: absolute;
}

.rotations svg {
    width: calc(170% + 1.3px);
    height: 500px;
    overflow: hidden;
    display: inline;
}

.elementor-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.section2-containers {
    max-width: 1250px;
    width: 100%;
    margin: auto;
    position: relative;
}

.section2-contents {
    justify-items: center;
}

.section2-txt h2 {
    color: #1d1f45;
    font-family: 'Poppins';
    font-size: 45px;
    font-weight: 600;
}

.section2-txt h4 {
    font-weight: 400;
    color: #843B94;
    font-size: 24px;
    font-family: 'Poppins';
}

.divider {
    height: 4px;
    width: 11%;
    background: #843B94;
    margin: 0 auto;
}

.section2-container {
    display: flex;
    gap: 61px;
}

.section2-container1 {
    width: 60%;
}

.section2-txt h3 {
    font-size: 35px;
    font-family: 'Poppins';
    font-weight: 600;
    line-height: 42px;
}

.section2-txt h5 {
    color: #843b94;
    font-family: 'Poppins';
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.section2-txt h1 {
    font-size: 35px;
    font-family: 'Poppins';
    font-weight: 600;
    line-height: 42px;
    color: #150e1f;
}

.target {
    display: flex;
    gap: 20px;
}

.target-img {
    width: 12%;
}

.target-txt h4 {
    color: #150e1f;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Poppins';
}

.section2-txt p b {
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 600;
}

.section2-txt p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
}

.spcl {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    position: relative;
    padding-left: 25px;
}
    /* Arrow for only .spcl */
    .spcl::after {
        content: "➤";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 16px;
        color: #273171; /* change if needed */
    }

.section2-container2 {
    width: 38%;
    margin-top: 35px;
}

.tmtable {
    padding: 10px 30px 0 30px;
    background-color: #FFFFFF;
    border-radius: 35px;
    border: 3px solid #00AFF0;
}

    .tmtable h3 {
        color: #00AFF0;
        font-size: 24px;
        font-weight: 500;
        font-family: 'Poppins';
        margin-bottom: 10px;
    }

.col1 {
    color: #111111;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins';
    padding: 10px 40px 10px 10px;
    border-bottom: 1px solid grey;
}

.col2 {
    color: #111111;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
    border-bottom: 1px solid grey;
}

.call {
    display: flex;
    gap: 20px;
    padding: 10px 0 25px 0;
}

.call-img {
    width: 13%;
    margin-top: 25px;
}

.call-txt p span {
    color: #000000;
    font-weight: 400;
    font-family: 'Poppins';
    font-size: 18px;
}

.call-txt p {
    font-family: 'Poppins';
    font-weight: 600;
    color: #36BFF5;
    font-size: 16px;
}




.section3 {
    width: 100%;
    padding: 90px 0 50px 0;
}

.section3-containers {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.section3-container {
    display: flex;
}

.section3-txt h2 {
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin-bottom: 20px;
}

.section3-txt h4 {
    color: #843b94;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    text-align: center;
}

.section3-container {
    margin-top: 40px;
}

.section3-contents {
    display: flex;
    gap: 50px;
}

.section3-img {
}

.section3-txt h3 {
    font-size: 35px;
    font-family: 'Poppins';
    font-weight: 600;
    line-height: 42px;
    color: #150e1f;
    margin: 0px 0 15px 0;
}

.common {
    margin-top: 10px;
}

.section3-txt h5 {
    color: #843b94;
    font-family: 'Poppins';
    font-size: 21px;
    line-height: 30px;
    font-weight: 400;
    margin: 15px 0;
    text-align: justify;
}

.read-more {
    margin-top: 45px;
}

.read-btn {
    display: inline-block;
    background: #853B94;
    color: #fff;
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 10px;
    font-size: 16px;
    position: relative;
    font-family: 'Poppins';
    transition: 0.3s ease;
}

    .read-btn::after {
        content: "→";
        margin-left: 10px;
        font-size: 17px;
        transition: 0.3s ease;
        font-weight: 500;
    }

    .read-btn:hover::after {
        margin-left: 15px; /* arrow move effect */
    }

    .read-btn:hover {
        background: #00AFF0;
    }




.section4 {
    width: 100%;
    padding: 90px 0 100px 0;
}

.section4-containers {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.section4-container {
    display: flex;
}

.section4-txt h2 {
    font-size: 40px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin-bottom: 10px;
}

.section4-txt h4 {
    color: #843b94;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
}

.section4-contents {
    display: flex;
    gap: 43px;
}

.section4-content1 {
    background-color: #843B94;
    transition: 0.5s ease all;
    border-radius: 30px;
}

    .section4-content1:hover {
        background-color: #00AFF0;
    }

.section4-img img {
    border-radius: 30px 30px 0 0;
}

.section4-txt {
    padding: 15px 15px 15px 15px;
    text-align: center;
}

    .section4-txt h3 {
        font-size: 24px;
        font-weight: 400;
        color: white;
        font-family: 'Poppins';
        letter-spacing: 1px;
        margin: 18px 0;
        text-transform: uppercase;
    }

    .section4-txt p {
        font-size: 15px;
        font-weight: 400;
        color: white;
        font-family: 'Poppins';
        line-height: 30px;
        text-align: center;
    }





.section5 {
    width: 100%;
    background-color: #F9FAFC;
    background-image: url('../img/design4.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 25% auto;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 0px 50px 0px;
}

.section5-containers {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.section5-txt h2 {
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin-bottom: 15px;
}

.section5-txt h4 {
    color: #843b94;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
}

.section5-container {
    margin-top: 40px;
    width: 100%;
}

.section5-contents {
}

.contact-section2-container1 {
    box-shadow: 0px 0px 120px 0px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.contact-section2-container1 {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.contact-content-heading {
    color: #150E1F;
    text-align: center;
    font-family: 'Poppins';
    font-size: 35px;
    padding-top: 1px;
}

.contact-section1-form {
    padding: 25px 40px 40px 40px;
}

.contact-section1-container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

.for-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Date input box */
.date-box {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #c9c9c9;
    border-radius: 8px; /* round corners */
    color: #555;
}

/* Label ka container */
.label {
    display: flex;
    flex-direction: column;
    padding: 18px 50px 18px 65px;
    gap: 6px; /* label aur input ke beech perfect spacing */
}

.for-name {
    font-weight: 400;
    font-size: 17px;
    font-family: 'Poppins';
}

.name {
    padding: 15px 15px;
    font-size: 15px;
    font-family: 'Poppins';
    color: #333;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    /* iPhone / Android native calendar icon */
    appearance: auto;
    -webkit-appearance: auto;
    background: none;
}

.name, .time-box {
    transition: all 0.3s ease;
}

    .name:focus, .time-box:focus {
        border-color: #853B94;
        box-shadow: 0 0 8px rgba(133, 59, 148, 0.4);
        outline: none;
    }

.time-box {
    width: 100%;
    padding: 15px 15px;
    font-size: 15px;
    font-family: 'Poppins';
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    outline: none;
    color: #555;
    background: #fff;
    cursor: pointer;
}

.button {
    width: fit-content;
    padding: 0 0 0 65px;
}

/* ---------- SUBMIT BUTTON ---------- */
.submit {
    width: 100%;
    color: white;
    padding: 9px 45px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Poppins';
    border: none;
    background: #843b94;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(10, 55, 103, 0.3);
}

    .submit:hover {
        background: #00AFF0;
    }




.section6 {
    position: relative;
    padding: 50px 0px 50px 0px;
    width: 100%;
    background-color: #F7EFFA;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.section6-containers {
    max-width: 1400px;
    width: 100%;
    margin: auto;
    position: relative;
}

.section6-contents {
    justify-items: center;
}

.section6-txt h2 {
    color: #1d1f45;
    font-family: 'Poppins';
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section6-txt h4 {
    font-weight: 400;
    color: #843B94;
    font-size: 25px;
    font-family: 'Poppins';
    margin-bottom: 25px;
}

.section6-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.section6-container1 {
    background-image: url('../img/team-bg.jpg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 50% auto;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 20px 20px 20px 20px;
    border-radius: 10px;
    padding: 15px 15px 15px 15px;
}

.section6-container11 {
    border-radius: 10px;
    box-shadow: 3px 3px 5px 0px #888888;
    background: #FFFFFF;
    border: 4px solid #02010100;
}

    .section6-container11:hover {
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

.section6-img img {
    border-radius: 10px;
    transition: 0.5s ease all;
}

    .section6-img img:hover {
        transform: scale(0.9);
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
        border: 10px solid white;
        border-radius: 15px;
    }

.section6-txt {
    justify-items: center;
}

    .section6-txt h5 {
        color: #150e1f;
        font-family: 'Poppins';
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        margin-top: 25px;
    }

    .section6-txt p {
        font-family: 'Poppins';
        font-size: 18px;
        font-weight: 400;
        margin-top: 15px;
    }




.section7 {
    width: 100%;
    padding: 50px 0 50px 0;
}

.section7-containers {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.section7-txt h2 {
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin-bottom: 15px;
}

.section7-txt h4 {
    color: #843b94;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
}

.divider1 {
    width: 100%;
    height: 2px;
    background: black;
}

.section7-contents {
    column-count: 3; /* 3 columns exactly like your screenshot */
    column-gap: 20px; /* gap between columns */
    width: 100%;
    margin-top: 35px;
}

.section7-content1 {
    break-inside: avoid; /* prevent images from breaking */
    margin-bottom: 20px;
    transition: 0.5s ease all;
}

.photo {
    transition: 0.5s ease all;
    border: 6px solid white;
    box-shadow: 3px 3px 5px 0px #888888;
}

    .photo:hover {
        transform: scale(0.9);
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
        border: 20px solid white;
        border-radius: 15px;
    }

.section7-content1 img {
    width: 100%;
    border-radius: 12px;
    display: block;
}




.section8 {
    width: 100%;
    padding: 50px 0 50px 0;
}

.section8-containers {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.section8-txt h2 {
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin-bottom: 23px;
}

.section8-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 50px 0;
}

.border {
    border: 3px solid white;
}

.section8-container1 {
    border: 3px solid #B0B0B0;
    border-radius: 25px;
}

.section8-contents {
    padding: 30px 30px;
}

.contact-form {
    width: 100%;
}

.contact-form1 h1 {
    color: #843B94;
    font-size: 35px;
    font-family: 'Poppins';
    font-weight: 600;
}


.label-form {
    padding: 5px 0px 10px 0px;
    margin: 10px 0px 10px 0px;
    width: 100%;
}

.name-form {
    padding: 11px 2px 11px 10px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    width: 100%;
    border: 3px solid #B0B0B0;
    border-radius: 15px;
}

.button-form {
    margin-top: 20px;
}

.submit-form {
    color: white;
    padding: 12px 50px 12px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    border: 1px solid #B0B0B0;
    border-radius: 15px;
    background-color: #843B94;
}

    .submit-form:hover {
        background-color: #00AFF0;
    }

.box {
    display: flex;
    gap: 15px;
}

.person-img img {
    border: 2px solid #01AFF0;
    border-radius: 50%;
}

.star p {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins';
    color: #01aef0;
    margin: 0px 0;
}

.star::after {
    content: "★★★★★";
    color: #f4b400;
    font-size: 26px;
    font-weight: 800;
}

.section8-txt p {
    color: #6d6f6e;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins';
    line-height: 30px;
    text-align: justify;
}





/*---------FAQ PAGE-------*/
.section9 {
    width: 100%;
    padding: 50px 0 50px 0;
}

.section9-containers {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.section9-container {
    display: flex;
    gap: 40px;
}

.section9-container1 {
    width: 50%;
}

.section9-container2 {
    width: 50%;
}

.faq-section {
    width: 100%;
    background-color: #FFFCFC;
}

.faq-section-heading h2 {
    font-size: 43px;
    color: #1d1f45;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 10px;
    margin: 0px 0;
}

.accordion {
    color: white;
    cursor: pointer;
    padding: 16px;
    width: 100%;
    font-size: 15px;
    font-family: 'Poppins';
    transition: 0.4s;
    position: relative;
    background-color: #843B93;
    margin-bottom: 15px;
    font-weight: 400;
    padding-right: 30px;
}
    /* the +/- icon */
    /*.accordion::before {
        content: '+';*/ /* default is plus */
        /*position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 25px;
    }*/

    /* when active, change to minus */
    /*.accordion.active::before {
        content: '–';*/ /* Unicode “en‑dash” (looks like a minus) */
    /*}*/

    /* the +/- icon */
    .accordion::after {
        content: '\25BC'; /* default is plus */
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
    }

    /* when active, change to minus */
    .accordion.active::after {
        content: '\25B2'; /* Unicode “en‑dash” (looks like a minus) */
    }

    .accordion:hover,
    .accordion.active {
        background-color: #00AFF0;
        color: white;
    }

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #BEBCC2;
    margin-bottom: 10px;
}

    .panel p {
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0px;
        font-family: 'Poppins';
        color: white;
    }

    .panel:hover .panel p {
        color: black;
    }

    .panel li {
        font-size: 17px;
        font-family: 'Jost';
        line-height: 30px;
        letter-spacing: 0px;
        color: #363636;
    }




.section10 {
    width: 100%;
    padding: 50px 0 70px;
}

.map {
    width: 100%;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0px 10px 35px rgba(140, 39, 176, 0.25); /* purple glow */
    transition: transform 0.4s ease;
}

    .map iframe {
        width: 100%;
        height: 500px;
        border: 0;
        border-radius: 18px;
        transition: transform 0.5s ease;
    }

    /* Hover Zoom Effect */
    .map:hover iframe {
        transform: scale(1.05);
    }




/*--------ABOUT PAGE------*/
.about-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.about-mobile {
    display: none;
}





.about1 {
    width: 100%;
    padding: 104px 0 50px 0;
}

.about1-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
}

.about1-container1 {
    width: 33.33%;
}

.about1-txt h5 {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 10px 0;
}

.about1-txt h2 {
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin: 15px 0;
}

.about1-container2 {
    width: 66.66%;
}

.about1-txt p {
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 35px;
    text-align: justify;
}




.about2 {
    width: 100%;
    padding: 50px 0 50px 0;
}

.about2-container {
    display: flex;
}

.about2-container1 {
    width: 50%;
}

.about2-container2 {
    width: 50%;
}




.about3 {
    width: 100%;
    padding: 50px 0 50px 0;
}

.about3-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
}

.about3-container1 {
    width: 54%;
}

.about3-txt h2 {
    font-size: 45px;
    font-family: 'Poppins';
    font-weight: 600;
    color: #1d1f45;
    margin: 10px 0;
}

.about3-container2 {
    width: 45%;
}

.about3-txt p {
    font-size: 17px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.about3-txt li {
    font-size: 17px;
    font-family: 'Poppins';
    font-weight: 400;
    margin: 10px 0;
    text-align: justify;
    line-height: 30px;
}




.about4 {
    width: 100%;
    background-color: #F3F1F6;
}

.about4-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 50px 0 30px 0;
}

.about4-txt h2 {
    color: #1d1f45;
    font-family: 'Poppins';
    font-size: 45px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
}

.about4-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px;
    padding: 45px 20px 20px 20px;
}

.about4-img {
    width: 90%;
    transition: 0.5s ease all;
}

    .about4-img:hover {
        transform: scale(1.1);
    }

.about4-txt h4 {
    color: #150E1F;
    font-family: 'Poppins';
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}




/*-------SERVICE PAGE-----*/
.service-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.service-mobile {
    display: none
}



.service1 {
    padding: 104px 0 50px 0;
    width: 100%;
}

.service1-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.service1-txt p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'Poppins';
    font-weight: 400;
    text-align: center;
}





.service2 {
    width: 100%;
    padding: 30px 0 100px 0;
}

.service2-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    justify-items: center;
}

.service2-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.service2-content1 {
    background-color: #843B94;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.5s ease all;
}

    .service2-content1:hover {
        background-color: #00AFF0;
        border: 2px solid #00AFF0;
    }

.service2-img img {
    border-radius: 15px;
    transition: 0.5s ease all;
    overflow: hidden;
}

.service2-content1:hover .service2-img img {
    box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    border: 10px solid white;
    border-radius: 30px;
}

.service2-txt {
    padding: 15px 15px 15px 15px;
    justify-items: center;
}

    .service2-txt h3 {
        font-size: 22px;
        font-weight: 400;
        color: white;
        font-family: 'Poppins';
        text-transform: uppercase;
    }




/*-------CONTACT PAGE--------*/
.contact-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.contact-mobile {
    display: none;
}



.contact1 {
    width: 100%;
}

.contact1-containers {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 100px 0 100px 0;
}

.contact1-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.contact1-container1 {
    padding: 0 100px 0 0px;
}

.contact-heading h3 {
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 32px;
    color: #150e1f;
    margin: 20px 0;
    font-weight: 600;
}

.top {
    margin-top: 20px;
}

.alg1 {
    width: 22%
}

.contact-section-form {
    padding: 0px 0px 0px 0px;
}

.for-row1 {
    display: block;
}

.contact1-container2 {
    padding-left: 50px;
}

.label1 {
    border-radius: 0px;
    padding: 30px 10px 0px 10px;
}

.name1 {
    padding: 13px 10px;
    border: 2px solid #843B93;
    border-radius: 0px;
    width: 88%;
}

.month {
    padding: 13px 45px 13px 10px;
    border: 2px solid #843B93;
    border-radius: 0px;
    width: 88%;
    background: url('img/calendar.png') no-repeat right 10px center;
    background-size: 22px;
    background-color: #fff; /* important */ /* IMPORTANT: Do NOT remove iPhone native icon */
    appearance: auto;
    -webkit-appearance: auto;
    background: none; /* remove custom icon */
    color: #333;
}

.textform {
    padding: 13px 10px 50px 10px;
}

.time-box1 {
    padding: 13px 1px 13px 5px;
    border: 2px solid #843B93;
    border-radius: 0px;
    width: 88%;
}

.submit1 {
    width: 36%;
    padding: 9px 0px;
    letter-spacing: 1px;
    background: #843b94;
}

.map2 {
    margin-top: 30px;
}

.button1 {
    padding: 0 0 0 10px;
    width: auto;
    margin-top: 30px;
}

.contact1-container3 {
    padding: 0 0px 0 60px;
}

.map2 iframe {
    width: 400px;
}




/*-------CAVITY FILLING PAGE------*/
.cavity-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.cavity-mobile {
    display: none;
}



.cavity1 {
    width: 100%;
}

.cavity-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 85px 0 70px 0;
}

.cavity1-contents {
    display: flex;
    gap: 60px;
}

.cavity1-text {
    width: 50%;
}

.cavity1-txt h2 {
    color: #1d1f45;
    font-family: 'Poppins';
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 0px;
}

.cavity1-txt h4 {
    color: #150e1f;
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 10px 0;
}

.cavity1-txt p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.cavity1-img {
    width: 50%;
}



.cavity2 {
    width: 100%;
}

.cavity2-contents {
    display: flex;
    gap: 50px;
}

.cavity2-img {
    width: 25%;
}

.cavity2-text {
    width: 76%;
    margin: auto;
}

.cavity2-txt h4 {
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #150e1f;
    margin-top: 0px;
}

.cavity2-txt p {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.cavity2-txt li {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 15px 0;
    line-height: 30px;
    text-align: justify;
}

.cavity2-txt strong {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins';
}


/* Base hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
    will-change: transform;
}

/* Left */
.slide-left {
    transform: translateX(-70px);
}

/* Right */
.slide-right {
    transform: translateX(70px);
}
/* Slide from top */
.slide-top {
    transform: translateY(-70px);
}

/* Slide from bottom */
.slide-bottom {
    transform: translateY(70px);
}
/* When visible */
.animate.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}



/*-------CROWNS PAGE------*/
.crowns-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.crowns-mobile {
    display: none;
}



.crowns1 {
    width: 100%;
    padding: 85px 0 30px 0;
}

.crowns-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 45px;
}

.crowns-text {
    width: 45%;
    margin: auto;
}

.crowns-txt h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #1d1f45;
    margin-bottom: 0px;
}

.crowns-txt h4 {
    color: #150e1f;
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 0px;
}

.crowns-txt p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    text-align: justify;
}

.crowns-img {
    width: 48%;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 3px 3px 5px 0px #888888;
}

    .crowns-img:hover {
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .crowns-img img {
        transition: 0.5s ease all;
    }

        .crowns-img img:hover {
            transform: scale(1.2);
        }

.crowns-txt li {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 15px 0;
    line-height: 30px;
    text-align: justify;
}

.crowns-txt h3 {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #150e1f;
    margin-top: 0px;
    margin-bottom: 20px;
    text-align: center;
}

.center {
    text-align: center !important;
}

.align-left {
    text-align: left;
}

.kaal {
    font-size: 14px;
    margin-top: 40px;
}



.crowns2 {
    padding: 30px 0 50px 0;
    width: 100%;
}

.crowns3 {
    padding: 30px 0 50px 0;
    width: 100%;
}


.crowns4 {
    padding: 30px 0 50px 0;
    width: 100%;
}



.crowns5 {
    padding: 30px 0 50px 0;
    width: 100%;
}



.crowns6 {
    padding: 30px 0 50px 0;
    width: 100%;
}



.crowns8 {
    padding: 30px 0 50px 0;
    width: 100%;
}


.crowns9 {
    padding: 30px 0 30px 0;
    width: 100%;
}


.crowns10 {
    padding: 20px 0 50px 0;
    width: 100%;
}




/*-------TEETH WHITENING PAGE------*/
.teeth-whitening-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.teeth-whitening-mobile {
    display: none;
}




.teeth1 {
    width: 100%;
    padding: 85px 0 30px 0;
}

.teeth-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 45px;
}

.teeth-txt h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #1d1f45;
    margin-top: 0px;
    margin-bottom: 10px;
}

.teeth-txt h4 {
    color: #150e1f;
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 0px;
}

.teeth-txt p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
}

.teeth-img {
    width: 48%;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 3px 3px 5px 0px #888888;
}

    .teeth-img:hover {
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .teeth-img img {
        transition: 0.5s ease all;
    }

        .teeth-img img:hover {
            transform: scale(1.2);
        }

.teeth-text {
    width: 45%;
    margin: auto;
}

.teeth-txt li {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 15px 0;
    line-height: 30px;
    text-align: justify;
}



.teeth2 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.teeth3 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.teeth4 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.teeth5 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.teeth6 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.teeth7 {
    width: 100%;
    padding: 30px 0 70px 0;
}




/*-------WISDOM TOOTH PAGE--------*/
.wisdom-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.wisdom-mobile {
    display: none;
}

.for-width {
    width: 30% !important;
}






.wisdom1 {
    width: 100%;
    padding: 60px 0 30px 0;
}

.wisdom-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 45px;
}

.wisdom-txt h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #1d1f45;
    margin-top: 0px;
}

.wisdom-txt h4 {
    color: #150e1f;
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: 600;
    margin-bottom: 0px;
}

.wisdom-txt p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
}

.wisdom-img {
    width: 45%;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 1px 4px 2px #888888;
}

    .wisdom-img:hover {
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .wisdom-img img {
        transition: 0.5s ease all;
    }

        .wisdom-img img:hover {
            transform: scale(1.2);
        }

.wisdom-text {
    width: 45%;
    margin: auto;
}

.wisdom-txt li {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 15px 0;
    line-height: 30px;
    text-align: justify;
}

.width {
    width: 60% !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.swiper-prev::after,
.swiper-next::after {
    display: none;
}


/* Custom navigation buttons */
.swiper-next,
.swiper-prev {
    position: absolute;
    top: 0;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0px 10px;
}

    .swiper-prev img,
    .swiper-next img {
        width: 35px;
        z-index: 1;
        object-fit: contain;
    }

/* Button positions */
.swiper-prev {
    left: 0px;
}

.swiper-next {
    right: 0px;
}




.wisdom2 {
    width: 100%;
    padding: 30px 0 50px 0;
}



.wisdom3 {
    width: 100%;
    padding: 30px 0 50px 0;
}



.wisdom4 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.wisdom5 {
    width: 100%;
    padding: 30px 0 50px 0;
}

.alg-container {
    display: block;
    max-width: 900px;
}




/*-------DENTURES PAGE--------*/
.denture-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.denture-mobile {
    display: none;
}



.denture1 {
    width: 100%;
    padding: 60px 0 30px 0;
}

.denture-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 45px;
}

.denture-txt h2 {
    font-size: 45px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #1d1f45;
    margin-top: 0px;
}

.denture-txt h4 {
    color: #150e1f;
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: 600;
    margin: 0px 0;
}

.denture-txt p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
}

.denture-img {
    width: 45%;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 1px 4px 2px #888888;
}

    .denture-img:hover {
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .denture-img img {
        transition: 0.5s ease all;
    }

        .denture-img img:hover {
            transform: scale(1.2);
        }

.denture-text {
    width: 45%;
    margin: auto;
}

.denture-txt li {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 15px 0;
    line-height: 30px;
    text-align: justify;
}


.denture2 {
    width: 100%;
    padding: 30px 0 40px 0;
}


.denture3 {
    width: 100%;
    padding: 40px 0 20px 0;
}

.denture4 {
    width: 100%;
    padding: 10px 0 50px 0;
}




/*-------SCALING PAGE-------*/
.scaling-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.scaling-mobile {
    display: none;
}




.scaling1 {
    width: 100%;
    padding: 60px 0 30px 0;
}

.scaling-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 45px;
}

.scaling-txt h1 {
    font-size: 55px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #1d1f45;
    margin-top: 0px;
}

.scaling-txt h4 {
    color: #150e1f;
    font-size: 24px;
    font-family: 'Poppins';
    font-weight: 600;
    margin-top: 50px;
}

.scaling-txt p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
}

.scaling-img {
    width: 42%;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 1px 4px 2px #888888;
}

    .scaling-img:hover {
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .scaling-img img {
        transition: 0.5s ease all;
    }

        .scaling-img img:hover {
            transform: scale(1.2);
        }

.scaling-text {
    width: 45%;
    margin: auto;
}

.scaling-txt li {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
    margin: 10px 0;
    line-height: 30px;
    text-align: justify;
}




.scaling2 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.scaling3 {
    width: 100%;
    padding: 30px 0 50px 0;
}


.scaling4 {
    width: 100%;
    padding: 30px 0 50px 0;
}



.scaling5 {
    width: 100%;
    padding: 30px 0 50px 0;
}




.scaling6 {
    width: 100%;
    padding: 30px 0 70px 0;
}



/*------TESTIMONIAL PAGE------*/
.testimonial-desktop {
    width: 100%;
    display: block;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.testimonial-mobile {
    display: none;
}




.testimonial {
    width: 100%;
}

.testimonial-container {
    width: 100%;
    margin: auto;
    max-width: 1250px;
    padding: 60px 0 70px;
}

.testimonial-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.testimonial-content1 {
}





/*---------SMILE GALLERY------*/
.smile-desktop {
    width: 100%;
    margin-top: 125px;
    border-bottom: 2px solid #843B93;
}

.smile-mobile {
    display: none;
}



.smile {
    width: 100%;
    padding: 50px 0 30px 0;
}

.smile-container {
    width: 100%;
    margin: auto;
    max-width: 1250px;
}

.smile-contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.smile-content1 {
    border: 5px solid white;
}

.smile-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

    .smile-img img {
        border: 6px solid white;
        box-shadow: 3px 3px 5px 0px #888888;
        border-radius: 10px;
        transition: 0.5s ease all;
        height: 370px;
        margin-bottom: 20px;
    }

        .smile-img img:hover {
            transform: scale(0.9);
            box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
            border: 15px solid white;
            border-radius: 15px;
        }







/*----------Thank You Page----------*/
.thank-page-v2 {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #843B93;
    font-family: Poppins;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
    font-family: Poppins;
}
