﻿body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}
.main {
    width: 100vw;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.main {
    padding-top: 0px;
}

h1, h2, h3, h4, h5, h6, p, a, li, b {
    font-family: "Josefin Sans";
}



/*------ FOR TEXT COME FROM IN TO OUT---------*/
.hidden {
    opacity: 0;
    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 */
}


@keyframes floatY {
    from {
        transform: translateY(1);
    }

    to {
        transform: translateY(-10px);
        how much it moves up
    }
}


/* Base hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
    will-change: transform;
    overflow: hidden;
}

/* 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);
}






/*-------for-HEADER BLOCK-------------*/

.header-mobile {
    display: none;
}

.header {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: white;
}

.header-container {
    display: flex;
    width: 100%;
    max-width: 1240px;
    margin: auto;
    justify-content: space-between;
    padding: 20px 0 10px 0;
}

.header-logo {
    width: 9%;
}

.header-navbar {
    padding: 20px 0 20px 0;
}

navbar {
}

.navbar-container {
    display: flex;
}

.nav-link a span {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 19px;
    color: #7a7a7a;
    font-weight: 500;
    padding: 10px 20px 20px 20px;
    letter-spacing: 1px;
}
    .nav-link a span:hover {
        color: #4C28FE;
    }


    /* underline hidden by default */
    .nav-link a span::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: #4C28FE;
        transition: width 0.3s ease;
    }

/* on hover show underline */
.nav-link:hover a span::after {
    width: 100%;
}

/* smooth transition */
.header,
.header-container,
.header-logo img {
    transition: all 0.35s ease;
}

    /* SHRINK STATE */
    .header.shrink {
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

        .header.shrink .header-container {
            padding: 8px 0;
        }

        .header.shrink .header-logo img {
            transform: scale(0.75);
        }

        .header.shrink .header-navbar {
            padding: 10px 0;
        }

        /* Optional: nav text thoda compact */
        .header.shrink .nav-link a span {
            padding: 15px 18px;
            font-size: 17px;
        }



/*############  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: 30px;
    right: 30px;
    padding: 10px 12px;
    border: none;
    border-radius: 50%;
    background-color: #4C29FF;
    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: #106CA0;
        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 {
    width: 100%;
    background-color: #F6F9F9;
    border-top: 1px solid grey;
}

.copyright-container {
    display: flex;
    padding: 40px 0;
}

.left {
    width: 50%;
    text-align: end;
    border-right: 3px solid white;
    color: #01578c;
    font-size: 19px;
    font-weight: 400;
    font-family: 'Josefin Sans';
    padding: 10px 10px 10px 0px;
    border-right: 2px solid #106CA0;
}

.right {
    width: 50%;
    font-weight: 400;
    padding: 10px 0 10px 10px;
}

    .right a {
        color: #01578c;
        font-size: 19px;
    }




/*-------HOME PAGE------*/
.section1 {
    width: 100%;
    position: relative;
    background-image: url('../img/doc1.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 10px 0px 100px 0px;
    margin-top: 120px;
}

.section1-bg-overlay {
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(-90deg, #6752CE 30%, #01578C -70%);
    opacity: 0.85;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    inset: 0;
}

.section1-containers {
    position: relative;
    max-width: 1240px;
    width: 100%;
    margin: auto;
    padding: 120px 0 0px 0;
}

.section1-container {
    display: flex;
}

.section1-container1 {
    width: 54%;
    margin: auto;
    padding: 0 80px 0 10px;
}

.section1-txt h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    color: white;
}

.section1-container2 {
    width: 38%;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.contact-section2-container1 {
    padding-top: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease-out forwards;
    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;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.contact-content-heading h3 {
    color: #7a7a7a;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    padding-top: 1px;
}

.contact-section1-form {
    padding: 10px 40px 50px 40px;
}

.contact-section1-container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

/* Label ka container */
.label {
    display: flex;
    flex-direction: column;
    padding: 14px 0px 14px 0px;
    gap: 6px; /* label aur input ke beech perfect spacing */
}

.name {
    padding: 15px 10px;
    font-size: 15px;
    color: #333;
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    background-color: #FAFAFA;
    background: none;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.textform {
    padding: 15px 10px 80px 10px;
}

.name:focus {
    border-color: #853B94;
    box-shadow: 0 0 8px rgba(133, 59, 148, 0.4);
    outline: none;
}

.button {
    width: fit-content;
    margin-top: 20px;
}

/* ---------- SUBMIT BUTTON ---------- */
.submit {
    width: 100%;
    color: white;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    background: #4C28FE;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(10, 55, 103, 0.3);
}

    .submit:hover {
        background: #106CA0;
    }




.section2 {
    width: 100%;
}

.section2-container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 100px 0 100px 0;
}

.section2-contents {
    display: flex;
    gap: 60px;
}

.section2-content1 {
    width: 45%;
}
.section2-content1 {
    border-radius: 20px;
    transition: 0.5s ease all;
    box-shadow: 3px 3px 5px 0px #888888;
    border-radius: 15px;
    overflow: hidden;
}
    .section2-content1 img {
        transition: 0.5s ease all;
    }

        .section2-content1 img:hover {
            border-radius: 15px;
            transform: scale(1.04); 
            box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
        }

.section2-content2 {
    width: 44%;
    margin: auto;
}

.section2-txt p {
    text-align: justify;
    font-size: 17px;
    line-height: 27px;
}




.section3 {
    width: 100%;
    background-color: #F7F6F2;
}

.section3-container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    display: flex;
    padding: 50px 50px 50px 50px;
    justify-content: space-between;
}

.blog {
    margin-top: 30px;
}

.cca {
    padding: 15px 35px;
    background-color: #4C28FE;
    border-radius: 10px;
    color: white;
    transition: 0.5s ease all;
}

    .cca:hover {
        background-color: #106CA0;
    }

    .cca::after {
        content: "➜";
        font-size: 18px;
        margin-left: 10px;
        display: inline-block;
    }

.section3-img {
}




.section4 {
    background-color: #F7F6F2;
    width: 100%;
    margin-top: 65px;
}

.section4-container {
    display: flex;
    width: 100%;
    max-width: 1140px;
    margin: auto;
    gap: 25px;
    padding: 20px 0 20px 0;
}

.section4-img {
    border-radius: 20px;
    transition: 0.5s ease all;
    box-shadow: 3px 3px 5px 0px #888888;
}

    .section4-img:hover {
        transform: scale(1.04);/*
        animation: floatY 1s ease-in-out infinite alternate;*/
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .section4-img img {
        border-radius: 15px;
        overflow: hidden;
    }




.section5 {
    background-color: #F7F6F2;
    width: 100%;
    margin-top: 65px;
}

.section5-container {
    display:flex;
    width: 100%;
    max-width: 1140px;
    margin: auto;
    gap: 25px;
    padding: 20px 0 20px 0;
}

.section5-img {
    border-radius: 20px;
    transition: 0.5s ease all;
    box-shadow: 3px 3px 5px 0px #888888;
}

    .section5-img:hover {
        animation: floatY 1s ease-in-out infinite alternate;
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .section5-img img {
        border-radius: 15px;
        overflow: hidden;
        height: 800px;
    }



.section6 {
    background-color: #F7F6F2;
    width: 100%;
    margin-top: 65px;
}

.section6-container {
    display: flex;
    width: 100%;
    max-width: 1140px;
    margin: auto;
    gap: 25px;
    padding: 20px 0 20px 0;
}

.auto {
    margin: auto;
}

.section6-img {
    border-radius: 20px;
    transition: 0.5s ease all;
    box-shadow: 3px 3px 5px 0px #888888;
    margin: auto;
}

    .section6-img:hover {
        transform: scale(1.04);/*
        animation: floatY 1s ease-in-out infinite alternate;*/
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .section6-img img {
        border-radius: 15px;
        overflow: hidden;
    }

.section-h6-txt h6 {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin: 0px 0 30px 0;
}




.section7 {
    padding: 50px 0 20px 0;
}

.section7-containers {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.divider {
    border-bottom: 1px solid black;
}

.section7-heading h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 600;
}

.end {
    text-align: end;
}
.section7-contents {
    overflow: visible; /* IMPORTANT */
}
.section7-container {
    margin-top: 80px;
}

.section7-container1 {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.section7-img {
    border: 1px solid #F9F9F9;
    overflow: hidden;
    width: 30%;
    background-color: #F9F9F9;
    margin-top: 20px;
}

    .section7-img img {
        border-radius: 50%;
        overflow: hidden;
        width: 32%;
        padding: 35px 0;
        justify-self: center;
    }

.section7-contents {
    width: 59%;
    margin: auto;
}

.section7-heading h3 {
    color: #4a4a4a;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}

.read {
    font-size: 18px;
    color: #4C29FF;
}

    .read::after {
        content: "➜";
        font-size: 18px;
        margin-left: 10px;
        display: inline-block;
    }

.read-more {
    transition: 0.5s ease all;
}

    .read-more:hover {
        transform: scale(1.04);
    }

        .read-more:hover .read {
            color: #01578c;
        }




/*-------SERVICE PAGE-------*/
.service-desktop {
    display: block;
    width: 100%;
    margin-top: 120px;
}

.service-mobile {
    display: none;
}




/*-------EVENTS PAGE------*/
.events-desktop {
    display: block;
    width: 100%;
    margin-top: 120px;
}

.events-mobile {
    display: none;
}


.events {
    padding: 50px 0 20px 0;
}

.events-containers {
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

.events-heading h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
}

.events-container {
    padding: 70px 0 70px 0;
}

.events-container1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
}

.events-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin-top: 30px;
}

.events-img {
    transition: 0.5s ease all;
    box-shadow: 3px 3px 5px 0px #888888;
    border-radius: 15px;
}

    .events-img:hover {
        transform: scale(1.04);
        box-shadow: 0px 0px 10px 0px rgba(28.833478260869555, 38.51361247637054, 159.79999999999998, 0.75);
    }

    .events-img img {
        border-radius: 15px;
        overflow: hidden;
    }




/*-------VIDEOS PAGE----*/
.videos-desktop {
    display: block;
    width: 100%;
    margin-top: 120px;
}

.videos-mobile {
    display: none;
}

.videos {
    padding: 50px 0 60px 0;
}

.videos-containers {
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

.videos-heading h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
}

.videos-container {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
}

.videos-contents iframe {
    border: 4px solid black;
}




/*------V T SHAH PAGE------*/
.cmn-desktop {
    display: block;
    width: 100%;
    margin-top: 120px;
}

.cmn-mobile {
    display: none;
}

.cmn-containers {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    gap: 60px;
    padding: 120px 0px 40px 0px;
}

.cmn-contents {
    width: 75%;
    margin: auto;
}

.divider1 {
    position: relative;
    text-align: center;
    margin: 20px 0;
    line-height: 0;
    width: 33%; /* YEH MOST IMPORTANT FIX HAI */
}

.divider2 {
    position: relative;
    text-align: center;
    margin: 20px 0;
    line-height: 0;
}

    .divider1 i, .divider2 i {
        font-size: 22px;
        color: #555;
        background: #fff; /* center white patch jaisa effect */
        padding: 0 8px; /* lines se distance */
        position: relative;
        top: -1px; /* adjust: -1px, 0px, or +1px depending on icon */
    }

/* LINES */
.divider1::before,
.divider1::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #555;
}

/* LINES */
.divider2::before,
.divider2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 47%;
    height: 1px;
    background: #555;
}

.divider1::before, .divider2::before {
    left: 0;
}

.divider1::after, .divider2::after {
    right: 0;
}

.cmn-img {
    width: 49%;
    margin: auto;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

    .cmn-img img {
        width: 100%;
        display: block;
    }

    /* Purple overlay */
    /*.cmn-img::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(111, 76, 255, 0.55);*/ /* adjust opacity/color */
        /*opacity: 0;
        transition: 0.4s ease;
    }*/

    /* Hover effect */
    /*.cmn-img:hover::after {
        opacity: 1;
    }*/

.cmn-txt h2 {
    font-size: 45px;
    font-weight: 600;
    margin-top: 0px;
}

.cmn-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.cmn-container {
    display: block;
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 20px 0px;
}





.vt1 {
    width: 100%;
}

.vt-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}




.vt2 {
    width: 100%;
}




.vt3 {
    width: 100%;
}

.vt3-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.vt3-container1 {
    width: 50%;
    background-color: #106CA0;
}

.vt3-container2 {
    width: 50%;
    background-color: #4C28FE;
}

.vt3-txt {
    padding: 5px 20px 20px 20px;
}

    .vt3-txt h3 {
        font-size: 35px;
        font-weight: 400;
        color: white;
    }

    .vt3-txt li {
        font-size: 18px;
        font-weight: 400;
        color: white;
        line-height: 30px;
    }




.vt4 {
    width: 100%;
}

.vt4-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0 10px 0;
}

.vt4-txt h3 {
    font-size: 35px;
    font-weight: 400;
    color: #414247;
    line-height: 30px;
    text-align: center;
}

.vt4-txt p {
    font-size: 22px;
    font-weight: 400;
    color: #414247;
    line-height: 30px;
    position: relative;
    text-align: justify;
    padding-left: 40px; /* space for icon */
}
    /* Create the tick-circle */
    .vt4-txt p::before {
        content: "\2713"; /* tick symbol */
        position: absolute;
        left: 0;
        top: 2px;
        width: 30px;
        height: 30px;
        background-color: #37368E;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        font-weight: bold;
    }





.vt5 {
    width: 100%;
}

.vt5-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 10px 0 50px 0;
}

.vt5-txt h3 {
    font-size: 35px;
    font-weight: 400;
    color: #414247;
    line-height: 30px;
    text-align: center;
}

.vt5-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    position: relative;
    text-align: justify;
    padding-top: 35px;
}




/*-------SHETTY PAGE-------*/
.shetty1 {
    width: 100%;
}

.shetty-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}



.shetty2 {
    width: 100%;
}

.shetty-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}

.shetty-txt li {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
    list-style: none;
    margin-bottom: 5px;
}



.shetty3 {
    width: 100%;
}

.list {
    list-style: disc !important;
}

.accordion {
    color: #5a5a5a;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 19px;
    font-family: px;
    font-family: 'Josefin Sans';
    transition: 0.4s;
    position: relative;
    background-color: #F4F8FD;
}
    /* the +/- icon */
    .accordion::after {
        content: '+'; /* default is plus */
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        line-height: 1;
    }

    /* when active, change to minus */
    .accordion.active::after {
        content: '–'; /* Unicode “en‑dash” (looks like a minus) */
    }

    .accordion:hover,
    .accordion.active {
        background-color: #1e73be;
        color: white;
    }

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #ccc;
}

    .panel p {
        font-size: 18px;
        font-family: 'Josefin Sans';
        line-height: 30px;
        letter-spacing: 0px;
        color: #7a7a7a;
    }




/*--------DR. DALAL PAGE------*/
.dalal1 {
    width: 100%;
}

.dalal-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}


.dalal2 {
    width: 100%;
}

.dalal2-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}

.dalal-txt h3 {
    font-size: 37px;
    font-weight: 400;
    color: #414247;
    line-height: 30px;
    text-align: center;
}

.fourth-section {
    padding: 70px 0 100px 0;
    width: 100%;
}

.fourth-section-containers {
    margin-top: 40px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.games {
    display: flex;
    width: 100%;
}

.elevation, .amenities, .drone {
    width: 33.3%;
    background-color: #F1F1F1;
    border: 2px solid #FF8686;
    cursor: pointer;
    transition: 0.5s ease all;
}

    .elevation:hover, .amenities:hover, .drone:hover {
        background-color: #333333;
    }

    .elevation p, .amenities p, .drone p {
        font-size: 18px;
        color: #333;
        font-family: 'Josefin Sans';
        font-weight: 400;
        letter-spacing: 1px;
        text-align: center;
        padding: 7px 0;
    }

    .elevation:hover p, .amenities:hover p, .drone:hover p {
        color: white;
    }

.ul {
    padding: 20px 0px 30px 50px;
}

Style the tab
.tabs {
    overflow: hidden;
}

Style the buttons inside the tab
.tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

Change background color of buttons on hover
.tabs button:hover {
    background-color: #ddd;
}

Create an active/current tablink class
.tabs button.active {
    background-color: #ccc;
}

Style the tab content
.tabscontent, .tabscontents {
    max-width: 1140px;
    margin: auto;
    width: 100%;
    display: none;
    padding: 50px 12px;
    border-top: none;
}

.dalal-txt li {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 30px;
    text-align: justify;
    list-style: disc;
    margin-bottom: 5px;
}

.title-icon, .title-icon1, .title-icon2 {
    position: relative;
    padding-left: 28px; /* space for icon */
    font-size: 18px;
    font-weight: 500;
}

    /* Add the icon BEFORE the text */
    .title-icon::before, .title-icon1::before, .title-icon2::before {
        content: "\f0f1"; /* FontAwesome Stethoscope */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #333;
        font-size: 20px;
        position: absolute;
        left: 50px;
        top: 50%;
        transform: translateY(-50%); /* PERFECT vertical centering */
    }

.elevation:hover .title-icon::before {
    color: #fff !important;
}
/* Book icon */
.title-icon1::before {
    content: "\f518"; /* book-open icon */
}

.amenities:hover .title-icon1::before {
    color: #fff !important;
}
/* Award icon */
.title-icon2::before {
    content: "\f559"; /* award glyph code */
}

.drone:hover .title-icon2::before {
    color: #fff !important;
}



/*-------HIREMATH PAGE-------*/
.hire1 {
    width: 100%;
}

.hire-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}




/*-------AJIT BHAGWAT PAGE-------*/
.ajit1 {
    width: 100%;
}

.ajit-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.ajit-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}



/*-------SIDDHARTH DAGALI PAGE-------*/
.dagli1 {
    width: 100%;
}

.dagli-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.dagli-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}

.dagli-txt li {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 30px;
    text-align: justify;
    list-style: disc;
    margin-bottom: 5px;
}





/*-------NITIN DESHPANDE PAGE-------*/
.nitin1 {
    width: 100%;
}

.nitin-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.nitin-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}




/*-------RAMESH DAGGUBATI PAGE-------*/
.daggu1 {
    width: 100%;
}

.daggu-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}




/*-------ASHOK SETH PAGE-------*/
.seth1 {
    width: 100%;
}

.seth-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.seth-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}




/*-------ASHOK SETH PAGE-------*/
.manjunath1 {
    width: 100%;
}

.manjunath-txt p {
    font-size: 18px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 30px;
    text-align: justify;
}

.manjunath-container {
    width: 100%;
    max-width: 1140px;
    margin: auto;
    padding: 0px 0px 60px 0px;
}






/*----------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: #675AC2;
    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;
}
