* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Poppins', sans-serif;
    --script-font: 'Allura', cursive;
    --primary: #0F2B5B;
    --secondary: #1D4E89;
    --accent: #D4A64A;
    --heading: #132238;
    --text: #5C6672;
    --white: #FFFFFF;
    --black: #111111;
    --bg: #F8F9FC;
    --border: #E6EAF0;
    --header-bg: #0F2B5B;
    --header-sticky: #0B2145;
    --shadow: 0 18px 45px rgba(15, 43, 91, .12);
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
    text-decoration: none;
}

p,
ul,
li {
    padding: 0;
    margin: 0;
}

body {
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

body,
p,
li,
a,
input,
textarea {
    font-family: var(--body-font);
    font-weight: 500;
}

/*==========================
        HEADER
==========================*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 222;
}

header .headermn {
    background: transparent;
    /* padding:10px 0; */
    transition: .4s;
}

header .container {
    max-width: 1320px;
}

/* header .navbar{
    min-height:80px;
} */

header .navbar-brand {
    width: 50px;
}

header .navbar-brand img {
    width: 100%;
}

/*=====================
Menu
=====================*/

header .navbar-nav {
    gap: 42px;
}

header .nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: .5px;
    position: relative;
    padding: 0 !important;
    transition: .35s;
}

header .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: .35s;
    transform: translateX(-50%);
}

header .nav-link:hover,
header .nav-link.active {
    color: var(--secondary);
}

header .nav-link:hover::after,
header .nav-link.active::after {
    width: 100%;
}

/*=====================
Button
=====================*/
header .call-btn {
    margin-left: 35px;
}

header .call-btn li a {
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

header .call-btn li a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

header .call-btn li a span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: .35s;
}

header .call-btn li a:hover span {
    background: rgba(255, 255, 255, .25);
}

/*=====================
Sticky
=====================*/

.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--bg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    animation: header .4s ease;
}

@keyframes header {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}

/*=====================
Toggle
=====================*/

header .navbar-toggler {
    border: none;
    color: var(--primary);
    font-size: 28px;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

/*=====================
Offcanvas
=====================*/

header .offcanvas {
    background: var(--bg);
}

header .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

header .offcanvas-title img {
    width: 50px;
}

header .btn-close {
    filter: invert(0);
}

header .offcanvas .nav-link {
    color: var(--header-sticky);
    padding: 12px 0 !important;
}


/* footer */

/* footer {
  background-image: url(../images/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
} */
footer {
    overflow: hidden;
}

footer .footertop {
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg);
}

footer .footertop {
    background: var(--bg);
    overflow: hidden;
    padding: 30px 0;
}

footer .row {
    row-gap: 25px;
}

footer .footertop h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 800
}

footer .footertop .about img {
    width: 150px;
    margin-bottom: 5px;
}

footer .footertop .about p {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

footer .footertop ul {
    list-style: none;
}

footer .footertop ul li {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

footer .footertop ul li a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    transition: .3s;
    border-bottom: 1px solid transparent;
}

footer .footertop ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}


footer .footertop .addres li {
    margin-bottom: 10px;
}

footer .footertop .addres li i {
    color: var(--primary);
    font-size: 18px;
}

footer .footerboo {
    background-color: var(--bg);
    padding: 20px;
    border-top: 1px dashed var(--secondary);
    text-align: center;
}

footer .footerboo p {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
}


footer .footerboo a {
    color: var(--primary);
    font-weight: 600;
}

footer h4 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin: 20px 0 35px;
}



/*==============================
 Follow
===============================*/

footer .follow-us {

    margin-top: 20px;
    text-align: center;

}

footer .follow-us h4 {

    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;

}

footer .social-links {
    display: flex;
    gap: 12px;

}

footer .social-links a {

    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
    font-size: 17px;

}

footer .social-links a:nth-child(1) {

    background: #1877f2;

}

footer .social-links a:nth-child(2) {

    background: #e1306c;

}

footer .social-links a:nth-child(3) {

    background: #25d366;

}

footer .social-links a:hover {

    transform: translateY(-4px);

}

/* quickcontact */

.quickcontact {
    width: 45px;
    position: fixed;
    top: 65%;
    right: 15px;
    z-index: 102;
}





/* scroll-top css============================= */
#scrollTopBtn {
    position: fixed;
    bottom: 17px;
    right: 15px;
    width: 42px;
    height: 42px;
    background-color: var(--secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color .3s ease
}

#scrollTopBtn:hover {
    background: var(--primary);
    color: #fff;
}

#scrollTopBtn.show {
    display: flex
}


#enquiryModal .modal-dialog {
    max-width: 420px;
}

#enquiryModal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

#enquiryModal .modal-header {
    background: var(--primary);
    color: #fff;
    padding: 15px 20px;
    border: none;
}

#enquiryModal .modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

#enquiryModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#enquiryModal .modal-body {
    padding: 25px;
}

#enquiryModal .form-control {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: none;
    font-size: 15px;
}

#enquiryModal textarea.form-control {
    height: 110px;
    resize: none;
}

#enquiryModal .form-control:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow)
}

#enquiryModal .submit {
    height: 48px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: .3s;
    box-shadow: var(--shadow)
}

#enquiryModal .submit:hover {
    background: var(--secondary);
    box-shadow: var(--shadow)
}




#gallery {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

#gallery .section-title {
    margin-bottom: 25px;
}

#gallery .section-title h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0px;
    color: var(--primary);
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#gallery .title-shape {
    width: 120px;
    margin-bottom: 15px;
}

/* Gallery */

#gallery .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 18px;
}

#gallery .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    transition: .6s;
}

#gallery .gallery-item:hover img {
    transform: scale(1.08);
}

/* ==========================
   Gallery Arrows
========================== */

#gallery .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

#gallery .owl-nav button {
    width: 58px;
    height: 58px;
    border-radius: 50% !important;
    background: var(--white) !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    font-size: 20px !important;
    transition: .35s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery .owl-nav button:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

#gallery .owl-nav button span {
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
}

#gallery .owl-dots {
    display: none;
}


#hero-banner {
    position: relative;
    background: url("../images/banner-new.png") center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 50px;
}

#hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 40%) 35%, rgb(255 255 255 / 25%) 60%, rgb(255 255 255 / 33%) 100%);
    z-index: 1;
}

#hero-banner .container {
    position: relative;
    z-index: 2;
}


/*=====================
LEFT CONTENT
======================*/

#hero-banner .hero-content {
    max-width: 650px;
}

#hero-banner .hero-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#hero-banner .hero-content h1 {
    font-family: var(--heading-font);
    font-size: 70px;
    line-height: .9;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

#hero-banner .hero-content h1 span {
    display: block;
    color: var(--accent);
}

#hero-banner .hero-content h3 {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

#hero-banner .hero-content p {
    color: #000;
    font-family: var(--script-font);
    font-size: 36px;
    line-height: 1.0;
    margin-bottom: 40px;
}

#hero-banner .hero-btns {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

#hero-banner .hero-btns a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

#hero-banner .btn-call {
    background: var(--primary);
    color: var(--white);
}

#hero-banner .btn-call:hover {
    background: var(--secondary);
}

#hero-banner .btn-visit {
    background: var(--accent);
    color: var(--white);
}

#hero-banner .btn-visit:hover {
    background: var(--primary);
}

#hero-banner .hero-rera{
    color:#000;
    font-size:15px;
    line-height:28px;
}

/*=====================
FORM
======================*/

#hero-banner .hero-form {
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
}

#hero-banner .hero-form h2 {
    color: var(--white);
    text-align: center;
    font-family: var(--heading-font);
    font-size: 30px;
    margin-bottom: 10px;
}

#hero-banner .hero-form p {
    color: #ddd;
    text-align: center;
    margin-bottom: 15px;
}

#hero-banner .form-control {
    height: 45px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    border-radius: 10px;
    box-shadow: none;
    padding: 15px 18px;
}

#hero-banner textarea.form-control {
    height: 60px;
    resize: none;
}

#hero-banner .form-control::placeholder {
    color: #ddd;
}

#hero-banner .form-control:focus {
    background: rgba(255, 255, 255, .12);
    border-color: var(--accent);
    color: var(--white);
}

#hero-banner .submit-btn {
    display: inline-flex;
    border: none;
    background: var(--accent);
    color: var(--white);
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: .4s;
}

#hero-banner .submit-btn:hover {
    background: var(--secondary);
}


/* hero-higlights */

#hero-highlights {
    position: relative;
    margin-top: -30px;
    z-index: 20;
}

#hero-highlights .highlights-box {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    border: 1px solid #ececec;
}

#hero-highlights .highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 20px;
    border-right: 1px solid #e6e6e6;
    transition: .35s;
    height: 100%;
}

#hero-highlights .highlight-item:hover {
    background: #faf8f6;
    transform: translateY(-3px);
}

#hero-highlights .highlight-item img {
    width: 42px;
}

#hero-highlights .highlight-item h4 {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    color: var(--heading);
    font-family: var(--body-font);
    font-weight: 600;
}


/* about  */

#about-project {
    padding: 50px 0;
    background: var(--white);
    overflow: hidden;
}

#about-project .about-content {
    padding-right: 40px;
}

#about-project .title-shape {
    width: 120px;
    margin-bottom: 20px;
}


#about-project h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0px;
    color: var(--primary);
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#about-project p {
    color: var(--text);
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 18px;
}

#about-project .theme-btn {
    display: inline-block;
    margin-top: 15px;
    background: var(--primary);
    color: var(--white);
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

#about-project .theme-btn:hover {
    background: var(--secondary);
}

#about-project .about-video {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

#about-project .about-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/about-bg.jpg") center center/cover no-repeat;
    opacity: 0.4;
    /* Opacity yahan control karo */
    z-index: 1;
}

#about-project .about-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    /* Optional dark overlay */
    z-index: 2;
}

#about-project .about-video video {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

#about-project .about-video video {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
}


/* project-highlights */


#project-highlights {
    padding: 50px 0;
    background: var(--bg);
}

#project-highlights .section-heading {
    margin-bottom: 30px;
}

#project-highlights .section-heading h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0px;
    color: var(--primary);
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#project-highlights .section-heading img {
    width: 120px;
}

#project-highlights .highlight-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 10px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

#project-highlights .highlight-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

#project-highlights .highlight-box img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 20px;
}

#project-highlights .highlight-box h4 {
    margin: 0;
    color: var(--heading);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}





#world-amenities {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px 0;
    position: relative;
}

#world-amenities .section-title {
    margin-bottom: 30px;
}

#world-amenities .section-title h2 {
    color: var(--white);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#world-amenities .section-title img {
    width: 120px;
}

#world-amenities .amenity-box {
    text-align: center;
    transition: .35s;
    height: 100%;
}

#world-amenities .amenity-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: .35s;
}

#world-amenities .amenity-box h4 {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

#world-amenities .amenity-box:hover {
    transform: translateY(-8px);
}

#world-amenities .amenity-box:hover img {
    transform: scale(1.1);
}


#floor-plan {
    padding: 50px 0;
    background: var(--bg);
    overflow: hidden;
}

#floor-plan .floor-content {
    padding-right: 30px;
}

#floor-plan .sub-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 0px;
    color: var(--primary);
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#floor-plan .title-shape {
    width: 120px;
    margin-bottom: 15px;
}

#floor-plan h3 {
    font-size: 24px;
    color: var(--heading);
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin-bottom: 15px;
}

#floor-plan p {
    color: var(--text);
    line-height: 32px;
    font-size: 17px;
    margin-bottom: 20px;
}

#floor-plan .download-btn {
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

#floor-plan .download-btn:hover {
    background: var(--accent);
}

#floor-plan .download-btn i {
    color: #f5b633;
    font-size: 18px;
}

#floor-plan .download-btn:hover i {
    color: #fff;
}

#floor-plan .floor-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    padding: 10px;
}

#floor-plan .floor-image img {
    width: 100%;
    transition: .5s;
}

#floor-plan .floor-image:hover img {
    transform: scale(1.02);
}

/* Responsive

@media(max-width:991px){

#floor-plan{
    padding:80px 0;
}

#floor-plan .floor-content{
    padding-right:0;
    text-align:center;
}

#floor-plan .sub-title{
    font-size:36px;
}

#floor-plan h3{
    font-size:24px;
}

}

@media(max-width:767px){

#floor-plan .sub-title{
    font-size:30px;
}

#floor-plan h3{
    font-size:20px;
}

#floor-plan p{
    font-size:16px;
    line-height:28px;
}

#floor-plan .download-btn{
    padding:14px 28px;
}

} */

/*==========================
TESTIMONIALS
==========================*/

#testimonials {
    padding: 50px 0;
    background: linear-gradient(135deg, #08254f, #0d356d);
    position: relative;
    overflow: hidden;
}

#testimonials .section-title {
    margin-bottom: 30px;
}

#testimonials .section-title h2 {
    color: var(--white);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

#testimonials .title-shape {
    width: 120px;
}

/*==========================
BOX
==========================*/

#testimonials .testimonial-box {
    position: relative;
    padding: 20px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

#testimonials .owl-item:last-child .testimonial-box {
    border-right: none;
}

#testimonials .quote {
    color: #d4a74b;
    font-size: 28px;
    margin-bottom: 18px;
    display: inline-block;
}

/*==========================
PARAGRAPH
==========================*/

#testimonials .testimonial-box p {
    color: var(--white);
    font-size: 17px;
    line-height: 32px;
    height: 140px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 25px;
}

/* Scrollbar */

#testimonials .testimonial-box p::-webkit-scrollbar {
    width: 6px;
}

#testimonials .testimonial-box p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
}

#testimonials .testimonial-box p::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 20px;
}

#testimonials .testimonial-box p::-webkit-scrollbar-thumb:hover {
    background: #d4a74b;
}

#testimonials .testimonial-box p {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255, 255, 255, .08);
}

/*==========================
NAME
==========================*/

#testimonials .testimonial-box h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 0;
}

/*==========================
DOTS
==========================*/

#testimonials .owl-dots {
    margin-top: 35px;
    text-align: center;
}

#testimonials .owl-dot {
    width: 13px;
    height: 13px;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid var(--white) !important;
    background: transparent !important;
    transition: .35s;
}

#testimonials .owl-dot.active {
    background: #d4a74b !important;
    border-color: #d4a74b !important;
}

#testimonials .owl-dot:hover {
    background: #d4a74b !important;
    border-color: #d4a74b !important;
}

/*==========================
ARROWS
==========================*/

#testimonials .owl-nav {
    display: none;
}


/*=========================
WHY CHOOSE
=========================*/

#why-choose {
    padding: 40px 0;
    background: var(--white);
}

#why-choose .section-title {
    margin-bottom: 30px;
}

#why-choose .section-title h2 {
    font-size: 50px;
    line-height: 1;
    color: var(--primary);
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin-bottom: 0px;
}

#why-choose .title-shape {
    width: 120px;
}

/*=========================
BOX
=========================*/

#why-choose .choose-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

#why-choose .choose-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

#why-choose .choose-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 22px;
    transition: .35s;
}

#why-choose .choose-box:hover img {
    transform: scale(1.1);
}

#why-choose .choose-box h4 {
    font-size: 24px;
    color: var(--heading);
    font-family: var(--heading-font);
    margin-bottom: 15px;
    line-height: 34px;
}

#why-choose .choose-box p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 28px;
}


/*==========================
LOCATION ADVANTAGE
==========================*/

#location-advantage {
    padding: 50px 0;
    background: var(--bg);
}

#location-advantage .section-title {
    margin-bottom: 30px;
}

#location-advantage .section-title h2 {
    font-size: 48px;
    color: var(--primary);
    font-family: var(--heading-font);
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 1;
}

#location-advantage .title-shape {
    width: 120px;
}

/*==========================*/
#location-advantage .location-map {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 420px;
}

#location-advantage .location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

/*==========================*/

#location-advantage .location-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#location-advantage .location-content ul li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    font-size: 20px;
    color: var(--heading);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: .35s;
}

#location-advantage .location-content ul li:last-child {
    border-bottom: none;
}

#location-advantage .location-content ul li:hover {
    padding-left: 10px;
}

#location-advantage .location-content ul li span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff7ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#location-advantage .location-content ul li span img {
    width: 30px;
}

#location-advantage .location-content strong {
    color: var(--primary);
    font-weight: 700;
}



/*=========================
SITE VISIT CTA
=========================*/

#site-visit{
    padding:0;
    background:url("../images/3.jpg") center center/cover no-repeat;
    overflow:hidden;
    background-attachment:fixed;
    position:relative;
    padding:18px 30px;
}

#site-visit::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgb(8 32 72 / 87%);
}

#site-visit .row{
    position:relative;
    z-index:2;
}

#site-visit .visit-heading span{
    display:block;
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:4px;
}

#site-visit .visit-heading h2{
    color:#fff;
    font-family:var(--heading-font);
    font-size:40px;
    margin:0;
    text-transform:uppercase;
}

#site-visit .form-group{
    position:relative;
}

#site-visit .form-group i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:var(--primary);
    font-size:15px;
}

#site-visit .form-control{
    height:50px;
    border:none;
    border-radius:6px;
    padding-left:42px;
    box-shadow:none;
    font-size:15px;
}

#site-visit .form-control:focus{
    box-shadow:none;
    border:none;
}

#site-visit .submit-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:6px;
    background:#f4b126;
    color:#111;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    transition:.35s;
}

#site-visit .submit-btn:hover{
    background:var(--accent);
    color:#fff;
}



/*==============================
 Breadcrumb
===============================*/

#lp-breadcrumb {
  position: relative;
  padding: 150px 0 50px;
  background: url('../images/breadcrumb.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

#lp-breadcrumb .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 40%) 35%, rgb(255 255 255 / 25%) 60%, rgb(255 255 255 / 33%) 100%);
    z-index: 1;
}

/* Content */

#lp-breadcrumb .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb Box */

#lp-breadcrumb #lp-breadcrumb-box {
  display: inline-block;
  background: #fff;
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  margin-bottom: 15px;
}

/* Breadcrumb */

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb {
  margin: 0;
  align-items: center;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #000;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item a {
  color: #000000;
  text-decoration: none;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item.active {
  color: var(--primary);
  font-weight: 600;
}

#lp-breadcrumb #lp-breadcrumb-box i {
  color: var(--primary);
  margin-right: 8px;
}

/* Heading */

#lp-breadcrumb #lp-breadcrumb-content h2 {
  font-size: 48px;
    color:  var(--primary);
    font-weight: 900;
    margin-bottom: 12px;
    width: 100%;
}



   #lp-thankyou{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
   position: relative;
    padding: 50px 0;
    background: var(--white);
    overflow: hidden;;
}

#lp-thankyou .thankyou-wrapper{
    width:100%;
    max-width:1200px;
    margin:auto;
}

#lp-thankyou .thankyou-box{
    max-width:600px;
    margin:auto;
    background:#ffffff;
    padding:60px 40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

#lp-thankyou .thankyou-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background: var(--secondary);
    color:#fff;
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-weight:700;
}

#lp-thankyou h2{
    font-size: 42px;
    line-height: 1.2;
    margin: 5px 0 20px;
    color: #000;
    position: relative;
    font-weight: 600;
}

#lp-thankyou p{
        font-size: 20px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
}

#lp-thankyou .thankyou-btn{

        display: block;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

#lp-thankyou .thankyou-btn:hover {
   transform: translateY(-3px);
    background: var(--primary);
}

#lp-thankyou .thankyou-btn i {
    transition: .35s;
}

#lp-thankyou .thankyou-btn:hover i {
  transform: translateX(6px);
}