* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


/* ----------------- Index.html -----------------  */

/* ----------------- PopUp form -----------------  */


.popup {
    position: fixed;
    /* CHANGED from absolute */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(0.8);
    z-index: 1001;
    width: 950px;
    height: 600px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}


.popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup .left {
    height: 100%;
    width: 100%;
    background-color: rgb(84, 61, 61);
    border-radius: 20px 0 0 20px;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('/homeData/stat1.jpg') no-repeat center center;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup .left img{
    height: 40px;
}

.popup .left h4{
    font-size: 1.2rem;
    color: white;
    font-family: 'Aboreto', cursive;
    margin-top: 0.5rem;
    text-align: center;
}

.popup .right {
    height: 100%;
    width: 100%;
    border-radius: 0 20px 20px 0;
    padding: 0.1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.popup .right img {
    height: 60px;
    width: auto;
}

.popup .right .p-head h2 {
    width: 100%;
    font-family: 'Aboreto', cursive;
}

.popup .right form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.popup .right form input,
.popup .right form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    box-sizing: border-box;
}

.popup .right form button {
    width: 100%;
    padding: 10px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
}


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 1000;
}

.popup .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1001;
    font-size: 18px;
    cursor: pointer;
    background-color: #007BFF;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 0 1rem;
    color: white;
    border-bottom: 0.5rem solid #161E29;
    border-left: 0.5rem solid #161E29;

}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.social-icons a i {
    color: #007BFF;
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.social-icons a:hover i {
    transform: scale(1.1);
}

.reassurance-line {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
}


@media (max-width:940px) {
    .popup {
        width: 720px;
    }
}

@media (max-width:768px) {
    .popup .left {
        display: none;
    }

    .popup {
        width: 80%;
    }

    .popup .right .p-head h2 {
        width: 100%;
        text-align: center;
    }
}

/* ----------------- Header -----------------  */
header {
    position: relative;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 2rem;
    width: 100%;
    z-index: 999;
}

header .logo {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

header .logo img {
    width: 250px;
}

header .logo h4 {
    color: black;
}

header nav {
    padding: 1.5rem 0;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header nav ul li {
    margin: 0 8px;
}

header nav ul li a {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 1.1rem;
    transition: all 0.5s ease-in-out;
    font-family: 'Aboreto', cursive;
}

header nav ul li a:hover {
    background: linear-gradient(to right, #2B4FAF, #545FFE);
    border-radius: 50px;
    padding: 5px 15px;
    color: white;
    font-weight: 500;
}

nav ul li a.active {
    background: linear-gradient(to right, #2B4FAF, #545FFE);
    border-radius: 50px;
    padding: 5px 15px;
    color: white;
    font-weight: 500;
}

header .btn .call-btn {
    background: linear-gradient(to right, #2B4FAF, #545FFE);
    padding: 0.5rem 1rem;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

header .btn .icon-wrapper {
    background-color: white;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .btn .icon-wrapper i {
    color: #545FFE;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 999;
}

.hamburger span {
    background: #2B4FAF;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: 0.4s;
}

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

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

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

.nav-container {
    display: flex;
    gap: 20px;
}

header,
header .logo,
header .hamburger,
header .nav-container,
header .btn {
    opacity: 0;
    transform: translateY(-20px);
    animation: headerFadeIn 0.6s ease-out forwards;
}

header {
    animation-delay: 1.6s;
}

header .logo {
    animation-delay: 1.7s;
}

header .hamburger {
    animation-delay: 1.8s;
}

header .nav-container {
    animation-delay: 1.9s;
}

header .btn {
    animation-delay: 2s;
}

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

@media screen and (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: -10000%;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgb(255, 255, 255);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: top 0.5s ease-in-out;
        z-index: 998;
    }

    .nav-container.active {
        top: 0;
    }

    header nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    header nav ul li a {
        font-size: 1.5rem;
        color: #2B4FAF;
    }

    header .btn {
        display: none;
    }

    header {
        padding: 0.5rem;
        padding-right: 1rem;
    }

    .logo img {
        width: 180px;
    }
}

@media (max-width: 468px) {
    header .logo img {
        width: 190px;
    }

    header {
        padding: 0.5rem;
        padding-right: 1rem;
    }
}

/* ----------------- Hero Sec -----------------  */

.hero-sec {
    padding: 0rem 2rem;
    height: 90dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-sec .website {
    position: relative;
    width: 30%;
    height: 35dvh;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInExpand 1.5s ease-out forwards;
}

@keyframes slideInExpand {
    0% {
        transform: translateX(100%);
        width: 30%;
        opacity: 0;
    }

    60% {
        transform: translateX(0%);
        width: 30%;
        height: 35dvh;
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        transform: translateX(0%);
        opacity: 1;
    }
}



.hero-sec .vector video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-sec .clipped-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

/* ENTRY ANIMATIONS */
.hero-sec .clipped-overlay h1,
.hero-sec .clipped-overlay h2,
.hero-sec .clipped-overlay button,
.hero-sec .scroll {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s ease-out forwards;
}

/* Staggering the animations */
.hero-sec .clipped-overlay h1 {
    animation-delay: 1.6s;
}

.hero-sec .clipped-overlay h2 {
    animation-delay: 1.9s;
}

.hero-sec .clipped-overlay button {
    animation-delay: 2.2s;
}

.hero-sec .scroll {
    animation-delay: 2.5s;
}

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

.hero-sec .clipped-overlay h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 5rem;
    margin-bottom: 0.2rem;
    color: transparent;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
}

.hero-sec .clipped-overlay h2 {
    font-size: 2.5rem;
    font-family: 'Aboreto', cursive;
}

.hero-sec .clipped-overlay button {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    background: transparent;
    border: solid 1px white;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 2rem;

}

.hero-sec .clipped-overlay button:hover {
    background: linear-gradient(to right, #2B4FAF, #545FFE);
    border: none;
    font-weight: bold;
}

.hero-sec .vector {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rebeccapurple;
    border-radius: 0 1.25rem 1.25rem;
}

.hero-sec svg {
    position: absolute;
    width: 0;
    height: 0;
}

.scroll {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    position: absolute;
    right: 50px;
    bottom: 0px;
}

.scroll .s-line {
    width: 2px;
    height: 80px;
    background-color: white;
}

.scroll h4 {
    color: white;
    font-size: 1.2rem;
    transform: rotate(270deg);
    margin-bottom: 1.8rem;
}

.round-box {
    height: 50px;
    width: 260px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 1rem 0;
}

.round-box::after,
.round-box::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.round-box::after {
    background: transparent;
    top: 0px;
    right: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.20rem -0.20rem white;
}

.round-box::before {
    background: transparent;
    left: 0px;
    bottom: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.30rem -0.30rem white;
}

@media screen and (max-width: 768px) {
    .hero-sec .clipped-overlay h1 {
        font-size: 10vw;
    }

    .hero-sec .clipped-overlay h2 {
        font-size: 5vw;
    }

    .scroll {
        right: 15px;
    }

    .scroll .s-line {
        height: 50px;
    }

    .scroll h4 {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-sec {
        padding: 0 0rem;
    }

    .hero-sec .clipped-overlay {
        padding: 1rem;
    }

    .hero-sec .clipped-overlay h1 {
        font-size: 12vw;
    }

    .hero-sec .clipped-overlay h2 {
        font-size: 6vw;
    }

    .hero-sec .clipped-overlay button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .scroll {
        display: none;
    }

    .round-box {
        width: 210px;
        height: 35px;
    }
}

/* ----------------- Hero Sec End-----------------  */

/* ----------------- About Sec -----------------  */

.about {
    overflow: hidden;
    padding: 5rem 2rem;
    padding-bottom: 8rem;
}

.a-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
}

.a-top .a-left .head {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.a-top .a-left .head img {
    height: 100px;
    height: 100px;
}

.a-top .a-left .head h4 {
    margin: 0;
    font-size: 3rem;
    color: #2C50B1;
    margin-left: 2rem;
    font-family: 'Aboreto', cursive;
}

.a-top .a-left p {
    color: #A0A0A0;
}

.a-top .a-left button {
    border: solid 1px black;
    background: transparent;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
}

.a-top .a-left button:hover {
    background: linear-gradient(to right, #2B4FAF, #545FFE);
    border: none;
    font-weight: bold;
    color: white;
}

.a-top .a-right h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Aboreto', cursive;
}

.a-top .a-right p {
    color: #A0A0A0;
}

.a-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.a-bottom .video-circle {
    height: 65vh;
    width: 100%;
    position: relative;
}

.a-bottom .video-circle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 500px;
}

.a-bottom .oval-shape {
    display: flex;
    justify-content: center;
    align-items: end;
    position: absolute;
    bottom: -100px;
    z-index: -1;
    width: 100%;
    height: 65vh;
    border-radius: 500px;
    background: linear-gradient(#ffffff00, #204b9b1d);
}

.a-bottom .oval-shape h2 {
    font-size: 5rem;
    color: white;
    font-family: sans-serif;
    font-weight: 300;
}

.about .a-left,
.about .a-right,
.about .a-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.about.animate .a-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.about.animate .a-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.about.animate .a-right p {
    font-size: 1.2rem;
}

.about.animate .a-bottom {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.9s;
}

.about .a-left {
    transform: translateX(-50px);
}

.about .a-right {
    transform: translateX(50px);
}

.about .a-bottom {
    transform: scale(0.9);
}


/* Tablet view (up to 1024px) */
@media (max-width: 1024px) {
    .a-top {
        flex-direction: column;
        gap: 3rem;
    }

    .a-top .a-left,
    .a-top .a-right {
        width: 100%;
    }

    .a-top .a-right h2 {
        font-size: 2.5rem;
    }

    .a-bottom .video-circle {
        height: 50vh;
    }

    .a-bottom .oval-shape {
        height: 50vh;
    }

    .a-bottom .oval-shape h2 {
        font-size: 4rem;
    }

    .a-top .a-left .head img {
        height: 70px;
    }

    .a-top .a-left .head h4 {
        font-size: 2.2rem;
    }
}

/* Mobile view (up to 768px) */
@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }

    .a-top .a-right h2,
    .a-top .a-left .head h4 {
        font-size: 2rem;
        text-align: center;
    }

    .a-top .a-left p,
    .a-top .a-right p {
        font-size: 1rem;
        text-align: center;
    }

    .a-top .a-left button {
        display: block;
        margin: 2rem auto 0 auto;
    }

    .a-bottom .video-circle {
        height: 40vh;
    }

    .a-bottom .oval-shape {
        height: 40vh;
        bottom: -35px;
    }

    .a-bottom .oval-shape h2 {
        font-size: 3rem;
    }

    .a-top .a-left .head {
        flex-direction: column;
        align-items: center;
    }

    .a-top .a-left .head img {
        height: 60px;
    }

    .a-top .a-left .head h4 {
        margin-left: 0;
        margin-top: 1rem;
    }

    .a-bottom {
        margin-top: 2rem;
    }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {

    .about {
        padding: 3rem 0rem;
    }

    .a-top {
        padding: 0rem 1rem;
        ;
    }

    .a-top .a-right h2,
    .a-top .a-left .head h4 {
        font-size: 1.6rem;
    }

    .a-top .a-left p,
    .a-top .a-right p {
        font-size: 0.95rem;
    }

    .a-bottom .video-circle {
        height: 35vh;
    }

    .a-bottom .oval-shape {
        display: none;
    }
}

/* ----------------- About Sec End-----------------  */

/* ----------------- Banner Sec -----------------  */

.banner {
    margin: -3rem 0 2.5rem 0;
    overflow: hidden;
}

.banner .banner-container .b-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .banner-container .b-top img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.banner .banner-container .b-bottom {
    text-align: center;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    padding: 3rem 1rem;
    background: linear-gradient(to right, #2B4FAF, #545FFE);
}

.banner .banner-container .b-bottom h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-family: 'Aboreto', cursive;
    margin-bottom: 1rem;
}

.banner .banner-container .b-bottom p {
    color: rgb(221, 221, 221);
    font-size: 1.2rem;
    margin: 0.5rem 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner .banner-container .b-bottom button {
    border: solid 1px rgb(255, 255, 255);
    background: transparent;
    padding: 0.6rem 1.4rem;
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.banner .banner-container .b-bottom button:hover {
    background-color: white;
    color: #2B4FAF;
}


.banner .banner-container .b-top img {
    transform: scale(0);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.banner.active .b-top img {
    transform: scale(1);
    opacity: 1;
}

.banner .b-bottom {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s ease-out 0.5s, opacity 1s ease-out 0.5s;
}

.banner.active .b-bottom {
    transform: translateX(0);
    opacity: 1;
}

.banner.scaling-away .b-top img {
    transform: scale(1.5);
    opacity: 0;
    transition: transform 0.6s ease-in, opacity 0.6s ease-in;
}

@media (max-width: 600px) {
    .banner .banner-container .b-bottom h2 {
        font-size: 1.6rem;
    }

    .banner .banner-container .b-bottom p {
        font-size: 1rem;
    }

    .banner .banner-container .b-bottom button {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* ----------------- Banner Sec End-----------------  */

/* ----------------- Statistics Sec -----------------  */

.statistics {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

.stat-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    width: 100%;
    height: auto;
    background-size: contain;
}

.stat-container .box {
    border-radius: 15px;
    min-height: 200px;
    overflow: hidden;
}

/* Background images */
.buildin-img {
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('/homeData/stat1.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    border: solid 1px rgb(214, 214, 214);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.buildin-img img{
    height: 60px;
}

.buildin-img h4{
    font-size: 1.8rem;
    color: white;
    font-family: 'Aboreto', cursive;
    margin-top: 0.5rem;
    text-align: center;
}

.map {
    background: url('homeData/map1.jpg') no-repeat center center;
    background-size: cover;
    border: solid 1px rgb(214, 214, 214);
}

.four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    width: 100%;
    height: auto;
}

.four .stat-counter {
    width: 90%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    border: solid 1px rgb(214, 214, 214);
}

.four .stat-counter h2 {
    font-size: 2.2rem;
    font-weight: 400;
    font-family: 'Aboreto', cursive;
}

.four .stat-counter p {
    text-align: center;
}

.three {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.three .box-left {
    height: 100%;
    width: 100%;
}

.three .box-right {
    height: 100%;
    width: 100%;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: solid 1px rgb(214, 214, 214);

}

.three .box-right h4 {
    padding: 1rem;
}

.box-right .mid-circle-3 {
    height: 100%;
    width: 100%;
    background: url(/images/downtown-4045037_1920.jpg);
    background-size: cover;
}

.three .box-right h2 {
    margin-top: 2rem;
    font-size: 1.6rem;
    font-weight: 300;
    padding: 1rem;
}

.box-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.box-top {
    border: solid 1px rgb(214, 214, 214);
    padding: 2rem 1rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.mid-circle {
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    margin-left: 1rem;
}

.mid-circle-2 {
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    margin-left: 0rem;
}

.box-top h4 {
    font-size: 1.6rem;
    font-weight: 300;
}

.box-top .mid-box-circle-one {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: url(/images/bg.jpg);
    background-size: cover;
    margin-top: 1.5rem;
    border: solid 3px white;
    margin-left: -20px;
}

.mid-circle .mid-box-circle-one:nth-child(1) {
    background-image: url('/homeData/explore1.jpg');
}

.mid-circle .mid-box-circle-one:nth-child(2) {
    background-image: url('/homeData/explore2.jpg');
}

.mid-circle .mid-box-circle-one:nth-child(3) {
    background-image: url('/homeData/explore3.jpg');
}

.mid-circle .mid-box-circle-one:nth-child(4) {
    background-image: url('/homeData/explore4.jpg');
}

.box-top .mid-box-circle-2 {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* background: url(/images/bg.jpg); */
    background-size: cover;
    margin-top: 1.5rem;
    border: solid 3px white;
    margin-left: -10px;
}

.mid-circle-2 .mid-box-circle-2:nth-child(1) {
    background-image: url('/homeData/community1.jpg');
}

.mid-circle-2 .mid-box-circle-2:nth-child(2) {
    background-image: url('/homeData/community2.jpg');
}

.mid-circle-2 .mid-box-circle-2:nth-child(3) {
    background-image: url('/homeData/community3.jpg');
}

.mid-circle-2 .mid-box-circle-2:nth-child(4) {
    background-image: url('/homeData/community4.jpg');
}

.mid-circle-2 .mid-box-circle-2:nth-child(5) {
    background-image: url('/homeData/community5.jpg');
}
.mid-circle-2 .mid-box-circle-2:nth-child(6) {
    background-image: url('/homeData/community6.jpg');
}
.mid-circle-2 .mid-box-circle-2:nth-child(7) {
    background-image: url('/homeData/community7.jpg');
}
.mid-circle-2 .mid-box-circle-2:nth-child(8) {
    background-image: url('/homeData/community8.jpg');
    background-position: center;
}

.stat-container .box {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s ease;
}

.stat-container .box.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-container .box:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-container .box:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-container .box:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-container .box:nth-child(4) {
    transition-delay: 0.4s;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .stat-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .four {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .three {
        gap: 2rem;
    }

    .box-left,
    .box-right {
        width: 100%;
    }

    .three .box-right h2 {
        font-size: 1.4rem;
    }

    .stat-container .box {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .statistics {
        padding: 1rem;
    }

    .four {
        grid-template-columns: 1fr;
    }

    .four .stat-counter {
        width: 100%;
        height: 120px;
    }

    .four .stat-counter h2 {
        font-size: 2.5rem;
    }

    .three .box-right h2 {
        font-size: 1.2rem;
    }

    .box-top h4,
    .three .box-right h4 {
        font-size: 1.3rem;
    }

    .box-circle-one,
    .box-circle-two,
    .box-circle-three,
    .mid-box-circle-one {
        height: 100px;
        width: 100px;
    }

    .box-circle-two {
        right: 2rem;
        bottom: 5px;
    }

    .box-circle-three {
        bottom: -20px;
        right: 3rem;
    }
}

@media (max-width: 480px) {
    .stat-container {
        gap: 1.5rem;
    }

    .three {
        flex-direction: column;
    }

    .four .stat-counter h2 {
        font-size: 2rem;
    }

    .three .box-right h2 {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .box-top h4,
    .three .box-right h4 {
        font-size: 1.1rem;
    }

    .box-circle-one,
    .box-circle-two,
    .box-circle-three,
    .mid-box-circle-one {
        height: 60px;
        width: 60px;
    }

    .box-circle-two {
        right: 1.5rem;
        bottom: 5px;
    }

    .box-circle-three {
        bottom: -15px;
        right: 2rem;
    }

    .mid-circle-3 {
        height: 200px;
        width: auto;
        background: url(/images/downtown-4045037_1920.jpg);
        background-size: cover;
    }

    .buildin-img img{
        height: 40px;
    }
    
    .buildin-img h4{
        font-size: 1.2rem;
        color: white;
        font-family: 'Aboreto', cursive;
    }
}

/* ----------------- Statistics Sec End-----------------  */


/* ----------------- Testimonial Sec ----------------- */
.testimonial {
    padding: 0rem 2rem;
    background: radial-gradient(rgba(255, 255, 255, 0.908), rgb(255, 255, 255)),
        url(/images/bg.jpg);
    background-size: cover;
    background-position: center;

}

.t-head {
    padding: 1rem;
}

.t-head h2 {
    font-size: 2.5rem;
    color: #2C50B1;
    font-family: 'Aboreto', cursive;
    position: relative;
    padding-left: 9rem;
    margin: 0;
}

.t-head h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 8rem;
    background-color: #2C50B1;
}

.container {
    max-width: 124rem;
    margin: 0 auto;
}

#tranding {
    padding-top: 4rem;
}

#tranding .tranding-slider {
    height: 45rem;
    position: relative;
}

.tranding-slide {
    width: 30rem;
    height: 38rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tranding-slide .tranding-slide-img img {
    width: 42rem;
    height: 42rem;
    border-radius: 2rem;
    object-fit: contain;
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    display: none;
}

.tranding-slider-control {
    position: relative;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tranding-slider-control .swiper-pagination {
    position: relative;
    width: 15rem;
    bottom: -1rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
    background: #007BFF;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-content {
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-content.slide-left {
    transform: translateX(-100%);
}

.testimonial-content.slide-right {
    transform: translateX(100%);
}

@media (max-width: 600px) {
    .t-head h2 {
        font-size: 1.6rem;
        padding-left: 3rem;
    }

    .t-head h2::before {
        width: 2.5rem;
    }
}

@media (max-width: 412px) {

    .testimonial {
        padding: 5rem 0rem 0 0;
    }

    .t-head {
        padding: 0rem;
        padding-right: 1rem;
    }

}

/* ----------------- Testimonial Sec End----------------- */

/* ----------------- About.html -----------------  */

/* ----------------- About Page -----------------  */

.a-hero-sec {
    padding: 0 2rem;
    overflow: hidden;
}

.a-hero-sec .website {
    position: relative;
    width: 100%;
    height: 65vh;
}

.a-hero-sec .vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    border-radius: 1.25rem 0 1.25rem 1.25rem;
}

.a-hero-sec .vector video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.a-hero-sec .clipped-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.a-scroll {
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.a-scroll h4 {
    color: white;
    font-size: 1rem;
    transform: rotate(270deg);
    margin-bottom: 1rem;
}

.a-scroll .s-line {
    width: 2px;
    height: 60px;
    background-color: white;
}

.a-hero-sec .a-round-box {
    height: 100px;
    width: 90%;
    max-width: 450px;
    background-color: white;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 0 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.a-hero-sec .a-round-box h1 {
    font-size: 3.5rem;
    color: #3654C4;
    font-family: 'Aboreto', cursive;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

.a-hero-sec .a-round-box::after,
.a-hero-sec .a-round-box::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.a-hero-sec .a-round-box::after {
    background: transparent;
    bottom: -18px;
    right: 0px;
    border-top-right-radius: 0.8rem;
    box-shadow: 0.30rem -0.20rem white;
}

.a-hero-sec .a-round-box::before {
    background: transparent;
    left: -18px;
    top: 0px;
    border-top-right-radius: 0.8rem;
    box-shadow: 0.15rem -0.30rem white;
}

/* Media Queries */
@media (max-width: 768px) {

    .a-hero-sec .website,
    .a-hero-sec .vector {
        height: 55vh;
    }

    .a-hero-sec .a-round-box {
        width: 100%;
        height: auto;
        padding: 1rem;
        border-radius: 0 0 0 1rem;
    }

    .a-round-box h1 {
        font-size: 2.5rem;
    }

    .a-scroll {
        right: 1rem;
        bottom: 0.5rem;
    }

    .a-scroll h4 {
        font-size: 0.9rem;
    }

    .a-scroll .s-line {
        height: 40px;
    }
}

@media (max-width: 580px) {
    .a-hero-sec {
        padding: 0 1rem;
    }

    .a-hero-sec .a-round-box {
        max-width: 200px;
    }

    .a-hero-sec .a-round-box h1 {
        font-size: 2rem;
    }

    .a-scroll {
        /* display: none; */
    }
}



/* ----------------- About Page End-----------------  */

/* ----------------- Brand Story -----------------  */

.brand-story {
    padding: 5rem 2rem;
}

.b-l-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
}

.b-l-head h2 {
    flex: 1 1 200px;
    font-size: 3rem;
    font-weight: 400;
    text-align: start;
    font-family: 'Aboreto', cursive;
    color: #4A5BEB;
}

.b-l-head .line {
    flex: 2 1 450px;
    height: 1px;
    background-color: #4A5BEB;
    align-self: center;
}

.brand-container h4 {
    margin-top: 2rem;
    font-size: 2rem;
}

.brand-container h3 {
    margin-top: 1rem;
    font-family: 'Aboreto', cursive;
    font-size: 3rem;
    color: rgb(70, 68, 68);
}

.brand-container p {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: justify;
    color: #343434;
}

.brand-container span {
    color: #4A5BEB;
}

.logo-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.logo-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.logo-container .meaning {
    font-size: 1rem;
    color: #2B4A9A;
    margin: 1rem 0 0;
    padding: 0 1rem;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .b-l-head h2 {
        font-size: 2.5rem;
    }

    .brand-container h3 {
        font-size: 2.5rem;
    }

    .brand-container h4 {
        font-size: 1.6rem;
    }

    .brand-container p {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {

    .b-l-head .line {
        width: 100%;
    }

    .b-l-head h2 {
        text-align: left;
        width: 100%;
    }

    .brand-container h3 {
        font-size: 2rem;
    }

    .brand-container h4 {
        font-size: 1.4rem;
    }

    .brand-container p {
        font-size: 1.1rem;
    }

    .logo-container .meaning {
        font-size: 0.95rem;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .brand-story {
        padding: 3rem 1rem;
    }

    .b-l-head h2 {
        font-size: 2rem;
    }

    .brand-container h3 {
        font-size: 1.8rem;
    }

    .brand-container h4 {
        font-size: 1.2rem;
    }

    .brand-container p {
        font-size: 1rem;
    }

    .logo-container img {
        max-width: 100%;
    }

    .logo-container .meaning {
        font-size: 0.9rem;
        padding: 0;
    }
}

/* ----------------- Brand Story End-----------------  */

/* ----------------- Brand Achievment -----------------  */

.brand-achievment {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
    padding: 3rem 0rem;
}

.brand-achievment-container {
    width: 100%;
}

.brand-achievment-container .first {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 2rem;
    border-top: 0.1px solid rgb(176, 176, 176);
    gap: 5rem;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.brand-achievment-container .first h4 {
    flex: 1 1 250px;
    font-size: 2rem;
    text-transform: uppercase;
    font-family: 'Aboreto', cursive;
}

.brand-achievment-container .first p {
    flex: 2 1 400px;
    font-size: 1rem;
    text-align: justify;
    margin: 1rem 0;
}

.brand-achievment-container .first button {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgb(0, 0, 0);
    padding: 1rem 1rem;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effects */
#first1:hover,
#first2:hover,
#first3:hover,
#first4:hover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#first1:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/aboutData/brand-a1.jpg');
    background-position: top;
}

#first2:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/aboutData/brand-a2.jpg');
    background-position: bottom;
}

#first3:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/aboutData/brand-a3.jpg');
    background-position: center;
}

#first4:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/aboutData/brand-a4.jpg');
    background-position: center;
}

.brand-achievment .first:hover h4,
.brand-achievment .first:hover p,
.brand-achievment .first:hover button {
    color: white;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {

    .brand-achievment-container .first {
        gap: 1rem;
        padding: 2rem 1rem;
    }
}

/* ----------------- Brand Achievment End-----------------  */

/* ----------------- About page about-----------------  */

.about-c {
    padding: 0rem 2rem;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

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

.top-part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-left .line {
    height: 120px;
    width: 2rem;
    background: linear-gradient(#545FFE, #ffffff);
}

.about-left h4 {
    font-size: 2.5rem;
    margin-left: 1.5rem;
}



.about-left .img  {
    height: 380px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('/homeData/stat1.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    border: solid 1px rgb(214, 214, 214);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 2rem;
}

.about-left .img  img{
    height: 60px;
}

.about-left .img h4{
    font-size: 1.8rem;
    color: white;
    font-family: 'Aboreto', cursive;
    margin-top: 0.5rem;
    text-align: center;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 50px;
}

.about-right .para {
    font-size: 20px;
    text-align: justify;
    font-family: 'Aboreto', cursive;
    color: #A0A0A0;
}

.heading-a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 20px;
}

.heading-a h2 {
    font-size: 40px;
    font-family: 'Aboreto', cursive;
}

.bh-left {
    position: relative;
    height: 210px;
    width: 100%;
    background: linear-gradient(#0000007c, #0000007c), url(/images/m5.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    overflow: hidden;
}

.bh-right {
    height: 210px;
    width: 100%;
    background-color: rgb(123, 0, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#0000007c, #0000007c), url(/images/property-2401515_1920.jpg);
    background-size: cover;
    border-radius: 1rem;
}

.brand-no {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand-no-content {
    height: 120px;
    width: 180px;
    background: white;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.brand-no-content h4 {
    font-size: 2rem;
    font-weight: 300;
}

.brand-no-content p {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }

    .heading-a {
        flex-direction: column;
    }

    .brand-no {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-no-content {
        width: 45%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .about-left h4 {
        font-size: 1.8rem;
    }

    .about-left .img {
        height: 280px;
    }

    .heading-a h2 {
        font-size: 2rem;
    }

    .brand-no-content h4 {
        font-size: 1.5rem;
    }

    .brand-no-content p {
        font-size: 0.9rem;
    }

    .a-round-box h1 {
        font-size: 3rem;
    }

    .a-scroll h4 {
        font-size: 1rem;
    }

    .a-round-box {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .about-c {
        padding: 2rem 1rem;
    }

    .about-left h4 {
        font-size: 1.5rem;
    }

    .about-left .line {
        height: 80px;
        width: 1rem;
    }

    .about-left .img {
        height: 220px;
    }

    .heading-a h2 {
        font-size: 1.5rem;
    }

    .brand-no-content {
        width: 100%;
    }

    .a-round-box {
        width: 200px;
        height: 50px;
        border-radius: 0 0 0 1rem;
    }

    .a-round-box h1 {
        font-size: 2rem;
    }

    .a-scroll {
        right: 20px;
    }

    .a-scroll h4 {
        font-size: 0.9rem;
    }

    .a-scroll .s-line {
        height: 60px;
    }

    .a-hero-sec {
        padding: 0rem 0rem;
        overflow: hidden;
    }
    .about-left .img  img{
        height: 40px;
    }
    
    .about-left .img h4{
        font-size: 1.2rem;
        color: white;
        font-family: 'Aboreto', cursive;
        margin-top: 0.5rem;
        text-align: center;
    }
}

.about-left,
.about-right,
.brand-no-content {
    transition: all 0.3s ease-in-out;
}

.brand-no-content:hover {
    transform: scale(1.05);
}

/* ----------------- About page about End -----------------  */

/* ----------------- Owner details -----------------  */

.owner-details {
    padding: 4rem 2rem;
}

.owner-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

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

.owner-left h4 {
    font-size: 1.5rem;
}

.owner-left h2 {
    font-size: 2.5rem;
    font-family: 'Aboreto', cursive;
    color: #3654C4;
    margin: 1.3rem 0;
}

.owner-left p {
    margin-top: 0.8rem;
    color: #A0A0A0;
    line-height: 1.6;
}

.owner-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owner-right img {
    height: auto;
    width: 100%;
    max-width: 600px;
    object-fit: cover;
    border-radius: 1rem;
    margin-top: -8rem;
}

@media (max-width: 992px) {

    .owner-details-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }

    .owner-left h2 {
        font-size: 2rem;
    }

    .owner-left h4 {
        font-size: 1.2rem;
    }

    .owner-right {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .owner-left h2 {
        font-size: 1.6rem;
    }

    .owner-left h4 {
        font-size: 1rem;
    }

    .owner-left p {
        font-size: 0.95rem;
    }

    .owner-details {
        padding: 2rem 1rem;
    }

    .owner-right img {
        width: 100%;
    }
}

/* ----------------- Owner details End-----------------  */

/* ----------------- Employee details -----------------  */

.employee-details {
    padding: 2rem;
}

.employee-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

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

.employee-right {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 500px;
    /* Set height as needed */
    overflow-y: auto;
    /* Enable vertical scrolling */
    scrollbar-width: thin;
    /* For Firefox */
}

/* Optional: Style the scrollbar (for WebKit-based browsers like Chrome) */
.employee-right::-webkit-scrollbar {
    width: 6px;
}

.employee-right::-webkit-scrollbar-thumb {
    background-color: #4A5BEB;
    border-radius: 3px;
}

.employee-right::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}


.employee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    padding: 1.5rem 0;
    cursor: pointer;
}

.employee-row span {
    flex: 1;
    text-align: start;
    font-family: 'Aboreto', cursive;
    font-size: 1.2rem;
}

.employee-row .serial {
    text-align: left;
    font-weight: bold;
}

.employee-row .name {
    font-weight: 500;
}

.employee-row .designation {
    text-align: right;
    color: #A0A0A0;
    font-size: 1rem;
}

.employee-row.active {
    padding: 1.5rem 1rem;
    background-color: #f0f0ff;
    border-left: 3px solid #4A5BEB;
}

.employee-right hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

.employee-left {
    position: relative;
}

.img-conatiner {
    height: 500px;
    width: 100%;
}

.img-conatiner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.e-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border: 1px solid #4A5BEB;
    border-radius: 50%;
    transition: background 0.3s;
}

.e-icons i {
    color: #4A5BEB;
    font-size: 0.9rem;
}

.e-icons:hover {
    background: rgba(255, 255, 255, 0.2);
}

.e-round-box {
    height: 50px;
    width: 50px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0.8rem;
    padding-left: 0.5rem;
}


.e-round-box::after,
.e-round-box::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.e-round-box::after {
    background: transparent;
    top: 0px;
    right: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.20rem -0.20rem white;
}

.e-round-box::before {
    background: transparent;
    left: 0px;
    bottom: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.30rem -0.30rem white;
}

.e-rounded-box-bottom {
    height: 50px;
    width: fit-content;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.5rem;
    padding-left: 0.8rem;
}

.e-rounded-box-bottom h2 {
    font-family: 'Aboreto', cursive;
    color: #4A5BEB;
}

.e-rounded-box-bottom::after,
.e-rounded-box-bottom::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.e-rounded-box-bottom::after {
    background: transparent;
    top: -18px;
    right: 0px;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0.25rem 0.20rem white;
}

.e-rounded-box-bottom::before {
    background: transparent;
    left: -18px;
    bottom: 0px;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0.20rem 0.30rem white;
}

.channel-partner {
    padding: 5rem 2rem;
}

.channel-partner .channel-head h2 {
    font-size: 3rem;
    color: #4A5BEB;
    font-family: 'Aboreto', cursive;
}

@media screen and (max-width: 1024px) {

    .employee-details-container,
    .owner-details-container,
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .employee-left,
    .employee-right,
    .owner-left,
    .owner-right,
    .about-left,
    .about-right {
        width: 100%;
    }

    .img-conatiner,
    .about-left .img {
        height: 400px;
    }

    .a-round-box {
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .brand-no {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-no-content {
        width: 100%;
        max-width: 300px;
    }

    .employee-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .employee-row span {
        text-align: left !important;
    }

    .a-scroll {
        right: 20px;
    }
}

@media screen and (max-width: 600px) {

    .about-left h4,
    .about-right .para {
        font-size: 1.2rem;
    }

    .heading-a h2 {
        font-size: 1.8rem;
    }

    .brand-no-content h4 {
        font-size: 1.5rem;
    }

    .brand-no-content p {
        font-size: 0.9rem;
    }

    .employee-row {
        padding: 1rem 0;
    }

    .e-round-box,
    .e-rounded-box-bottom {
        flex-wrap: wrap;
    }

    .e-rounded-box-bottom h2 {
        font-size: 1.2rem;
    }

    .a-round-box h1 {
        font-size: 2.5rem;
    }
}

/* ----------------- Employee details End-----------------  */

/* ----------------- Channel partner -----------------  */

.channel-partner {
    padding: 40px 0;
    overflow: hidden;
    margin-top: 2rem;
}

.channel-head {
    text-align: center;
    margin-bottom: 20px;
}

.channel-partner-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.partner-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 140px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .partner-logo {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .channel-partner .channel-head h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .channel-partner .channel-head h2 {
        font-size: 1.5rem;
    }
}

/* ----------------- Channel partner End -----------------  */

/* ----------------- Services.html -----------------  */

/* ----------------- Services Page -----------------  */

.services {
    padding: 5rem 2rem;
}

.services-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.services-container .f-services,
.services-container .s-services,
.services-container .t-services {
    border: solid 1px #2B4FB1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
}

.services-container .f-services {
    border-radius: 30px 0 0 30px;
}

.services-container .s-services {
    border-radius: 30px 30px 30px 30px;
}

.services-container .t-services {
    border-radius: 0px 30px 30px 0px;
}

.services-container .f-services img,
.services-container .s-services img,
.services-container .t-services img {
    height: 100px;
    width: 100px;
}

.services-container .f-services h2,
.services-container .s-services h2,
.services-container .t-services h2 {
    color: #2B4FB1;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.services-container .f-services p,
.services-container .s-services p,
.services-container .t-services p {
    color: #4D4D4D;
}

/* Responsive Styles */
@media (max-width: 1124px) {
    .services-container {
        /* flex-wrap: wrap; */
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .services {
        padding: 5rem 1rem;
    }

    .services-container>div {
        flex: 1 1 45%;
    }

    .f-services {
        border-radius: 30px 30px 0 0;
    }

    .t-services {
        border-radius: 0 0 30px 30px;
    }
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-container>div {
        width: 100%;
    }

    .f-services,
    .s-services,
    .t-services {
        border-radius: 20px;
    }
}

/* ----------------- Services -----------------  */

.location {
    padding: 0 2rem;
}

.l-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.l-head .line {
    flex: 1;
    height: 1px;
    background-color: black;
    margin-right: 0rem;
}

.l-head h2 {
    flex: 2;
    font-size: 2rem;
    font-weight: 400;
    text-align: end;
    font-family: 'Aboreto', cursive;
}

.l-head span {
    font-family: 'Aboreto', cursive;
    color: #4A5BEB;
}

.l-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.l-content-data {
    position: relative;
    height: 500px;
    width: 100%;
    /* background: url(/images/downtown-4045037_1920.jpg); */
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding-bottom: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 0rem;
}

.l-content-data:nth-child(1) {
    background-image: url('/servicesData/s1.jpg');
    background-position: center;
    background-size: cover;
}

.l-content-data:nth-child(2) {
    background-image: url('/servicesData/s2.webp');
    background-position: center;
    background-size: cover;
}


.l-content-data h2 {
    font-size: 2rem;
    color: white;
    font-weight: 500;
    z-index: 1;
}

.l-content-data button {
    background: transparent;
    border: solid 1px white;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    margin-top: 1rem;
    z-index: 1;
}

.l-content-data span {
    height: 30px;
    width: 30px;
    border: solid 1px white;
    border-radius: 50%;
    margin-left: 0.3rem;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.877));
    border-radius: 20px;
}

.m-top {
    margin-top: 10rem;
}

#bg-img {
    background: url(/servicesData/s3.jpg);
    background-size: cover;
}

#bg-img2 {
    background: url(/servicesData/s4.webp);
    background-size: cover;
}

/* Tablet Screens */
@media (max-width: 1024px) {
    .location {
        padding: 0 1rem;
    }

    .l-content {
        margin-top: 2rem;
        gap: 20px;
    }

    .l-head {
        flex-direction: column;
        text-align: center;
    }

    .l-head .line {
        display: none;
    }

    .l-head h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .l-content-data {
        height: 520px;
    }

    .m-top {
        margin-top: 1.5rem;
    }
}

@media(max-width:768px) {
    .l-content {
        flex-direction: column;
    }
}

/* Mobile Screens */
@media (max-width: 600px) {
    .l-head h2 {
        font-size: 1.5rem;
    }

    .l-content-data {
        padding: 1rem;
    }

    .l-content-data h2 {
        font-size: 1.5rem;
    }

    .l-content-data button {
        font-size: 1rem;
    }

    .l-content-data span {
        height: 25px;
        width: 25px;
    }
}

/* ----------------- Contact -----------------  */

.contactus {
    padding: 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.contactus-container {
    height: 70vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/property-2401515_1920.jpg);
    background-size: contain;
    border-radius: 1rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-left {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    /* translucent white */
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    /* soft shadow */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* for Safari */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* subtle border */
}


.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: transparent;
}

.contact-form button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
}

.contact-right {
    height: 100%;
    width: 100%;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-right img {
    height: 150px;
    width: 150px;
}

.cta {
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-top: 1rem;
}


.c-right-round-box {
    height: 50px;
    width: 120px;
    background-color: rgb(227, 227, 227);
    position: absolute;
    border-radius: 0 0 1rem 0;
}

.c-right-round-box::after,
.c-right-round-box::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.c-right-round-box::after {
    background: transparent;
    top: 0px;
    right: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.20rem -0.20rem rgb(227, 227, 227);
}

.c-right-round-box::before {
    background: transparent;
    left: 0px;
    bottom: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.30rem -0.30rem rgb(227, 227, 227);
}



.contactus-container .c-round-box h2 {
    font-family: 'Aboreto', cursive;
    color: #4A5BEB;
    font-size: 1.6rem;
}

.contactus-container .c-round-box {
    height: 50px;
    width: 200px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0.8rem;
    padding-left: 0.5rem;
}

.contactus-container .c-round-box::after,
.contactus-container .c-round-box::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.contactus-container .c-round-box::after {
    background: transparent;
    top: 0px;
    right: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.20rem -0.20rem white;
}

.contactus-container .c-round-box::before {
    background: transparent;
    left: 0px;
    bottom: -18px;
    border-top-left-radius: 0.8rem;
    box-shadow: -0.30rem -0.30rem white;
}

.c-rounded-box-bottom {
    height: 120px;
    width: 120px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0.5rem;
    padding-left: 0.8rem;
}

.c-rounded-box-bottom h2 {
    font-family: 'Aboreto', cursive;
    color: #4A5BEB;
}

.c-rounded-box-bottom::after,
.c-rounded-box-bottom::before {
    width: 1.125rem;
    height: 1.125rem;
    content: "";
    position: absolute;
}

.c-rounded-box-bottom::after {
    background: transparent;
    top: -18px;
    right: 0px;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0.25rem 0.20rem white;
}

.c-rounded-box-bottom::before {
    background: transparent;
    left: -18px;
    bottom: 0px;
    border-bottom-right-radius: 0.8rem;
    box-shadow: 0.20rem 0.30rem white;
}

.c-rounded-box-bottom i {
    font-size: 5rem;
    color: #007BFF;
}


/* --------------Events page ------------ */

.e-hero-sec {
    padding: 0 2rem;
    height: 100%;
    width: 100%;
}

.e-hero-sec-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/images/bg.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
    padding: 6rem 0;
    text-align: center;
}

.shape-box,
.shape-box-2 {
    background: linear-gradient(to right, #2E50B4 0%, #555FFF 90%, #2E50B4 100%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 4rem;
    border: solid 4px white;
    font-size: 1rem;
}

.shape-box {
    top: 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.shape-box-2 {
    bottom: 0;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.e-hero-sec-container h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4rem;
    color: white;
    font-weight: bold;
    margin: 1.5rem 0 2rem 0;
}

.e-hero-sec-container h4 {
    font-size: 1.8rem;
    color: white;
    font-family: 'Aboreto', cursive;
}

.e-hero-sec-container button {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    background: transparent;
    border: solid 1px white;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 2rem;
}

.e-hero-sec-container hr {
    width: 50%;
    margin: 0.8rem 0;
}

.month {
    margin-top: 2.8rem;
    color: white;
}

.events-date {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.events-date h2 {
    font-size: 3rem;
    color: white;
    font-weight: 400;
}

.e-time-location {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.e-time-location .e-time,
.e-time-location .e-location {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
}

.e-time-location i {
    margin-right: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .e-hero-sec-container h1 {
        font-size: 2.5rem;
    }

    .e-hero-sec-container h4 {
        font-size: 1.2rem;
    }

    .shape-box,
    .shape-box-2 {
        padding: 0.3rem 2rem;
        font-size: 0.9rem;
    }

    .events-date h2 {
        font-size: 2.2rem;
    }

    .e-time-location .e-time,
    .e-time-location .e-location {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .e-hero-sec {
        padding: 1rem;
        height: auto;
    }
}

@media (max-width: 480px) {
    .e-hero-sec-container h1 {
        font-size: 2rem;
    }

    .events-date {
        flex-direction: column;
    }

    .e-time-location {
        flex-direction: column;
    }
}


/* ----------------- BLOG PAGE CONTENT -----------------  */

.blog-hero-sec {
    padding: 2rem;
}

.blog-hero-sec-container {
    width: 100%;
}

.blog-hero-sec-container h4 {
    font-size: 1.5rem;
    color: white;
}

.blog-hero-sec-container h1 {
    font-size: 5rem;
    font-family: 'Aboreto', cursive;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.blog-container .blog-content {
    flex: 1 1 45%;
    background: linear-gradient(to right, #2E50B4 0%, #555FFF 90%, #2E50B4 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
}

.blog-container .blog-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.boxe {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.boxe .left {
    flex: 1;
}

.boxe .right button {
    height: 60px;
    width: 60px;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.boxe .right button img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .blog-hero-sec-container h1 {
        font-size: 3rem;
    }

    .blog-container {
        flex-direction: column;
        gap: 2rem;
    }

    .blog-container .blog-content {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .boxe {}

    .boxe .right {
        align-self: flex-end;
    }

    .boxe .right button {
        height: 50px;
        width: 50px;
        padding: 0.8rem;
    }

    .boxe .right button img {
        height: 16px;
        width: 16px;
    }
}

@media (max-width: 480px) {
    .blog-hero-sec {
        padding: 1rem;
    }

    .blog-hero-sec-container h1 {
        font-size: 2rem;
    }

    .blog-hero-sec-container h4 {
        font-size: 1rem;
    }
}




/* ----------------- Career.html -----------------  */

/* ----------------- Career page -----------------  */

/* Hero Section */
.career-hero-sec {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/careerData/career-hero-sec.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
  }
  
  .career-hero-sec-container {
    max-width: 900px;
    width: 100%;
    padding: 1rem;
  }
  
  .career-hero-sec-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Aboreto', cursive;
  }
  
  .career-hero-sec-container p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  .btns {
    background: #007bff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    margin-top: 2rem;
  }
  
  .btns:hover {
    background: #0056b3;
  }
  
  .btns a {
    text-decoration: none;
    font-size: 1rem;
    color: white;
    display: inline-block;
    width: 100%;
  }
  
  /* ---------- Responsive Design ---------- */
  @media screen and (max-width: 768px) {
    .career-hero-sec {
      height: auto;
      padding: 4rem 2rem;
    }
  
    .career-hero-sec-container h1 {
      font-size: 2.2rem;
    }
  
    .career-hero-sec-container p {
      font-size: 1rem;
    }
  
    .btns {
      padding: 0.7rem 1.2rem;
      font-size: 0.95rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .career-hero-sec-container h1 {
      font-size: 1.8rem;
    }
  
    .career-hero-sec-container p {
      font-size: 0.95rem;
    }
  
    .btns {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
    }
  }
  




.why-chose {
    padding: 4rem 2rem;
    margin: auto;
}

.why-chose p {
    margin-top: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.why-chose h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
    font-family: 'Aboreto', cursive;
    color: #007bff;
}

.headings {
    font-size: 2rem;
    color: #007bff;
    font-family: 'Aboreto', cursive;
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
    /* optional: center-align the heading and lines */
}

.headings::before,
.headings::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 2px;
    background-color: #007bff;
}

.headings::before {
    left: 0;
}

.headings::after {
    right: 0;
}


.why-chose .bullets {
    list-style: none;
    padding-left: 0;
}

.why-chose .bullets li::before {
    content: "✔️ ";
}

.why-chose .team-quotes blockquote {
    background: #fff;
    border-left: 4px solid #007bff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery img {
    width: calc(33.333% - 1rem);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.reason {
    background-size: cover;
    background-position: center;
    color: white;
    height: 350px;
    display: flex;
    align-items: end;
    justify-content: center;
    /* padding: 20px; */
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.overlay-bg {
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.reason p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
    .reason {
      height: 300px;
    }
  
    .gallery img {
      width: calc(50% - 1rem);
    }
  
    .why-chose p {
      font-size: 1.3rem;
    }
  
    .reason p {
      font-size: 1.1rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .reason {
      height: 250px;
    }
  
    .headings,
    .why-chose h2 {
      font-size: 1.5rem;
    }
  
    .why-chose p {
      font-size: 1.1rem;
      text-align: center;
    }
  
    .reason p {
      font-size: 1rem;
    }
  
    .gallery img {
      width: 100%;
    }
  
    .headings::before,
    .headings::after {
      width: 0%;
    }
  
    .why-chose {
      padding: 2rem 1rem;
    }
  
    .gallery {
      gap: 0.75rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .reason {
      height: 200px;
    }
  
    .reason p {
      font-size: 0.95rem;
      margin-bottom: 0.75rem;
    }
  
    .why-chose p {
      font-size: 1rem;
    }
  
    .headings,
    .why-chose h2 {
      font-size: 1.3rem;
    }
  
    .gallery img {
      width: 100%;
    }
  }
  

/* Tabs */
.tabs-container {
    margin: 40px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tab-buttons button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #eee;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.tab-buttons button.active {
    background-color: #007BFF;
    color: #fff;
}

.tab-content {
    display: none;
    background: #fafafa;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #007BFF;
}

.tab-content h3 {
    margin-top: 20px;
    color: #333;
}

.tab-content ul {
    padding-left: 20px;
}

.tab-content ul li {
    margin-bottom: 8px;
}

.tab-content .c-location{
    margin: 1rem 0;
    font-weight: bold;
}

/* Apply Button */
.apply-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.apply-button:hover {
    background-color: #218838;
}

@media screen and (max-width: 768px) {
    .tabs-container {
      padding: 0 10px;
    }
  
    .tab-buttons {
      flex-direction: column;
      align-items: stretch;
    }
  
    .tab-buttons button {
      width: 100%;
      font-size: 15px;
      padding: 12px;
    }
  
    .tab-content {
      padding: 20px;
    }
  
    .tab-content h2 {
      font-size: 1.4rem;
      text-align: center;
    }
  
    .tab-content h3 {
      font-size: 1.2rem;
    }
  
    .tab-content p,
    .tab-content ul li {
      font-size: 1rem;
      line-height: 1.6;
    }
  
    .apply-button {
      width: 100%;
      text-align: center;
      font-size: 1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .tab-content {
      padding: 15px;
    }
  
    .tab-buttons button {
      font-size: 14px;
      padding: 10px;
    }
  
    .tab-content h2 {
      font-size: 1.2rem;
    }
  
    .tab-content h3 {
      font-size: 1rem;
    }
  
    .tab-content p,
    .tab-content ul li {
      font-size: 0.95rem;
    }
  
    .apply-button {
      font-size: 0.95rem;
      padding: 10px 20px;
    }
    .reasons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
  }
  
















/* ----------------- Footer Sec -----------------  */

footer {
    margin-top: 5rem;
    padding: 2rem 1rem;
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/images/m9.jpg) no-repeat; */
    background-size: cover;
    background-position: center;
    color: white;
    background: linear-gradient(to right, #2E50B4 0%, #555FFF 90%, #2E50B4 100%);
    display: flex;
    justify-content: center;
    align-items: end;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.f-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.f-left {
    flex: 1 1 150px;
    max-width: 200px;
    padding: 1rem 0;
}

.f-left img {
    width: 100%;
    object-fit: contain;
}

.f-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1 1 300px;
    text-align: right;
}

.f-left-left h2,
.f-left-left h4 {
    margin: 0.25rem 0;
}

.f-right a {
    text-decoration: none;
    color: white;
}

.f-right button {
    background: transparent;
    border: 1px solid white;
    padding: 0.5rem 0.5rem;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.f-right button span {
    border: 1px solid white;
    border-radius: 50%;
    padding: 0.3rem;
    margin-right: 0.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.f-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 1.5rem 0;
}

.f-site-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
}

.f-site-left,
.f-site-mid,
.f-site-right {
    flex: 1 1 250px;
}

.f-site-mid {
    text-align: center;
}
.f-site-mid a{
    color: white;
    text-decoration: none;
}

.f-site-mid h4,
.f-site-left h4,
.f-site-right h4 {
    font-weight: 300;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.b-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.b-footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.font-back {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border: 1px solid white;
    border-radius: 50%;
    transition: background 0.3s;
}

.font-back i {
    color: white;
    font-size: 0.9rem;
}

.font-back:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {

    .f-contact,
    .f-site-details,
    .b-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .f-right {
        justify-content: flex-start;
        text-align: left;
        flex: 1 1 100px;
    }

    .f-left {
        flex: 1 1 80px;
        max-width: 200px;
        padding: 1rem 0;
    }

    .f-site-left,
    .f-site-mid,
    .f-site-right {
        flex: 1 1 100px;
    }

    .f-site-mid {
        width: 100%;
        flex: 1 1 100px;
    }
}

/* ----------------- Footer Sec End -----------------  */