@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* HEADER CSS STARTS */
header {
    position: fixed;
    width: 93%;
    left: 50%;
    top: 6px;
    z-index: 99;
    background-color: #ffffff;
    padding: 5px 0;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translate(-50%);
    border-radius: 10px;
}

.newClass {
    background-color: #ffffff;
    box-shadow: 0 0 1px #000000;
    z-index: 999;
    border-radius: 10px;
}

.inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    max-width: 104px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

p.banner-inner.price-info {
    font-family: 'Lato-LightItalic';
    font-size: 25px;
}

.menu ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    padding: 0px 15px;
    text-transform: uppercase;
    -moz--webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    letter-spacing: 1px;
    font-family: 'Montserrat';
}

.project-overview-section .know-more {
    text-align: left;
}

/* HEADER CSS ENDS */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section .container-fluid {
    padding: 0;
}

.banner-section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000087;
    content: "";
    z-index: 9;
}

.banner-section-information {
    position: absolute;
    top: 45%;
    left: 50%;
    content: "";
    z-index: 9;
    text-align: center;
    transform: translate(-50%);
    color: #fff;
    width: 100%;
    font-family: 'Poppins';
}

.banner-section-information h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 300;
}

.banner-information {
    position: absolute;
    bottom: 7%;
    left: 50%;
    content: "";
    z-index: 9;
    text-align: center;
    transform: translate(-50%);
    color: #fff;
    width: 100%;
    font-family: 'Poppins';
}

.banner-information p {
    font-size: 25px;
    text-transform: uppercase;
}

.banner-information p a {
    color: #fff;
    text-decoration: none;
}

.banner-location {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    padding: 10px;
    width: 30%;
    margin: 0 auto;
    margin-bottom: 10px;
    background: #1557a5;
    border-radius: 5px;
}

.section-title {
    font-family: 'Poppins';
    margin-bottom: 30px;
    text-align: center;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 0;
}

.padding-space-extra {
    padding: 50px 0;
}

.section-title p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.banner-section-img {
    animation: zoomEffect 10s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
        /* Normal size */
    }

    100% {
        transform: scale(1.3);
        /* Zoom in slightly */
    }
}

.oberoi-reality-about {
    width: 65%;
    margin: 0 auto;
}

.oberoi-about-title {
    font-family: "Poppins", sans-serif;
}

.oberoi-about-title h2 {
    font-size: 40px;
    text-align: right;
    color: #9c6d41;
}

.oberoi-about-para {
    font-family: "Poppins", sans-serif;
    font-style: italic;
    font-weight: 300;
}

.oberoi-reality-about-us {
    position: relative;
}

/* swiper start */
.oberoi-structure-points .swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.oberoi-structure-points .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
}

.oberoi-structure-points .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    background: #6f4821;
    padding: 20px;
    color: #fff;
}

.oberoi-structure-points .swiper-slide-active h3 {
    color: #fff;
}

.oberoi-structure-points .swiper-slide-active .btn {
    background: #fff;
    padding: 5px;
    color:#6f4821;
}

/* === Image Styling === */
.oberoi-structure-img .swiper-slide img {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
    transform: scale(0.9);
}

/* === Zoom Animation ONLY on Active Slide === */
.swiper-slide-active img {
    width: 90%;
    opacity: 1;
    animation: zoomEffects 10s ease-in-out infinite alternate;
}

@keyframes zoomEffects {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}


/* --- Navigation Buttons (same as your first image) --- */
.swiper-button-next,
.swiper-button-prev {
    color: transparent;
    /* hide default icon */
    width: 40px;
    height: 40px;
    border: 1px solid #a57c52;
    /* same golden-brown tone */
    border-radius: 2px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    background: #6f4821;
    cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* Custom thin arrows */
.swiper-button-prev::after {
    content: "❮";
}

.swiper-button-next::after {
    content: "❯";
}

/* Button position - slightly outside slides */
.swiper-button-prev {
    left: 22%;
}

.swiper-button-next {
    right: 22%;
}

.oberoi-structure-img {
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* swiper end */

.oberoi-structure-inn {
    font-family: 'Poppins';
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
}

.oberoi-structure-inn h3 {
    text-align: right;
    color: #9c6d41;
}

.oberoi-structure-inn p {
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
}

.read-more {
    color: #9c6d41;
    text-transform: uppercase;
    background: transparent;
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    padding: 0;
    transition: all .3s linear;
}

.read-more span.icon-cta-icon {
    margin-left: 10px;
}

.read-more span.icon-cta-icon::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid #9c6d41;
    transform: rotate(45deg);
    transition: all .3s linear;
    will-change: transform;
    display: inline-block;
}

.icon-cta-icon:before {
    content: "\e900";
    color: #9c6d41;
}

.comma-img {
    max-width: 120px;
}

.chairman-info-comma {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 19px;
    margin-top: 25px;
}

.chairman-info {
    margin-top: 30px;
}

.chairman-info h3 {
    color: #9c6d41;
    font-size: 27px;
    margin-bottom: 0;
}

.chairman-info p {
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
}

.refining-urban-section {
    background: #f0ece7;
    text-align: center;
}

.refining-section-information h2 {
    color: #9c6d41;
    font-size: 40px;
    font-family: 'Poppins';
}

.refine-fer-section {
    margin-top: 40px;
    font-family: 'Poppins';
}

.category-img {
    overflow: hidden;
    position: relative;
}

.category-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.category-title {
    margin-top: 12px;
    font-size: 16px;
    color: #a57c52;
    font-weight: 500;
}

.refine-fer-section .btn {
    margin-top: 40px;
    background: transparent;
    color: #a57c52;
    font-weight: 800;
}

.thanke-landing-page-img {
    text-align: center;
    margin: 0 auto;
}

.sustable-section {
    background: url('../images/sustable-relert.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
}

.sustable-fer-section-info {
    background: url(../images/background-fer.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 72px;
    font-family: 'Poppins';
    color: #868686;
    width: 383px !important;
    height: 340px !important;
}

.sustable-img {
    max-width: 37px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.sustable-fer-section-info h3 {
    font-size: 17px;
    text-align: center;
    font-family: 'Poppins';
}

.sustable-fer-section-info p {
    font-weight: 300;
    text-align: center;
    font-size: 14px;
    padding: 0 7px;
}

.sustable-fer-section .row .col-md-4 {
    margin: 0;
    padding: 0;
}

.sustable-section-information .section-title {
    color: #fff;
}

.sustable-section-information .section-title h2 {
    font-weight: 400;
    letter-spacing: 1px;
}

.view-report {
    text-align: center;
    color: #fff;
    font-family: 'Poppins';
    font-size: 30px;
}

.views-reports {
    text-align: center;
    color: #fff;
    font-family: 'Poppins';
}

.views-report p {
    margin-bottom: 10px;
}

.views-reports p {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
}

.views-reports .icon-cta-icon {
    margin-left: 20px;
}

.views-reports .icon-cta-icon::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    transform: rotate(45deg);
    transition: all .3s linear;
    will-change: transform;
    display: inline-block;
}

.have-question-info {
    text-align: right;
    font-family: 'Poppins';
    padding-right: 68px;
    padding-left: 135px;
}

.have-question-info h2 {
    color: #a57c52;
    font-size: 40px;
    margin-bottom: 30px;
}

.have-question-section {
    padding: 40px 0 0 0;
}

.have-question-info p {
    color: #868686;
}

.hhave-question-infort p {
    color: #a57c52;
    font-size: 23px;
    font-weight: 500;
    font-family: 'Poppins';
    font-style: italic;
    padding: 40px 0 0 80px;
}

.chat-box {
    cursor: pointer;
    background: #b79270;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    position: absolute;
    left: -67.5px;
    top: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
}

.chat-box svg {
    fill: #fff;
}

.chat-box span::before {
    color: #FFFFFF;
}

.have-a-question-section {
    position: relative;
    overflow: hidden;
}

.have-a-question-section::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    content: "";
    background: #f0ece7;
}

.inspiration-media {
    background: #f0ece7;
}

.inspiration-media-section h2 {
    font-size: 39px;
    font-family: 'Poppins';
    color: #a57c52;
    width: 40%;
    font-weight: 400;
}

.blog-info p {
    font-family: 'Poppins';
    color: #6f4821;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 0;
}


.inspiration-inter-section {
    padding-left: 25px;
}

.inspiration-info h2 {
    font-size: 39px;
    font-family: 'Poppins';
    color: #a57c52;
    width: 40%;
    font-weight: 400;
}

p.terent-fer {
    color: #7d8585;
    font-family: 'Poppins';
    margin-bottom: 5px;
}

.notes {
    font-size: 20px;
    font-family: 'Poppins';
    color: #a57c52;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #b7b1b1;
}

.inspiration-tert {
    margin-top: 40px;
}

.contact-us {
    background: #f0ece7;
}

.contact-us-info {
    text-align: left;
    font-family: 'Poppins';
    color: #886848;
}

p.get-in {
    margin-bottom: 5px;
    font-family: 'Poppins';
    font-size: 19px;
    color: #886848;
    font-weight: 400;
}

.get-in-touch {
    font-family: 'Poppins';
    font-style: italic;
}

.project-oberoi {
    margin-bottom: 5px;
}

.contact-fer-sales a {
    color: #707070;
    font-family: 'Poppins';
    font-size: 18px;
    text-decoration: none;
}

.contact-fer-sales a i {
    color: #886848;
}

p.disclaimer {
    font-family: 'Poppins';
    color: #575b5b;
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.desktop-banner {
    display: block;
}

.tab-banner {
    display: none;
}

.mobile-banner {
    display: none;
}

.contact-us-info {
    text-align: left;
    font-family: 'Poppins';
    color: #886848;
}

p.get-in {
    margin-bottom: 5px;
    font-family: 'Poppins';
    font-size: 23px !important;
    color: #886848;
    font-weight: 400;
}

.get-in-touch ul {
    padding-left: 15px;
}

.get-in-touch ul li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #000;
}

.get-in-touch ul li a {
    color: #000;
    text-decoration: none;
}

.contact-us-info h2 {
    font-size: 27px;
}

.contact-fer-sales p {
    font-size: 17px;
    font-family: 'Poppins';
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #000;
}

.refining-section-information {
    font-family: 'Poppins';
}
.auto-popup-right {
    font-family: 'Poppins';
}
.btn {
    background: #a66b3a;
    color: #fff;
    font-family: 'Poppins';
    text-transform: uppercase;
}
@media only screen and (max-width: 1295px) {
    .menu ul li a {
        font-size: 13px;
    }

    .oberoi-about-title h2 {
        font-size: 34px;
    }

    .oberoi-about-para p {
        font-size: 15px;
    }

    .oberoi-structure-inn h3 {
        font-size: 25px;
    }

    .oberoi-structure-inn p {
        font-size: 13px;
    }

    .read-more {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1199px) {
    .comma-img {
        max-width: 70px;
    }

    .chairman-info-comma p {
        font-size: 16px;
    }

    .refining-section-information h2 {
        font-size: 35px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .sustable-fer-section-info {
        padding: 72px 40px;
        width: 343px !important;
        height: 318px !important;
    }
}

@media only screen and (max-width: 991px) {
    .button_container {
        position: absolute;
        top: 50%;
        right: 0;
        height: 29px;
        width: 35px;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.25s ease;
        transform: translateY(-50%);
    }

    .button_container span {
        background: #071c35;
        border: none;
        height: 3px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.35s ease;
        cursor: pointer;
        border-radius: 31px;
    }

    .overlay {
        position: fixed;
        background: #fff;
        top: 62px;
        left: 0;
        width: 100%;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
        max-height: 0;
        -webkit-transition: max-height .3s, -webkit-transform .3s;
        transition: max-height .3s, -webkit-transform .3s;
        -o-transition: max-height .3s, transform .3s;
        transition: max-height .3s, transform .3s;
        transition: max-height .3s, transform .3s, -webkit-transform .3s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
        overflow: auto;
    }

    .overlay.open {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
        max-height: 100vh;
    }

    .overlay ul {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        display: inline-block;
        position: relative;
        width: 100%;
    }

    .overlay nav {
        text-align: center;
    }

    .overlay.open li {
        opacity: 1;
        border-bottom: 1px solid gray;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .button_container.active .bottom {
        transform: translateY(-11px) translateX(0) rotate(-45deg);
        background: #071c35;
    }

    .button_container.active .top {
        transform: translateY(11px) translateX(0) rotate(45deg);
        background: #071c35;
    }

    .button_container.active .middle {
        opacity: 0;
        background: #fff;
    }

    .button_container span:nth-of-type(2) {
        top: 11px;
        width: 61%;
        height: 3px;
        right: 0;
        left: auto;
    }

    .button_container span:nth-of-type(3) {
        top: 22px;
    }

    .banner-section-information h1 {
        font-size: 40px;
    }

    .container {
        max-width: 846px;
    }

    .sustable-fer-section-info {
        width: 315px !important;
        height: 315px !important;
    }

    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: block;
    }

    .mobile-banner {
        display: none;
    }

    .inspiration-media-section h2 {
        font-size: 28px;
        width: 70%;
    }

    .blog-info p {
        font-size: 15px;
    }

    .inspiration-info h2 {
        font-size: 27px;
        width: 66%;
    }

    .inspiration-tert {
        margin-top: 20px;
    }

    .have-question-info h2 {
        font-size: 36px;
    }

    .view-report {
        font-size: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .oberoi-about-title h2 {
        text-align: center;
    }

    .oberoi-reality-about {
        width: 100%;
    }

    .oberoi-structure-inn h3 {
        text-align: left;
    }

    .swiper-button-prev {
        left: 1%;
    }

    .swiper-button-next {
        right: 1%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        background: #ffffff;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        color: #6f4821;
    }

    .about-chairman-section {
        padding: 0 0 30px 0;
        position: relative;
        overflow: hidden;
    }

    .chairman-section-img {
        text-align: center;
    }

    .refine-fer-section {
        margin-top: 20px;
    }

    .catory-fer {
        margin-bottom: 20px;
    }

    .category-title {
        margin-top: 12px;
        font-size: 23px;
        color: #a57c52;
        font-weight: 500;
    }

    .refine-fer-section .btn {
        margin-top: 0px;
    }

    .read-more {
        font-size: 22px;
    }

    .sustable-section {
        background: url(../images/sustable-relert.webp);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        overflow: hidden;
        background-position: left;
    }

    .sustable-fer-section {
        width: 45%;
        margin: 0 auto;
        padding-top: 0;
    }

    .sustable-fer-section-info {
        width: 100% !important;
        height: 100% !important;
    }

    .have-question-info {
        text-align: center;
    }

    .have-question-info h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .chat-box {
        left: 85.5px;
    }

    .hhave-question-infort {
        text-align: center;
    }

    .inspiration-media-section {
        text-align: center;
    }

    .inspiration-media-section h2 {
        text-align: left;
    }

    .contact-us {
        padding: 0 0 30px 0;
    }

    .inspiration-media {
        padding: 20px 0;
    }

    .sustable-fer-section {
        width: 65%;
    }

    .oberoi-about-title h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 565px) {
    .desktop-banner {
        display: none;
    }

    .tab-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .banner-section-information h1 {
        font-size: 33px;
    }

    .banner-section {
        margin-top: -18px;
    }

    .oberoi-about-title h2 {
        font-size: 22px;
    }

    .oberoi-about-para p {
        font-size: 13px;
    }

    .oberoi-about-para p {
        font-size: 13px;
    }

    .oberoi-structure-points .swiper-slide-active .btn {
        background: #fff;
        padding: 5px;
        font-size: 14px;
    }

    .read-more {
        font-size: 17px;
    }

    .refining-section-information h2 {
        font-size: 27px;
    }

    .category-title {
        font-size: 19px;
    }

    .section-title h2 {
        font-size: 29px;
    }

    .sustable-fer-section-info {
        padding: 62px 32px;
    }

    .view-report {
        font-size: 30px;
    }

    .view-report p {
        margin-bottom: 10px;
    }

    .have-question-info {
        padding-left: 45px;
    }

    .chat-box {
        left: 2.5px;
    }

    .hhave-question-infort p {
        padding: 40px 0 0 0px;
    }

    .contact-fer-sales p {
        font-size: 14px;
    }

    .contact-fer-sales a {
        color: #343232;
        font-size: 15px;
    }

    p.disclaimer {
        margin-bottom: 0px;
    }

    .banner-information p a {
        font-size: 22px;
    }

}

@media only screen and (max-width: 420px) {
    .chairman-info-comma p {
        font-size: 13px;
    }

    .chairman-info h3 {
        font-size: 24px;
    }

    .refining-section-information h2 {
        font-size: 20px;
    }

    .refining-section-information p {
        font-size: 13px;
    }

    .category-title {
        font-size: 17px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-family: "Montserrat", sans-serif;
        font-size: 13px;
    }

    .sustable-fer-section {
        width: 90%;
        padding-top: 10px !important;

    }

    .sustable-fer-section-info {
        color: #3f3a3a !important;
    }

    .view-report p {
        font-size: 21px;
    }

    .views-reports p {
        font-size: 17px;
    }

    .have-question-info h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .have-question-section {
        padding: 0px 0 0 0;
    }

    .padding-space-extra {
        padding: 30px 0;
    }

    .chat-box {
        width: 111px;
        height: 111px;
        font-size: 30px;
    }

    .hhave-question-infort p {
        padding: 20px 0 0 0px;
        font-size: 20px;
    }

    .inspiration-inter-section {
        padding-left: 7px;
    }

    .inspiration-media {
        padding: 20px 0 !important;
    }

    .inspiration-media-section h2 {
        font-size: 23px;
    }

    .inspiration-info h2 {
        font-size: 23px;
    }

    .notes {
        font-size: 17px;
    }

    .contact-us {
        padding: 0 0 30px 0 !important;
    }

    .contact-us-info h2 {
        font-size: 21px;
    }

    .contact-fer-sales p {
        font-size: 15px !important;
    }

    .banner-information p a {
        font-size: 19px;
    }

    .banner-section-information h1 {
        font-size: 27px;
    }

    p.get-in {
        font-size: 19px !important;
    }

    p.disclaimer {
        font-size: 14px;
    }
        .oberoi-structure-inn h3 {
        font-size: 21px;
    }
}