/*========HIRANYAGARBHA PROJECT HERO==========*/
.project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}
/*==========BACKGROUND IMAGE============*/
.project-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
/*==========DARK OVERLAY===========*/
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}
/*========HERO CONTENT==========*/
.project-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 850px;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    padding: 80px 15px;
}
/*========= TOP TAG===========*/
.project-content .hero-tag {
    display: inline-block;
    color: #C9A86A;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
/*=======PROJECT TITLE=============*/
.project-content h1 {
    margin: 0 0 20px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 7vw, 90px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 1px;
}
/*===========GOLD LINE=============*/
.project-content .hero-line {
    width: 120px;
    height: 3px;
    background: #C9A86A;
    margin-bottom: 25px;
}
/*=========DESCRIPTION=============*/
.project-content p {
    max-width: 600px;
    margin: 0 0 35px;
    color: #f1f1f1;
    font-size: 22px;
    line-height: 1.7;
}
/*========== BUTTONS=============*/
.project-content .hero-btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    padding: 15px 30px;
    margin-bottom: 15px;
    background: #C9A86A;
    color: #fff;
    border: 2px solid #C9A86A;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.35s ease;
}
.project-content .hero-btn1:last-of-type {
    margin-bottom: 0;
}
/*=========BUTTON HOVER===========*/
.project-content .hero-btn1:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
/*======= SCROLL INDICATOR===========*/
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    animation: scrollMove 2s infinite;
}
.scroll-indicator span {
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-indicator i {
    font-size: 17px;
}
@keyframes scrollMove {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.6;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}
/*======= TABLET 992px and below================*/
@media (max-width: 991px) {
    .project-hero {
        height: 100svh;
        min-height: 650px;
    }
    .project-bg {
        object-position: center center;
    }
    .project-content {
        height: 100svh;
        min-height: 650px;
        max-width: 100%;
        padding: 110px 30px 100px;
        align-items: center;
        text-align: center;
    }
    .project-content .hero-tag {
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }
    .project-content h1 {
        font-size: 60px;
        line-height: 1.05;
        margin-bottom: 18px;
    }
    .project-content .hero-line {
        width: 90px;
        height: 3px;
        margin: 0 auto 22px;
    }
    .project-content p {
        max-width: 600px;
        font-size: 19px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    .project-content .hero-btn1 {
        min-width: 230px;
        padding: 14px 28px;
        font-size: 15px;
    }
    .scroll-indicator {
        bottom: 22px;
    }
}
/*====== MOBILE===========*/
@media (max-width: 767px) {
    .project-hero {
        height: 100svh;
        min-height: 600px;
    }
    .project-bg {
        object-position: center center;
    }
    .project-overlay {
        background: rgba(0, 0, 0, 0.53);
    }
    .project-content {
        height: 100svh;
        min-height: 600px;
        padding: 100px 20px 80px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    /* Tag */
    .project-content .hero-tag {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 14px;
    }
    /* Title */
    .project-content h1 {
        font-size: 44px;
        line-height: 1.08;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
    /* Gold line */
    .project-content .hero-line {
        width: 75px;
        height: 2px;
        margin: 0 auto 20px;
    }
    /* Description */
    .project-content p {
        width: 100%;
        max-width: 350px;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 27px;
    }
    /* Buttons */
    .project-content .hero-btn1 {
        width: 100%;
        max-width: 280px;
        min-width: 0;
        padding: 14px 20px;
        margin-bottom: 12px;
        font-size: 15px;
    }
    .scroll-indicator {
        bottom: 17px;
    }
    .scroll-indicator span {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .scroll-indicator i {
        font-size: 15px;
    }
}
/*======= SMALL MOBILE===========*/
@media (max-width: 480px) {
    .project-hero {
        min-height: 570px;
    }
    .project-content {
        min-height: 570px;
        padding: 95px 16px 75px;
    }
    .project-content .hero-tag {
        font-size: 10px;
        letter-spacing: 1.8px;
        margin-bottom: 12px;
    }
    .project-content h1 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 14px;
    }
    .project-content .hero-line {
        width: 65px;
        margin-bottom: 18px;
    }
    .project-content p {
        max-width: 300px;
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 24px;
    }
    .project-content .hero-btn1 {
        max-width: 250px;
        padding: 13px 18px;
        font-size: 14px;
    }
    .scroll-indicator {
        bottom: 13px;
    }
}
/*=======VERY SMALL MOBILE=============*/
@media (max-width: 360px) {
    .project-content {
        padding-left: 12px;
        padding-right: 12px;
    }
    .project-content .hero-tag {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .project-content h1 {
        font-size: 32px;
    }
    .project-content p {
        max-width: 280px;
        font-size: 14px;
    }
    .project-content .hero-btn1 {
        max-width: 220px;
        padding: 12px 16px;
        font-size: 13px;
    }
}
/*=======PREMIUM ABOUT PROJECT==========*/
.project-about{
    padding:110px 0;
    background:#fff;
    overflow:hidden;
}
/* Main Content */
.project-about .about-content{
    padding-left:35px;
}
/* Section Tag */
.project-about .section-tag{
    display:inline-block;
    color:#C9A86A;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}
/* Heading */
.project-about h2{
    font-family:"Cormorant Garamond",serif;
    font-size:56px;
    line-height:1.05;
    font-weight:700;
    color:#111;
    margin:0 0 25px;
}
/* Gold line */
.project-about .about-line{
    width:65px;
    height:3px;
    background:#C9A86A;
    margin-bottom:25px;
}
/* Paragraph */
.project-about p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}
/*========IMAGE===========*/
.project-about .about-image{
    position:relative;
    overflow:hidden;
    border-radius:28px;
}
.project-about .about-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
    transition:transform .7s ease;
}
.project-about .about-image:hover img{
    transform:scale(1.05);
}
/* Image gold frame */
.project-about .about-image::after{
    content:"";
    position:absolute;
    top:18px;
    left:18px;
    right:18px;
    bottom:18px;
    border:1px solid rgba(255,255,255,.55);
    border-radius:20px;
    pointer-events:none;
}
/*======PROJECT STATS===========*/
.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:30px;
}
.about-stat{
    padding:20px 15px;
    border-left:3px solid #C9A86A;
    background:#fafafa;
    transition:.35s ease;
}
.about-stat:hover{
    background:#f5f0e7;
    transform:translateY(-4px);
}
.about-stat h4{
    margin:0 0 5px;
    color:#C9A86A;
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    font-weight:700;
}
.about-stat span{
    color:#666;
    font-size:13px;
    line-height:1.4;
}
/*==========BUTTON=============*/
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    padding:14px 30px;
    background:#C9A86A;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.35s ease;
}
.about-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}
/*=======TABLET ============*/
@media(max-width:991px){
    .project-about{
        padding:85px 0;
    }
    .project-about .about-content{
        padding-left:0;
    }
    .project-about h2{
        font-size:48px;
    }
    .project-about .about-image img{
        height:500px;
    }
    .about-stats{
        gap:12px;
    }
}
/*=========MOBILE==========*/
@media(max-width:767px){
    .project-about{
        padding:65px 0;
    }
    .project-about .section-tag{
        font-size:11px;
        letter-spacing:2px;
    }
    .project-about h2{
        font-size:40px;
        line-height:1.1;
        margin-bottom:20px;
    }
    .project-about p{
        font-size:15px;
        line-height:1.8;
    }
    .project-about .about-image{
        border-radius:20px;
        margin-bottom:35px;
    }
    .project-about .about-image img{
        height:380px;
    }
    .project-about .about-image::after{
        top:12px;
        left:12px;
        right:12px;
        bottom:12px;
        border-radius:14px;
    }
    .about-stats{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .about-stat{
        padding:18px 14px;
    }
    .about-stat h4{
        font-size:25px;
    }
    .about-stat span{
        font-size:12px;
    }
    .about-btn{
        width:100%;
        justify-content:center;
    }
}
/*======= SMALL MOBILE ============*/
@media(max-width:480px){
    .project-about{
        padding:55px 0;
    }
    .project-about h2{
        font-size:34px;
    }
    .project-about .about-image img{
        height:320px;
    }
    .about-stats{
        grid-template-columns:1fr;
    }
    .about-stat{
        display:flex;
        align-items:center;
        gap:15px;
    }
    .about-stat h4{
        margin:0;
    }
}
/*=======PROJECT HIGHLIGHTS============*/
.project-highlights {
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}
/*=======SECTION HEADING============*/
.project-highlights .section-tag {
    display: inline-block;
    color: #C9A86A;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
}
.project-highlights .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-top: 10px;
    margin-bottom: 18px;
    line-height: 1.2;
}
.project-highlights .section-subtitle {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 50px;
}
/*======HIGHLIGHT CARD===========*/
.highlight-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    transition: all .4s ease;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    box-sizing: border-box;
}
/*========ICON===========*/
.highlight-card i {
    display: inline-block;
    font-size: 45px;
    color: #C9A86A;
    margin-bottom: 20px;
    transition: .4s ease;
}
/*======= CARD TITLE===========*/
.highlight-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: .4s ease;
}
/*=========CARD TEXT============*/
.highlight-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    transition: .4s ease;
}
/*=======GOLD TOP LINE=========*/
.highlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: #C9A86A;
    transition: .5s ease;
}
.highlight-card:hover::before {
    left: 0;
}
/*====== HOVER EFFECT============*/
.highlight-card:hover {
    transform: translateY(-12px);
    border: 1px solid #C9A86A;
    box-shadow:
        0 0 15px rgba(201,168,106,.35),
        0 0 35px rgba(201,168,106,.25),
        0 20px 45px rgba(0,0,0,.15);
}
.highlight-card:hover i {
    transform: scale(1.15);
    color: #C9A86A;
}
.highlight-card:hover h4 {
    color: #C9A86A;
}
/*======== TABLET==========*/
@media (max-width: 991px) {
    .project-highlights {
        padding: 85px 0;
    }
    .project-highlights .section-title {
        font-size: 42px;
    }
    .project-highlights .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    .highlight-card {
        min-height: 235px;
        padding: 35px 25px;
        border-radius: 18px;
    }
    .highlight-card i {
        font-size: 40px;
        margin-bottom: 18px;
    }
    .highlight-card h4 {
        font-size: 23px;
    }
    .highlight-card p {
        font-size: 15px;
        line-height: 1.75;
    }
    .highlight-card:hover {
        transform: translateY(-7px);
    }
}
/*=======MOBILE============*/
@media (max-width: 767px) {
    .project-highlights {
        padding: 70px 0;
        overflow: hidden;
    }
    .project-highlights .section-tag {
        font-size: 12px;
        letter-spacing: 2.5px;
        margin-bottom: 8px;
    }
    .project-highlights .section-title {
        font-size: 36px;
        line-height: 1.15;
        margin-top: 8px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    .project-highlights .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 18px;
        margin-bottom: 35px;
    }
    .highlight-card {
        width: 100%;
        min-height: auto;
        padding: 32px 22px;
        border-radius: 18px;
    }
    .highlight-card i {
        font-size: 38px;
        margin-bottom: 16px;
    }
    .highlight-card h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .highlight-card p {
        font-size: 14px;
        line-height: 1.75;
    }
    .highlight-card:hover {
        transform: translateY(-4px);
    }
}
/*========SMALL MOBILE=============*/
@media (max-width: 576px) {
    .project-highlights {
        padding: 60px 0;
    }
    .project-highlights .section-title {
        font-size: 32px;
        padding: 0 5px;
    }
    .project-highlights .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .highlight-card {
        padding: 30px 18px;
        border-radius: 17px;
    }
    .highlight-card i {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .highlight-card h4 {
        font-size: 21px;
    }
    .highlight-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}
/*========VERY SMALL MOBILE============*/
@media (max-width: 380px) {
    .project-highlights {
        padding: 50px 0;
    }
    .project-highlights .section-title {
        font-size: 29px;
    }
    .project-highlights .section-subtitle {
        font-size: 13.5px;
        padding: 0 12px;
    }
    .highlight-card {
        padding: 27px 16px;
    }
    .highlight-card i {
        font-size: 32px;
    }
    .highlight-card h4 {
        font-size: 20px;
    }
    .highlight-card p {
        font-size: 13.5px;
        line-height: 1.7;
    }
}
/*======= PREVENT HORIZONTAL OVERFLOW===========*/
.project-highlights .container,
.project-highlights .row {
    max-width: 100%;
}
.project-highlights img {
    max-width: 100%;
    height: auto;
}
/*========AMENITIES SECTION==========*/
.amenities-section {
    padding: 110px 0;
    background: #111;
    overflow: hidden;
}
/*=======SECTION HEADING===========*/
.amenities-section .section-tag {
    display: inline-block;
    color: #C9A86A;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.amenities-section .section-title {
    color: #fff;
    font-size: 48px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}
.amenities-section .section-subtitle {
    color: #bdbdbd;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-size: 17px;
}
/*====== AMENITY CARD=========*/
.amenity-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    transition: all .45s ease;
}
/* Gold Top Line */
.amenity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #C9A86A;
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s ease;
}
.amenity-card:hover::before {
    transform: scaleX(1);
}
/*========ICON===========*/
.amenity-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 106, .08);
    border: 1px solid rgba(201, 168, 106, .25);
    transition: all .45s ease;
}
.amenity-icon i {
    font-size: 36px;
    color: #C9A86A;
    transition: all .45s ease;
}
/*=======CARD TITLE============*/
.amenity-card h5 {
    color: #C9A86A;
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.4;
}
/*======= CARD DESCRIPTION===========*/
.amenity-card p {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
/*======== CARD HOVER==========*/
.amenity-card:hover {
    transform: translateY(-12px);
    border-color: #C9A86A;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .35),
        0 0 25px rgba(201, 168, 106, .15);
}
.amenity-card:hover .amenity-icon {
    background: #C9A86A;
    border-color: #C9A86A;
}
.amenity-card:hover .amenity-icon i {
    color: #111;
    transform: scale(1.1);
}
/*=========== LARGE DESKTOP===========*/
@media (min-width: 1200px) {
    .amenities-section {
        padding: 120px 0;
    }
    .amenity-card {
        padding: 48px 32px;
    }
    .amenity-icon {
        width: 92px;
        height: 92px;
    }
}
/*========TABLET===========*/
@media (max-width: 991px) {
    .amenities-section {
        padding: 90px 0;
    }
    .amenities-section .section-title {
        font-size: 42px;
    }
    .amenities-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .amenity-card {
        padding: 38px 25px;
        border-radius: 22px;
    }
    .amenity-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 20px;
    }
    .amenity-icon i {
        font-size: 32px;
    }
    .amenity-card h5 {
        font-size: 21px;
    }
    .amenity-card p {
        font-size: 15px;
    }
    /* Smaller hover movement on tablet */
    .amenity-card:hover {
        transform: translateY(-7px);
    }
}
/*====== MOBILE=========*/
@media (max-width: 767px) {
    .amenities-section {
        padding: 75px 0;
    }
    .amenities-section .section-tag {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    .amenities-section .section-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .amenities-section .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
        padding: 0 10px;
        margin-bottom: 35px;
    }
    .amenity-card {
        padding: 35px 22px;
        border-radius: 20px;
        min-height: auto;
    }
    .amenity-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 18px;
    }
    .amenity-icon i {
        font-size: 30px;
    }
    .amenity-card h5 {
        font-size: 21px;
        margin: 13px 0;
    }
    .amenity-card p {
        font-size: 14px;
        line-height: 1.75;
    }
    /* Disable large hover movement on mobile */
    .amenity-card:hover {
        transform: translateY(-4px);
    }
}
/*=======SMALL MOBILE===========*/
@media (max-width: 576px) {
    .amenities-section {
        padding: 65px 0;
    }
    .amenities-section .section-title {
        font-size: 32px;
    }
    .amenities-section .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .amenity-card {
        padding: 32px 20px;
        border-radius: 18px;
    }
    .amenity-icon {
        width: 72px;
        height: 72px;
    }
    .amenity-icon i {
        font-size: 28px;
    }
    .amenity-card h5 {
        font-size: 20px;
    }
    .amenity-card p {
        font-size: 14px;
    }
}
/*========VERY SMALL MOBILE======*/
@media (max-width: 380px) {
    .amenities-section {
        padding: 55px 0;
    }
    .amenities-section .section-title {
        font-size: 29px;
    }
    .amenity-card {
        padding: 28px 17px;
    }
    .amenity-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 16px;
    }
    .amenity-icon i {
        font-size: 26px;
    }
    .amenity-card h5 {
        font-size: 19px;
    }
    .amenity-card p {
        font-size: 13px;
        line-height: 1.7;
    }
}
/*=====PREVENT HORIZONTAL OVERFLOW===========*/
.amenities-section .container,
.amenities-section .row {
    max-width: 100%;
}
.amenities-section * {
    box-sizing: border-box;
}
/*========= FLOOR PLANS ===========*/
.floor-plans{
    padding:100px 0;
    background:#ffffff;
}
/* Section Heading */
.floor-plans .section-tag{
    display:inline-block;
    color:#C9A86A;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:14px;
    margin-bottom:10px;
}
.floor-plans .section-title{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-top:10px;
    margin-bottom:15px;
    font-family:"Cormorant Garamond", serif;
}
.floor-plans .section-subtitle{
    color:#666;
    font-size:17px;
    line-height:1.8;
    max-width:720px;
    margin:0 auto 50px;
}
/*========= FLOOR CARD ===========*/
.floor-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    height:100%;
    border:1px solid #eeeeee;
}
.floor-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 0 18px rgba(201,168,106,.30),
        0 20px 45px rgba(0,0,0,.12);
}
/*========= FLOOR IMAGE ===========*/
.floor-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}
.floor-card:hover img{
    transform:scale(1.04);
}
/*========= FLOOR CONTENT ===========*/
.floor-content{
    padding:30px;
    text-align:center;
}
.floor-content h4{
    font-family:"Cormorant Garamond", serif;
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}
.floor-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:0;
}
/*========= FLOOR BUTTON ===========*/
.floor-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:20px;
    padding:12px 30px;
    border-radius:40px;
    background:#C9A86A;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.4s ease;
    box-shadow:0 8px 20px rgba(201,168,106,.20);
}
.floor-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}
/*========= FLOOR ICON / ARROW ===========*/
.floor-btn i{
    transition:.3s ease;
}
.floor-btn:hover i{
    transform:translateX(5px);
}
/*========= TABLET ===========*/
@media(max-width:991px){
    .floor-plans{
        padding:80px 0;
    }
    .floor-plans .section-title{
        font-size:42px;
    }
    .floor-card img{
        height:240px;
    }
    .floor-content{
        padding:25px;
    }
}
/*========= MOBILE ===========*/
@media(max-width:767px){
    .floor-plans{
        padding:70px 0;
    }
    .floor-plans .section-tag{
        font-size:12px;
        letter-spacing:2px;
    }
    .floor-plans .section-title{
        font-size:36px;
        line-height:1.2;
    }
    .floor-plans .section-subtitle{
        font-size:15px;
        line-height:1.7;
        padding:0 10px;
        margin-bottom:35px;
    }
    .floor-card{
        border-radius:18px;
    }
    .floor-card img{
        height:220px;
    }
    .floor-content{
        padding:25px 20px;
    }
    .floor-content h4{
        font-size:25px;
    }
    .floor-content p{
        font-size:14px;
    }
    .floor-btn{
        padding:11px 25px;
        font-size:14px;
    }
}
/*========= SMALL MOBILE ===========*/
@media(max-width:480px){
    .floor-plans{
        padding:60px 0;
    }
    .floor-plans .section-title{
        font-size:32px;
    }
    .floor-card img{
        height:200px;
    }
    .floor-content{
        padding:22px 18px;
    }
    .floor-content h4{
        font-size:23px;
    }
}
/*========PROJECT LOCATION===========*/
.project-location{
    padding:120px 0;
    background:#f8f8f8;
    overflow:hidden;
}
/*=========SECTION HEADING============*/
.project-location .section-tag{
    display:inline-block;
    color:#C9A86A;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}
.project-location .section-title{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin:10px 0 15px;
    line-height:1.2;
}
.project-location .section-subtitle{
    max-width:700px;
    margin:0 auto 50px;
    color:#777;
    font-size:17px;
    line-height:1.8;
    letter-spacing:1px;
}
/*==========MAIN ROW=============*/
.project-location .row{
    align-items:stretch;
}
/*===========MAP==========*/
.map-box{
    width:100%;
    height:100%;
    min-height:550px;
    overflow:hidden;
    border-radius:25px;
    background:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    transition:.4s ease;
}
.map-box:hover{
    transform:translateY(-6px);
}
.map-box iframe{
    display:block;
    width:100%;
    height:550px;
    min-height:550px;
    border:none;
}
/*========LOCATION CARD===========*/
.location-card{
    width:100%;
    height:100%;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    box-sizing:border-box;
    transition:.4s ease;
}
.location-card:hover{
    box-shadow: 0 0 20px rgba(201,168,106,.20),
                0 25px 60px rgba(0,0,0,.10);
}
/*=========LOCATION TAG==========*/
.location-tag{
    display:inline-block;
    background:#f7f1e4;
    color:#C9A86A;
    padding:10px 22px;
    border-radius:50px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:18px;
    text-transform:uppercase;
}
/*========== TITLE==========*/
.location-card h3{
    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    font-weight:700;
    margin-bottom:28px;
    color:#111;
    line-height:1.2;
}
/*=========LOCATION GRID===========*/
.location-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-top:10px;
}
/*========= LOCATION ITEM=============*/
.location-item{
    display:grid;
    grid-template-columns:65px minmax(0,1fr);
    grid-template-rows:auto auto;
    align-items:center;
    column-gap:18px;
    background:#fff;
    border:1px solid #eeeeee;
    border-radius:18px;
    padding:22px 20px;
    min-height:105px;
    text-align:left;
    transition:.4s ease;
    cursor:pointer;
    box-sizing:border-box;
}
/*=========ICON==========*/
.location-item i{
    grid-column:1;
    grid-row:1 / 3;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#F7F1E4;
    color:#C9A86A;
    font-size:25px;
    margin:0;
    transition:.4s ease;
}
/*=========LOCATION NAME============*/
.location-item h5{
    grid-column:2;
    grid-row:1;
    margin:0 0 5px;
    color:#111;
    font-family:"Cormorant Garamond",serif;
    font-size:21px;
    font-weight:700;
    line-height:1.25;
    text-align:left;
}
/*==========DISTANCE===========*/
.location-item span{
    grid-column:2;
    grid-row:2;
    display:block;
    margin:0;
    color:#C9A86A;
    font-size:16px;
    font-weight:700;
    line-height:1.3;
    text-align:left;
}
/*=========HOVER===========*/
.location-item:hover{
    transform:translateY(-6px);
    border-color:#C9A86A;
    box-shadow:0 0 20px rgba(201,168,106,.20),
               0 12px 30px rgba(0,0,0,.08);
}
.location-item:hover i{
    background:#C9A86A;
    color:#fff;
    transform:rotate(360deg);
}
.location-item:hover h5{
    color:#C9A86A;
}
/*========LOCATION BUTTON==========*/
.location-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:30px;
    padding:15px 32px;
    background:#C9A86A;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s ease;
    box-shadow:0 8px 20px rgba(201,168,106,.20);
}
.location-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-4px);
}
/*=========TABLET===========*/
@media(max-width:1199px){
    .location-card{
        padding:32px;
    }
    .location-item{
        grid-template-columns:55px minmax(0,1fr);
        column-gap:14px;
        padding:18px 15px;
    }
    .location-item i{
        width:52px;
        height:52px;
        font-size:22px;
    }
    .location-item h5{
        font-size:19px;
    }
    .location-item span{
        font-size:15px;
    }
}
/*==========TABLET============*/
@media(max-width:991px){
    .project-location{
        padding:90px 0;
    }
    .project-location .section-title{
        font-size:42px;
    }
    .project-location .section-subtitle{
        font-size:16px;
        margin-bottom:40px;
    }
    /* Map */
    .map-box{
        min-height:450px;
    }
    .map-box iframe{
        height:450px;
        min-height:450px;
    }
    /* Card */
    .location-card{
        height:auto;
        padding:30px;
    }
    .location-card h3{
        font-size:32px;
        margin-bottom:25px;
    }
    .location-grid{
        gap:15px;
    }
    .location-item{
        min-height:95px;
    }
}
/*=========MOBILE============*/
@media(max-width:767px){
    .project-location{
        padding:70px 0;
    }
    .project-location .section-tag{
        font-size:12px;
        letter-spacing:2.5px;
    }
    .project-location .section-title{
        font-size:36px;
        line-height:1.2;
    }
    .project-location .section-subtitle{
        font-size:15px;
        line-height:1.7;
        padding:0 12px;
        margin-bottom:35px;
    }
    /*================ MAP ================*/
    .map-box{
        height:auto;
        min-height:0;
        border-radius:20px;
    }
    .map-box:hover{
        transform:none;
    }
    .map-box iframe{
        width:100%;
        height:330px;
        min-height:330px;
    }
    /*================ LOCATION CARD ================*/
    .location-card{
        height:auto;
        padding:25px 18px;
        border-radius:20px;
    }
    .location-card h3{
        font-size:30px;
        margin-bottom:22px;
    }
    /*================ LOCATION GRID ================*/
    .location-grid{
        grid-template-columns:1fr;
        gap:12px;
        margin-top:5px;
    }
    /*================ LOCATION ITEM ================*/
    .location-item{
        grid-template-columns:55px minmax(0,1fr);
        grid-template-rows:auto auto;
        column-gap:14px;
        min-height:88px;
        padding:16px 15px;
        border-radius:16px;
    }
    .location-item i{
        width:50px;
        height:50px;
        font-size:21px;
    }
    .location-item h5{
        font-size:19px;
        margin-bottom:4px;
    }
    .location-item span{
        font-size:14px;
    }
    /*================ BUTTON ================*/
    .location-btn{
        width:100%;
        margin-top:25px;
        padding:14px 20px;
        font-size:14px;
    }
}
/*=========SMALL MOBILE=============*/
@media(max-width:480px){
    .project-location{
        padding:60px 0;
    }
    .project-location .section-title{
        font-size:31px;
    }
    .project-location .section-subtitle{
        font-size:14px;
        padding:0 8px;
    }
    /* Map */
    .map-box iframe{
        height:280px;
        min-height:280px;
    }
    /* Card */
    .location-card{
        padding:22px 14px;
    }
    .location-card h3{
        font-size:27px;
    }
    /* Location item */
    .location-item{
        grid-template-columns:48px minmax(0,1fr);
        column-gap:12px;
        min-height:78px;
        padding:14px 12px;
    }
    .location-item i{
        width:44px;
        height:44px;
        font-size:18px;
    }
    .location-item h5{
        font-size:17px;
    }
    .location-item span{
        font-size:13px;
    }
}
/*=======PREVENT HORIZONTAL SCROLL==========*/
html,
body{
    max-width:100%;
    overflow-x:hidden;
}
.project-location,
.project-location .container,
.project-location .row,
.project-location [class*="col-"]{
    max-width:100%;
    box-sizing:border-box;
}
.project-location img,
.project-location iframe{
    max-width:100%;
}
/*== HIRANYAGARBH GALLERY =============*/
.gallery-section{
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
}
.gallery-section .section-tag{
    display:inline-block;
    color:#C9A86A;
    font-size:14px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.gallery-section .section-title{
    color:#111;
    font-family:"Cormorant Garamond",serif;
    font-size:48px;
    font-weight:700;
    margin:10px 0 15px;
}
.gallery-section .section-subtitle{
    max-width:700px;
    margin:0 auto 45px;
    color:#777;
    font-size:17px;
    line-height:1.8;
}
/*=========SWIPER============*/
.gallerySwiper{
    width:100%;
    height:auto;
    overflow:hidden;
    position:relative;
}
.gallerySwiper .swiper-wrapper{
    display:flex;
}
.gallerySwiper .swiper-slide{
    flex-shrink:0;
    width:100%;
    height:600px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
    background:#111;
}
.gallerySwiper .swiper-slide a{
    display:block;
    width:100%;
    height:100%;
    position:relative;
    text-decoration:none;
}
/*==========IMAGE===============*/
.gallerySwiper .swiper-slide img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}
.gallerySwiper .swiper-slide:hover img{
    transform:scale(1.08);
}
/*==========DARK OVERLAY=============*/
.gallerySwiper .swiper-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,0) 60%
    );
    opacity:0;
    transition:.5s ease;
    pointer-events:none;
}
.gallerySwiper .swiper-slide:hover::after{
    opacity:1;
}
/*=========== CAPTION =============*/
.gallery-caption{
    position:absolute;
    left:30px;
    bottom:28px;
    color:#fff;
    font-family:"Cormorant Garamond",serif;
    font-size:28px;
    font-weight:600;
    opacity:0;
    transform:translateY(20px);
    transition:.5s ease;
    z-index:5;
}
.gallerySwiper .swiper-slide:hover .gallery-caption{
    opacity:1;
    transform:translateY(0);
}
/*========NAVIGATION BUTTONS=============*/
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    color:#C9A86A;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    transition:.35s ease;
}
.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after{
    font-size:20px;
    font-weight:700;
}
.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover{
    background:#C9A86A;
    color:#fff;
    transform:scale(1.08);
}
/*=========PAGINATION==============*/
.gallerySwiper .swiper-pagination{
    bottom:18px !important;
}
.gallerySwiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.6;
    transition:.3s;
}
.gallerySwiper .swiper-pagination-bullet-active{
    width:28px;
    border-radius:20px;
    background:#C9A86A;
    opacity:1;
}
/*=========TABLET===========*/
@media(max-width:991px){
    .gallery-section{
        padding:80px 0;
    }
    .gallery-section .section-title{
        font-size:42px;
    }
    .gallerySwiper .swiper-slide{
        height:500px;
        border-radius:22px;
    }
    .gallery-caption{
        font-size:25px;
    }
}
/*=========MOBILE============*/
@media(max-width:767px){
    .gallery-section{
        padding:70px 0;
    }
    .gallery-section .section-tag{
        font-size:12px;
        letter-spacing:2px;
    }
    .gallery-section .section-title{
        font-size:36px;
        line-height:1.2;
    }
    .gallery-section .section-subtitle{
        font-size:15px;
        padding:0 12px;
        margin-bottom:30px;
    }
    .gallerySwiper{
        width:100%;
        overflow:hidden;
    }
    .gallerySwiper .swiper-slide{
        width:100%;
        height:400px;
        border-radius:18px;
    }
    .gallerySwiper .swiper-slide img{
        transform:none !important;
    }
    .gallery-caption{
        left:20px;
        bottom:25px;
        font-size:23px;
        opacity:1;
        transform:none;
    }
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev{
        width:42px;
        height:42px;
    }
    .gallerySwiper .swiper-button-next::after,
    .gallerySwiper .swiper-button-prev::after{
        font-size:15px;
    }
}
/*===========SMALL MOBILE=============*/
@media(max-width:480px){
    .gallery-section{
        padding:60px 0;
    }
    .gallery-section .section-title{
        font-size:32px;
    }
    .gallery-section .section-subtitle{
        font-size:14px;
    }
    .gallerySwiper .swiper-slide{
        height:330px;
        border-radius:16px;
    }
    .gallery-caption{
        left:16px;
        bottom:20px;
        font-size:21px;
    }
    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev{
        width:38px;
        height:38px;
    }
}
/*==========Construction Progress============*/
.construction-section{
    padding:100px 0 60px;
    background:#f8f8f8;
}
.progress-wrapper{
    max-width:900px;
    margin:auto;
}
.progress-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    margin-bottom:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}
.progress-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(201,168,106,.30);
}
.progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}
.progress-header h5{
    margin:0;
    font-size:24px;
    font-weight:600;
    color:#111;
}
.progress-header span{
    color:#C9A86A;
    font-size:24px;
    font-weight:700;
}
.progress-line{
    width:100%;
    height:12px;
    background:#e7e7e7;
    border-radius:50px;
    overflow:hidden;
}
.progress-fill{
    height:100%;
    background:#C9A86A;
    width:0;
    border-radius:50px;
    animation:fillBar 2s forwards;
}
.foundation{
    --progress:100%;
}
.structure{
    --progress:100%;
}
.brick{
    --progress:90%;
}
.plaster{
    --progress:70%;
}
.electrical{
    --progress:50%;
}
.finishing{
    --progress:30%;
}
@keyframes fillBar{
    from{
        width:0;
    }
    to{
        width:var(--progress);
    }
}
/*============Hiranyanabha FAQ ========*/
.faq-section{
    padding:120px 0;
    background:#fafafa;
}
.faq-section .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.faq-section .accordion-button{
    background:#fff;
    color:#111;
    font-size:18px;
    font-weight:600;
    padding:22px 28px;
    box-shadow:none;
}
.faq-section .accordion-button:not(.collapsed){
    background:#C9A86A;
    color:#fff;
}
.faq-section .accordion-button:focus{
    box-shadow:none;
}
.faq-section .accordion-body{
    padding:22px 28px;
    color:#666;
    line-height:1.8;
    background:#fff;
}
.faq-section .accordion-button::after{
    filter:brightness(0);
}
.faq-section .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}
/*======== OTHER PROJECTS SECTION============*/
.other-projects {
    width: 100%;
    padding: 90px 0;
    background: #f8f8f8;
    overflow: hidden;
}
/*========SECTION HEADING==========*/
.other-projects .section-tag {
    display: block;
    width: 100%;
    text-align: center;
    color: #C9A86A !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.other-projects .section-title {
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 700;
    color: #111 !important;
    line-height: 1.15;
    margin: 0 0 20px;
}
.other-projects .section-subtitle {
    max-width: 750px;
    margin: 0 auto 35px;
    text-align: center;
    color: #666 !important;
    font-size: 17px;
    line-height: 1.8;
}
/*=========EXPLORE BUTTON=========*/
.explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    margin: 0 auto 50px;
    padding: 15px 36px;
    background: #C9A86A;
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.35s ease;
}
.explore-btn:hover {
    background: #111;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.explore-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.explore-btn:hover i {
    transform: translateX(5px);
}
/*=======PROJECT LIST============*/
.project-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
/*========PROJECT CARD==========*/
.project-card-horizontal {
    display: flex;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}
.project-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(201, 168, 106, 0.18);
}
/*======== PROJECT IMAGE============*/
.project-card-horizontal img {
    display: block;
    width: 260px;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.6s ease;
}
.project-card-horizontal:hover img {
    transform: scale(1.06);
}
/*========= PROJECT INFO===========*/
.project-info {
    flex: 1;
    padding: 30px;
}
.project-info span {
    display: inline-block;
    color: #C9A86A !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.project-info h3 {
    font-family: "Cormorant Garamond", serif;
    color: #111 !important;
    font-size: 34px;
    font-weight: 700;
    margin: 8px 0 12px;
}
.project-info p {
    color: #666 !important;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
}
.project-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.project-info a:hover {
    color: #C9A86A !important;
}
.project-info a i {
    transition: transform 0.3s ease;
}
.project-info a:hover i {
    transform: translateX(5px);
}
/*========TABLET============*/
@media (max-width: 991px) {
    .other-projects {
        padding: 75px 0;
    }
    .other-projects .section-tag {
        text-align: center;
    }
    .other-projects .section-title {
        font-size: 46px;
        text-align: center;
    }
    .other-projects .section-subtitle {
        max-width: 650px;
        text-align: center;
    }
    .project-card-horizontal {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .project-card-horizontal img {
        width: 100%;
        height: 300px;
        aspect-ratio: 16 / 9;
    }
    .project-info {
        padding: 28px;
    }
    .project-info h3 {
        font-size: 32px;
    }
}
/*======= MOBILE==========*/
@media (max-width: 768px) {
    .other-projects {
        padding: 65px 0;
    }
    .other-projects .section-tag,
    .other-projects .section-title,
    .other-projects .section-subtitle {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .other-projects .section-tag {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 12px;
    }
    .other-projects .section-title {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 18px;
    }
    .other-projects .section-subtitle {
        font-size: 15px;
        line-height: 1.8;
        max-width: 600px;
        padding: 0 8px;
        margin-bottom: 30px;
    }
    .explore-btn {
        width: 100%;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        padding: 15px 25px;
    }
    .project-list {
        gap: 24px;
    }
    .project-card-horizontal {
        width: 100%;
        border-radius: 20px;
        flex-direction: column;
    }
    .project-card-horizontal img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }
    .project-info {
        width: 100%;
        padding: 22px;
    }
    .project-info h3 {
        font-size: 30px;
    }
    .project-info p {
        font-size: 15px;
        line-height: 1.7;
    }
}
/*=========SMALL MOBILE===========*/
@media (max-width: 576px) {
    .other-projects {
        padding: 55px 0;
    }
    .other-projects .section-tag {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 10px;
    }
    .other-projects .section-title {
        font-size: 32px;
        line-height: 1.15;
    }
    .other-projects .section-subtitle {
        font-size: 14px;
        line-height: 1.75;
        padding: 0 5px;
        margin-bottom: 25px;
    }
    .explore-btn {
        width: 100%;
        max-width: none;
        padding: 14px 20px;
        font-size: 15px;
        margin-bottom: 30px;
    }
    .project-card-horizontal {
        border-radius: 18px;
    }
    .project-card-horizontal img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }
    .project-info {
        padding: 20px;
    }
    .project-info span {
        font-size: 11px;
        letter-spacing: 1.2px;
    }
    .project-info h3 {
        font-size: 27px;
        margin: 8px 0 10px;
    }
    .project-info p {
        font-size: 14px;
        line-height: 1.7;
    }
    .project-info a {
        font-size: 14px;
    }
}
/*==========VERY SMALL MOBILE============*/
@media (max-width: 380px) {
    .other-projects {
        padding: 45px 0;
    }
    .other-projects .section-title {
        font-size: 29px;
    }
    .other-projects .section-subtitle {
        font-size: 13px;
    }
    .explore-btn {
        font-size: 14px;
        padding: 13px 18px;
    }
    .project-info {
        padding: 18px;
    }
    .project-info h3 {
        font-size: 25px;
    }
}