
@font-face {
    font-family: rajdhani-bold;
    src: url("../fonts/rajdhani-bold.ttf");
}
.my-blog-page {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 100px;
    background: white;
}
.my-blog-page h2 {
    position: relative;
}
.my-blog-page h2::after {
    content: "";
    position: absolute;
    width: 10%;
    bottom: -5px;
    left: 0;
    height: 5px;
    background: orange;
}
.my-blog-page .left-side {
    padding: 0% 20px;
    background: rgb(255, 255, 255);
    box-shadow: 1px 2px 4px 3px gainsboro;
}
.my-blog-page .right-side {
    padding: 10% 20px;
    background: rgb(255, 255, 255);
    box-shadow: 1px 2px 4px 3px gainsboro;
}
.blog-card-design {
    width: 100%;
    padding: 20px;
    background: white;
}

.blog-card-design img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog-card-design h5 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}
.blog-card-design p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}
.blog-card-design .post-date {
    font-weight: 600;
    color: orange;
}
.admin-img img {
    color: black;
}
.admin-img img {
    width: 70px;
    height: 70px;
    border-radius: 68px;
    border: 2px solid #e97702;
}

.my-blog-page .right-side h4 {
    position: relative;
    font-size: 20px;
}
.my-blog-page .right-side h4::before {
    content: "";
    position: absolute;
    left: -10px;
    width: 4px;
    height: 34px;
    background: orange;
    top: -5px;
}

.my-blog-page .right-side img {
    width: 100px;
    height: 100px;
}

.social-contact {
    bottom: 70px;
}


.featured-properties-wrap {
    padding: 5% 40px;
    background: #f9f9f9;
}

.featured-properties-wrap h2 {
    font-family: rajdhani-bold;
}

.featured-properties-wrap-2
{
    padding: 0px 30px;
}

@media only screen and (max-width: 480px) {
    .my-blog-page {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 5%;
        padding-bottom: 100px;
        background: white;
    }
    .my-blog-page .left-side {
        padding: 0px 0px;
    }
    .blog-card-design {
        margin-top: 10px;
    }
    .my-blog-page h2::after {
        content: "";
        position: absolute;
        width: 50%;
        bottom: -10px;
        left: 0;
        height: 5px;
        background: orange;
    }

    .my-blog-page .right-side {
        margin-top: 15px;
        padding: 10% 20px;
    }

    .my-blog-page .right-side h4 {
        text-align: left;
    }

    .my-blog-page .right-side h4::before {
        content: "";
        position: absolute;
        left: -10px;
        width: 4px;
        height: 34px;
        background: orange;
        top: -5px;
    }
    .featured-properties-wrap
    {
       padding: 3% 0px;
    }
    .featured-properties-wrap-2
    {
       padding: 3% 0px;
    }
    .featured-properties-wrap p
    {
       text-align: justify;
    }
    .featured-properties-wrap-2 p
    {
       text-align: justify;
    }
}

@media only screen and (max-width: 768px) {
    .my-blog-page {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 5%;
    }
    .my-blog-page .left-side {
        padding: 0px;
    }
    .my-blog-page .right-side {
        margin-top: 10px;
    }
    .featured-properties-wrap {
    padding: 5% 10px;
}
    .featured-properties-wrap p{
    text-align: justify;
}
    .featured-properties-wrap-2 {
    padding: 5% 10px;
}
    .featured-properties-wrap-2 p{
    text-align: justify;
}
}





.my-team-page {
    padding: 5% 50px;
    background: #f9f9f9;
    text-align: center;
}

.my-team-page h2
{
    font-size: 40px;
}

.my-team-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.my-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.img-sec {
    height: 350px;
    overflow: hidden;
}

.img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.my-team-card:hover .img-sec img {
    transform: scale(1.05);
}

.team-content {
    padding: 20px;
}

.team-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.team-content p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons li a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #eaeaea;
    border-radius: 50%;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    background: #e64e3b;
    color: #fff;
}

.my-team-page .more-team-btn {
    width: 25%;
    height: 60px;
    background: #e97702;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    line-height: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.4s ease;
}

.my-team-page .more-team-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
    border: 2px solid orange;
}

.my-team-page .more-team-btn:hover span {
    color: rgb(255, 255, 255);
}

.my-team-page .more-team-btn:hover::after {
    transform: translateX(0);
}

.my-team-page .more-team-btn span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.my-team-page .more-team-btn:hover span {
    color: #e97702; 
}

@media screen and (max-width:768px) {
    .my-team-page
    {
        padding: 5% 10px;
    }
    .my-team-page .more-team-btn
    {
        width: 100%;
    }
    .my-team-page h2
{
    font-size: 30px;
}
}


.team-page-section
{
    text-align: center;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    height: 400px;
}
.team-page-section img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-page-section .cont-section
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #07143db5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-page-section .cont-section h1
{
   color: white;
   font-size: 60px;
}

.meet-team-page
{
    padding: 5% 30px;
    
}
.meet-team-page h2
{
    font-size: 40px;
    font-family: math;
    position: relative;
    overflow: hidden;
    font-weight: 100;
}
.meet-team-page h2::after
{
    position: absolute;
    content: '';
    top: 25px;
    right: -120px;
    width: 90%;
    height: 2px;
    background: #aaaaaa96;
}
.meet-team-page .my-team-cards .img-section {
    height: 350px;
    overflow: hidden;
    width: 100%;
}

.meet-team-page .my-team-cards .img-section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.meet-team-page .my-team-cards .cont-section{
        background: white;
    box-shadow: 1px 0px 8px 0px #a7a7a7;
    padding-bottom:20px;
}
.meet-team-page .my-team-cards .cont-section h4{
        margin-bottom: 0px;
        font-family: 'rajdhani-bold';
}
.meet-team-page .my-team-cards .cont-section ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
}
.meet-team-page .my-team-cards .cont-section ul li{
       list-style: none;
}
.meet-team-page .my-team-cards .cont-section ul li a {
       color: black;
}
.meet-team-page .my-team-cards .cont-section ul li a i{
       font-size: 20px;
}

@media screen and (max-width:768px){
.meet-team-page h2
{
    text-align: center;
    font-weight: 500;
}
.meet-team-page h2::after
{
    position: absolute;
    content: '';
    top: 50px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #aaaaaa96;
}
.meet-team-page
{
    padding: 5% 10px;
}
}

.now-hero-sec
{
    height: 500px;
    text-align: center;
    /* object-fit: cover; */
    position: relative;
    overflow: hidden;
}
.now-hero-sec img
{
   width: 100%;
    height: 100%;
    object-fit: cover;
}
.now-hero-sec .cont-sec
{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
    background: linear-gradient(4deg, #000000c9, #00000059);
    display: flex;
    align-items: center;
    justify-content: center;
}
.now-hero-sec .cont-sec h1{
    border-right: 2px solid #000;
    overflow: hidden;
    animation: .75s step-end infinite blinkCursor;
    color: #fff;
    font-size: 50px;
}



/* ================================================= Violet Townhouse ================================================================= */



.my-property-type {
    padding: 10% 35px;
    background: #fff;
    text-align: center;
}

.my-property-type .list-prop {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    /* border-bottom: 1px solid #ddd;  */
}

.my-property-type .list-prop h5 {
    font-size: 22px;
    margin-bottom: 8px;
}

.my-property-type .list-prop p {
    color: #ff7a59;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.my-property-type .list-prop::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #000;
}

/* Hide right border for the last column on large screens */
@media (min-width: 992px) {
    .my-property-type .list-prop:last-child::after {
        display: none;
    }
}

/* On medium screens (tablets) */
@media (max-width: 991.98px) {
    .my-property-type {
        padding: 60px 20px;
    }

    .my-property-type .list-prop {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .my-property-type .list-prop::after {
        display: none; /* hide vertical line on stacked layout */
    }
}

/* On small screens (mobile) */
@media (max-width: 575.98px) {
    .my-property-type .list-prop h5 {
        font-size: 18px;
    }

    .my-property-type .list-prop p {
        font-size: 16px;
    }

    .my-property-type {
        padding: 40px 15px;
    }
}

/* Base layout is already mobile-first */
.my-feature-amneties {
    padding: 2% 20px; /* reduce side padding on smaller devices */
    background: #ffffff;
    text-align: center;
}

.my-feature-amneties h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-amneties {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-amneties:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.img-sec {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fff;
}

.img-sec img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card-amneties .title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.card-amneties .desc {
    font-size: 0.9rem;
    color: #666;
}

/* Tablet (medium screens) */
@media (min-width: 576px) {
    .my-feature-amneties h3 {
        font-size: 2rem;
    }

    .img-sec {
        width: 90px;
        height: 90px;
    }

    .card-amneties .title {
        font-size: 1.05rem;
    }

    .card-amneties .desc {
        font-size: 0.92rem;
    }
}

/* Desktop (large screens) */
@media (min-width: 992px) {
    .my-feature-amneties {
        padding: 2% 35px;
    }

    .my-feature-amneties h3 {
        font-size: 2.2rem;
    }

    .img-sec {
        width: 100px;
        height: 100px;
    }

    .card-amneties .title {
        font-size: 1.1rem;
    }

    .card-amneties .desc {
        font-size: 0.95rem;
    }
}










.sale-section {
    padding: 3% 30px;
    background: #ffffff;
    text-align: center;
}

.sale-section .left-sec {
    text-align: justify;
   padding: 80px 0px;
}

.sale-section h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.sale-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.sale-section .right-img-sec {
    padding: 15px;
    text-align: center;
}

.sale-section .right-img-sec img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


@media (max-width: 767.98px) {
    .sale-section {
        padding: 20px 15px;
        text-align: left;
    }

    .sale-section .left-sec {
        padding: 30px 0;
    }

    .sale-section h4 {
        font-size: 20px;
        text-align: center;
    }

    .sale-section p {
        font-size: 15px;
        text-align: justify;
    }

    .sale-section .right-img-sec {
        padding: 10px 0;
        text-align: center;
    }

    .sale-section .right-img-sec img {
        width: 100%;
        height: auto;
    }
}





/* ===================================================== Home Page Add New Content ====================================================  */

.my-para
{
    padding: 10px 80px;
}

.page-21
{
    padding: 5% 20px;
    background: #f9f9f9;
    text-align: center;
    margin-top: 20px;
}

.coll-to-info
{
    width: 70%;
}



.page-22
{
    padding: 3% 20px;
    background-color: white;
    text-align: center;
}


.page-23 {
    padding: 5% 30px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-23 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.page-23 .my-para {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0 auto 40px;
    
}

/* Card container */
.invest-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.invest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.invest-card img {
   width: 100%;
    height: 300px;
    /* max-width: 250px; */
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    object-fit: cover
}

.invest-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.invest-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Tweaks */
@media (max-width: 576px) {
    .page-23 h2 {
        font-size: 24px;
    }

    .page-23 .my-para {
        font-size: 16px;
    }

    .invest-card h4 {
        font-size: 20px;
    }

    .invest-card p {
        font-size: 15px;
    }
}


.page-24 
{
    padding: 3% 30px;
    text-align: center;
}

.typ-2
{
padding: 2% 25px;
}

/* ===================================================== Home Page Add New Content ====================================================  */




.my-page-1
{
    padding: 3% 30px;
    /* background: red; */
}
.my-page-1 h2 {
    position: relative;
}

.my-page-1 h2::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 40px;
    background: rgb(251 140 0);
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.my-page-1 p
{
    font-size: 16px;
}
.my-page-1 b
{
    font-size: 16px;
    color: black;
}

.my-page-1 a
{
    color: rgb(251 140 0);
}

.my-video-frame
{
    width: 100%;
    height: 100%;
    /* background: red; */
    position: relative;
    z-index: 1;

}
.my-video-frame::after
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -20px;
    right: -20px;
    background: #fb8c00;
    z-index: -1;

}
.my-video-frame img
{
    width: 100%;
    height: 100%;
    object-fit: cover;

}



@media screen and (max-width  : 768px) {
    .my-page-1{
        padding: 0% 10px;
    }
    .my-page-1 h2{
        padding-left: 12px;
        font-size: 22px;
    }
    .my-page-1 h2::before {
   
        height: 55px;
    }
    .my-page-1 p {
   
        margin-top: 30px;
    }


    
}



.my-page-2 {
    padding: 5% 30px;
    background: #f3f3f3;
}

.my-page-2 h2 span
{
    font-size: 20px;
}

.my-page-2 a {
    color: #fb8c00;
    font-weight: 700;
}

.my-page-2 .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.my-page-2 .image-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -15px;
    left: -15px;
    background: #fb8c00;
    z-index: 0;
}

.my-page-2 .image-wrapper img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.my-page-2 b {
    color: #000;
    font-weight: 700;
}

.my-page-2 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


@media screen and (max-width : 768px) {
    .my-page-2
    {
        padding: 10% 10px;
        margin-top: 40px;
    }
    .my-page-2 h2
    {
        font-size: 22px;
        padding-top: 20px;
    }
}

.my-page-3
{
    padding: 5% 30px;
    background-color: #f2f0ec;
}

.my-page-3 a
{
    color: #fb8c00;
}

@media screen and (max-width : 768px) {
    .my-page-3
    {
        padding: 3% 10px;
        margin-top: 40px;
    }
    .my-page-3 h2
    {
       font-size: 22px;
    }
}
.intro-page {
    padding: 4% 20px 5%;
    background: #fafafa;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

.intro-page .img-section {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    margin: auto;
}

.intro-page .img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-page .cont-section {
    padding-top: 20px;
}

.intro-page .cont-section span {
    font-size: 15px;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
    letter-spacing: 1px;
}

.intro-page .cont-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-top: 8px;
    line-height: 1.4;
}

.intro-page .social-link {
    display: flex;
    gap: 10px;
    margin: 14px 0;
}

.intro-page .social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f3f3f3;
    border-radius: 15px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.intro-page .social-link a:hover {
    transform: translateY(-3px);
    color: #fff;
}

.intro-page .social-link a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.intro-page .social-link a[href*="facebook"]:hover {
    background: #1877f2;
}

.intro-page .social-link a[href*="twitter"]:hover {
    background: #000;
}

.intro-page p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

.intro-page ul {
    padding-left: 18px;
    margin: 10px 0 20px;
}

.intro-page ul li {
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.intro-page ul li span {
    font-weight: 400;
    color: #555;
}

.intro-page h4 {
    font-size: 20px;
    margin-top: 25px;
    font-weight: 700;
    color: #111;
    border-left: 4px solid #ff7f50;
    padding-left: 10px;
}

hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 25px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-page .cont-section {
        padding-top: 10px;
        text-align: center;
    }

    .intro-page .social-link {
        justify-content: center;
    }
}

.intro-page-2 {
    padding: 5% 60px;
}
.intro-page-2 h5 {
    font-size: 20px;
    position: relative;
    padding-bottom: 6px;
}
.intro-page-2 h5::after {
    position: absolute;
    content: '';
    width: 90px;
    height: 2px;
    background: black;
    bottom: -5px;
    left: 0;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
}
.gallery-card:hover .overlay {
    opacity: 1;
}

/* View Button */
.view-btn {
    padding: 8px 20px;
    background: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}
.view-btn:hover {
    background: #f0f0f0;
}

/* Popup Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.image-modal img {
    width: 360px;
}
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

 
@media screen and (max-width : 768px) {
    .intro-page-2
    {
        padding: 5% 0px 5%;
    }
    .intro-page-2 .gal-3
    {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}
/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 5% 40px;
  background: #fafafa;
  text-align: center;
}

.video-section h2 {
  font-size: 40px;
  color: black;
  position: relative;
  margin-bottom: 40px;
}

.video-section h2::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 3px;
  background: rgb(0, 0, 0);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== SWIPER STYLES ===== */
.video-section .swiper {
  width: 100%;
  padding: 20px 0;
}

.video-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 250px;
  margin: 10px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal iframe {
  width: 100%;
  max-width: 800px;
  height: 90vh;
  border: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* ===== MEDIA QUERIES ===== */
@media screen and (max-width: 1024px) {
  .video-section .swiper-slide {
    height: 220px;
  }
}

@media screen and (max-width: 768px) {
  .video-section {
    padding: 5% 15px;
  }

  .video-section h2 {
    font-size: 28px;
  }

  .swiper-slide {
    height: 200px;
  }

  .modal iframe {
    height: 60vh;
  }
}

@media screen and (max-width: 480px) {
  .video-section .swiper-slide {
    height: 180px;
  }

  .modal iframe {
    height: 50vh;
  }
}

.carear-page {
    padding: 5% 20px;
    background: linear-gradient(rgb(217 217 217 / 30%), rgb(255 255 255)), url(https://htmldemo.zcubethemes.com/relxtower/img/bg/contact_bg.jpg) center / cover no-repeat;
}

.carear-page .heading-part h2 {
    font-weight: 700;
    color: #07143d;
    font-size: 1.8rem;
}

.carear-page .heading-part p {
    color: #07143d;
    font-size: 1.3rem;
}

.carear-page .heading-part ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.carear-page .heading-part ul li {
    color: #07143d;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.carear-page .heading-part ul li img {
    width: 25px;
    flex-shrink: 0;
}

.carear-page .form-part form {
    max-width: 500px;
    padding: 30px 15px;
    background: #fff;
    margin: auto;
    border-radius: 8px;
    border-right: 8px solid orange;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carear-page .form-part label {
    font-weight: 600;
    font-size: 0.9rem;
}

.carear-page .form-control {
    border-radius: 6px;
    padding: 10px;
    font-size: 0.95rem;
}

.carear-page .btn-warning {
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carear-page {
        padding: 40px 7px;
    }
    .carear-page .form-part form{
        padding: 30px 10px;
    }
    .carear-page .heading-part h2 {
        font-size: 1.5rem;
    }
}
.carear-page-3 {
    width: 100%;
    min-height: 250px; /* Allow flexibility */
    height: 350px;
    background-image: linear-gradient(rgb(17 29 69 / 81%), rgb(7 20 61 / 81%)), 
                      url(../images/carear/journey.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    flex-direction: column;
    padding: 0 15px; /* Prevent text from touching edges */
    box-sizing: border-box;
}

.carear-page-3 h2 {
    color: white;
    font-size: 45px;
    font-family: math;
    margin: 0;
}

/* ===== Responsive Breakpoints ===== */

/* Tablets and small laptops */
@media (max-width: 992px) {
    .carear-page-3 {
        height: 300px;
        font-size: 1.3rem;
    }
    .carear-page-3 h2 {
        font-size: 36px;
    }
}

/* Mobile landscape and large phones */
@media (max-width: 768px) {
    .carear-page-3 {
        height: 280px;
        font-size: 1.2rem;
    }
    .carear-page-3 h2 {
        font-size: 28px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .carear-page-3 {
        height: auto; /* Let content decide height */
        padding: 30px 15px;
        font-size: 1rem;
    }
    .carear-page-3 h2 {
        font-size: 22px;
    }
}
/* ========== Section Styling ========== */
/* ========== Base Styles ========== */
.carear-page-4 {
    padding: 5% 40px;
}

.carear-page-4 .heading-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Ensures proper stacking on smaller screens */
    gap: 15px;
}

.carear-page-4 .heading-part h2 {
    color: #07143d;
    position: relative;
    font-size: 2rem;
}

.carear-page-4 .heading-part h2::after {
    content: '';
    width: 300px;
    height: 4px;
    background: #07143d;
    position: absolute;
    bottom: -10px;
    left: 0;
}

/* View All Button */
.carear-page-4 .heading-part button {
    width: 200px;
    padding: 10px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carear-page-4 .heading-part button:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.carear-page-4 .heading-part button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ========== Table Styling ========== */
.job-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.job-table thead {
    background: #07143d;
    color: white;
}

.job-table th,
.job-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.job-table tr:hover {
    background: rgba(7, 20, 61, 0.05);
}

/* Onsite Button */
.onsite-btn {
    background: #f39c12;
    color: white;
    padding: 5px 12px;
    border: none;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: default;
}

/* Apply Button */
.apply-btn {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
}

/* ========== Responsive Styles ========== */

/* Large Screens (Desktops) */
@media (min-width: 1200px) {
    .carear-page-4 {
        padding: 4% 80px;
    }
    .carear-page-4 .heading-part h2 {
        font-size: 2.2rem;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 991px) {
    .carear-page-4 {
        padding: 5% 30px;
    }
    .carear-page-4 .heading-part {
        flex-direction: column;
        align-items: flex-start;
    }
    .carear-page-4 .heading-part h2 {
        font-size: 1.8rem;
    }
    .carear-page-4 .heading-part h2::after {
        width: 200px;
    }
    .carear-page-4 .heading-part button {
        width: auto;
        padding: 8px 20px;
        font-size: 15px;
    }
    .job-table {
        font-size: 15px;
    }
}

/* Small Screens (Mobiles) */
@media (max-width: 768px) {
    .carear-page-4 {
        padding: 5% 10px;
    }
    .carear-page-4 .heading-part h2 {
        font-size: 1.6rem;
    }
    .carear-page-4 .heading-part h2::after {
        width: 150px;
        height: 3px;
    }
    .carear-page-4 .heading-part button {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
    /* Make table scrollable */
    .job-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 14px;
    }
    .job-table th,
    .job-table td {
        padding: 10px 14px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .carear-page-4 .heading-part h2 {
        font-size: 1.4rem;
    }
    .carear-page-4 .heading-part button {
        padding: 8px;
        font-size: 13px;
    }
    .job-table {
        font-size: 13px;
    }
    .job-table th,
    .job-table td {
        padding: 8px 10px;
    }
}


.privacy-page {
    padding: 5% 40px;
    background: #f9f9f9; /* Soft background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.7;
}

.privacy-page h4 {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #07143d;
    font-weight: 600;
    border-left: 5px solid #ffc107;
    padding-left: 10px;
}

.privacy-page h5 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #444;
    font-weight: 600;
}

.privacy-page p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.privacy-page ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-page ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.privacy-page ul li::before {
    content: "•";
    color: #ffc107;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.2rem;
    line-height: 1;
}

.privacy-page strong {
    color: #000;
}

.privacy-page hr {
    margin: 30px 0;
    border: none;
    border-top: 2px solid #4c4c4c;
}

.privacy-page a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
}

.privacy-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 20px;
    }
    .privacy-page h4 {
        font-size: 1.2rem;
    }
    .privacy-page p, 
    .privacy-page ul li {
        font-size: 0.95rem;
    }
}


/* Team Section */
.my-team-page {
    padding: 5% 20px;
    background-color: #f8f9fa;
}

.my-team-page h2 {
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    color: #07143d;
}

.my-team-page h2::after {
    content: "";
    display: block;
    width: 220px;
    height: 4px;
    background-color: #CEAB5D;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Team Card */
.my-team-page .agents-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.my-team-page .agents-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Image Section */
.my-team-page .agents-card .img-sec {
    position: relative;
    width: 100%;
    height: 450px;
    aspect-ratio: 3 / 3;
    overflow: hidden;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.my-team-page .agents-card .img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.agents-card:hover .img-sec img {
    transform: scale(1.05);
}

/* Social Icons Overlay (Optional if uncommented in HTML) */
.social-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.agents-card:hover .social-icons {
    transform: translateY(0);
}

.social-icons li {
    list-style: none;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    color: #000000;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background: #fadc8e;
    box-shadow: 0 4px 15px rgba(250, 220, 142, 0.6);
}

/* Title Section */
.agents-card .title-sec {
    padding: 5px 15px 20px;
    background-color: #ffffff;
    text-align: center;
}

.title-sec h4 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #333333;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .my-team-page h2 {
        font-size: 28px;
    }

    .social-icons {
        gap: 10px;
        padding: 10px 0;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .title-sec h4 {
        font-size: 18px;
    }
}



.job-ban img
{
    height: auto !important;
}

.job-page-2
{
    padding: 5% 40px 5%;
}
