@font-face {
  font-family: "Kepler Display";
  src: url("../fonts/KeplerStd-BoldScnDisp.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kepler Display";
  src: url("../fonts/KeplerStd-BoldScnItDisp.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Poppins weights you uploaded */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --main-color: #F77623;
  --secondary-color: #252324;
  --landmark-line:#D9D9D9;
  --accordion-line: #5C5C5C;
  --footer-line:#4E4E4E;
  --white: #ffffff;
  --black: #000000;
  --radius-10: 10px;
  --radius-5: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 125%;
  font-weight: 700;
  font-family: "Kepler Display", Georgia, "Times New Roman", serif;
}
p {
  line-height: 160%;
  font-size: 15px;
  color: var(--paragrapg-black);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a{font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;text-decoration: none;}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

#button_to_top {
  display: inline-block;
  background-color: var(--main-color);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#button_to_top img {
  width: 60%;
}

#button_to_top:hover {
  cursor: pointer;
  background-color: #333;
}
#button_to_top:active {
  background-color: #555;
}
#button_to_top.show {
  opacity: 1;
  visibility: visible;
}

.bg_btn{background: var(--main-color);padding: 10px 30px !important;color: var(--white);}


/*header*/
.navbar{background: rgba(66, 48, 19,0.5);}
.navbar-brand img{width: 120px;}
.navbar .nav-link{color: var(--white);}
ul.navbar-nav {gap: 22px;}
.navbar .nav-link.active{color: var(--main-color);}
.navbar .nav-link{font-size: 15px;}

.navbar-nav .nav-link.active {
  color: var(--main-color)!important;
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--main-color);
  margin: 5px auto 0;
}

/*Banner*/
.banner_all{position: relative;}
.banner_single{background-size: cover !important;width: 100%;height: 100vh;position: relative;background-attachment: fixed !important;}
.banner_single .container{height: 100%;position: relative;}
.banner_single .banner_caption{position: absolute;content: '';width: 100%;left: 0%;top: 50%;transform: translateY(-50%);}
.banner_single .banner_caption h1{color: var(--white);font-size: 70px;}
.banner_single .banner_caption .underline{width: 100%;height: 1px;background: var(--landmark-line);margin-bottom: 25px;}
.banner_single .banner_caption p{color: var(--white);width: 50%;}
.banner_caption_btn{display: flex;gap: 20px;}
.banner_caption_btn .vid_btn {border: 1px solid var(--white);}
.banner_caption_btn .vid_btn .btn_txt{display: flex;gap: 7px;align-items: center;color: var(--white);}
.banner_caption_btn a{padding: 10px 30px;}
.banner_caption_btn .vid_btn img{width: 20px !important;height: 20px !important;}
.modal-content {
  border-radius: 0;
}
video {
  max-height: 80vh;
  background: #000;
}



/*About sec*/

        .about-sec {
            padding: 80px 0;
            background-color: #ffffff;
        }
        
        .about-sec-content {
            margin-bottom: 60px;
        }
        
        .about-sec-left {
            padding-right: 30px;
        }
        
        .about-sec-left h2 {
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.3;
            color: #333;
            margin-bottom: 0;
        }
        
        .about-sec-right {
            padding-left: 30px;
        }

         .about-sec-right .big_text{font-size: 24px;}
        
        .about-sec-right p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 40px;
        }
        
        .features-row {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .feature-item {
            flex: 1;
            min-width: 250px;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--main-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        
        .feature-icon img {
            width: 32px;
            color: #ffffff;
        }
        
        .feature-item h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 12px;
            color: #000;
            font-family: 'Georgia', serif;
        }
        
        .feature-item p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 0;
        }
        
        .about-sec-imgs {
            margin-top: 50px;
        }
        
        .about-sec-img-left,
        .about-sec-img-right {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            background-size: cover !important;
            background-position: center !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

.absolute_btn {
    position: fixed;
    right: -57px;
    top: 63%;
    transform: translateY(-50%) rotate(270deg);
    z-index: 99;
    transition: background-color 0.2s, opacity 0.2s, visibility 0.2s;
  opacity: 0;
  visibility: hidden;
}

.absolute_btn:active {
  background-color: #555;
}
.absolute_btn.show {
  opacity: 1;
  visibility: visible;
}
        



        /************Amistrad sec**************/

        .amistad-sec {
            background-color: var(--secondary-color);
            padding: 80px 0;
            color: #ffffff;
        }
        
        .amistad-header {
            margin-bottom: 50px;
        }
        
        .amistad-subtitle {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .amistad-title {
            font-size: 3rem;
            font-weight: 300;
            line-height: 1.2;
            color: #ffffff;
            font-family: 'Georgia', serif;
            max-width: 600px;
        }
        
        .amistad-hero-img {
            width: 100%;
            height: 450px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 40px;
            background-image: url('../images/15-3-HAZRA-AERIAL-VIEW-DAY-HORI.png');
            transition: opacity 0.3s ease-in-out;
        }
        
        .amistad-description {
            margin-bottom: 60px;
        }
        
        .amistad-description .row {
            row-gap: 30px;
        }
        
        .amistad-description p {
            font-size: 1rem;
            line-height: 1.8;
            color: #e0e0e0;
            margin: 0;
        }
        
        .amistad-gallery {
            position: relative;
            padding-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .amistad-gallery .line{width: 20%;height: 1px;background: var(--accordion-line);}
        
        .gallery-images {
            display: flex;
            gap: 20px;
            overflow: hidden;
            scroll-behavior: smooth;
            width: 65%;
        }
        
        .gallery-item {
            flex: 0 0 calc(33.333% - 14px);
            height: 200px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            position: relative;
            opacity: 0.1;
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
        }
        
        .gallery-item.active {
            border-color: var(--main-color);
            transform: scale(1.05);
            opacity: 1;
        }
        
        .gallery-item.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 107, 53, 0.2);
            border-radius: 5px;
        }
        
        .gallery-item-1 {
            background-image: url('../images/15-3-HAZRA-AERIAL-VIEW-DAY.jpg');
        }
        
        .gallery-item-2 {
            background-image: url('../images/15-3-HAZRA-ROAD-DAY-VIEW.jpg');
        }
        
        .gallery-item-3 {
            background-image: url('../images/15-3-HAZRA-ROAD-REAR-SIDE-VIEW-DAY.jpg');
        }
        
        .gallery-controls {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            width: 10%;
        }
        
        .gallery-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ffffff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
        }
        

        
        
        .gallery-btn img {
            width: 20px;
            transition: color 0.3s ease;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .amistad-title {
                font-size: 2.5rem;
            }
            
            .amistad-hero-img {
                height: 350px;
            }
            
            .gallery-item {
                flex: 0 0 calc(50% - 10px);
            }
        }
        
        @media (max-width: 767px) {
            .amistad-sec {
                padding: 50px 0;
            }
            
            .amistad-title {
                font-size: 2rem;
            }
            
            .amistad-hero-img {
                height: 280px;
            }
            
            .gallery-item {
                flex: 0 0 100%;
                height: 250px;
            }
            
            .gallery-controls {
                justify-content: center;
            }
        }





        .floorplan-sec {
            padding: 80px 0;
            background-color: #ffffff;
        }
        
        .floorplan-intro {
            margin-bottom: 60px;
        }
        
        .floorplan-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 0;
        }
        
        .floorplan-intro strong {
            font-weight: 600;
            color: #000;
        }
        
        .floorplan-stats {
            margin-bottom: 60px;
        }
        
        .stat-item {
            margin-bottom: 30px;
            position: relative;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--main-color);
            z-index: 1;
        }
        .stat-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--landmark-line);
        }
        
        .stat-number {
            font-size: 31px;
            font-weight: 300;
            color: var(--main-color);
            line-height: 1;
            padding: 20px 0px 10px 0px;
            font-family: "Kepler Display";
        }
        
        .stat-title {
            font-size: 18px;
            font-weight: 600;
            color: #000;
            margin-bottom: 12px;
            font-family: "Poppins";
        }
        
        .stat-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-left: 5px;
            font-weight: 400;
        }
        
        .stat-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #555;
            margin: 0;
        }
        
        .floorplan-image {
            width: 100%;
            background-color: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .floorplan-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .floor_plans_heading{font-size: 20px !important;}


        /*Specication sec*/

        .specifications-sec {
            background-color: var(--secondary-color);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        

        
        .specifications-sec .container {
            position: relative;
            z-index: 1;
        }
        
        .specs-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .specs-header p {
            font-size: 22px;
            line-height: 1.8;
            color: #d0d0d0;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .specs-header strong {
            color: #ffffff;
            font-weight: 600;
        }
        
        .specs-content {
            margin-top: 50px;
        }
        
        .specs-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
        }
        
        .specs-image {
            width: 100%;
            height: 100%;
            background-image: url('../images/15-3-HAZRA-ROAD-NIGHT-VIEW.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            position: relative;
        }
        
        .specs-btn {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--main-color);
            color: #ffffff;
            padding: 15px 65px;
            font-size: 16px;
            font-weight: 500;
            border: none;
            transition: all 0.3s ease;
            border-radius: var(--radius-5);
        }
        


        
        /* Accordion Styles */
        .specs-accordion {
            padding-left: 30px;
        }
        
        .accordion {
            --bs-accordion-bg: transparent;
            --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
        }
        
        .accordion-item {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 0;
        }
        
        
        .accordion-button {
            background-color: transparent;
            color: #d0d0d0;
            font-size: 18px;
            padding: 15px 50px 15px 0;
            border: none;
            box-shadow: none !important;
            position: relative;
            font-weight: 500;
              font-family: "Poppins";
        }
        .accordion .accordion-item:first-child .accordion-button{padding-top: 0px;}
        
        .accordion-button:not(.collapsed) {
            background-color: transparent;
            color: #ffffff;
            box-shadow: none;
        }
        
        .accordion-button::after {
            display: none;
        }
        
        .accordion-button .arrow-icon {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) .arrow-icon {
            background-color: var(--main-color);
        }
        
        .accordion-button .arrow-icon img {
            width: 14px;
            transition: all 0.3s ease;
        }
         .accordion-button .arrow-icon .white_arrow{
            display: none;
        }

        .accordion-button:not(.collapsed) .arrow-icon .white_arrow{display: block;}
        .accordion-button:not(.collapsed) .arrow-icon .orange_arrow{display: none;}
        
        .accordion-button:not(.collapsed) .arrow-icon i {
            color: #ffffff;
            transform: rotate(180deg);
        }
        
        .accordion-body {
            padding: 0 50px 25px 0;
            color: #e5e5e5;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .accordion-collapse {
            border: none;
        }

        /*Location sec*/

        .location-sec {
            padding: 80px 0;
            background-size: cover !important;
            width: 100%;
            height: 100%;

        }
        
        .location-intro {
            margin-bottom: 60px;
        }
        
        .location-intro p {
            font-size: 1.8rem;
            line-height: 1.6;
            color: #333;
            margin: 0;
            font-weight: 300;
        }
        
        .location-intro strong {
            font-weight: 600;
            color: #000;
        }
        
        
        .location-list-wrapper {
            flex: 1;
        }
        
        .location-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 45px;
}
        
        .location-category {
            position: relative;
            display: flex;
            padding-bottom: 35px;
        }

        .location-category:before{position: absolute;content: '';width: 80px;height: 2px;background: var(--main-color);left: 0%;bottom: 0%;z-index: 1;}
        .location-category:after{position: absolute;content: '';width: 100%;height: 2px;background: var(--landmark-line);left: 0%;bottom: 0%;}

        .location-category-left{width: 16%;}
        .location-category-right{width: 84%;}
        
        .category-number {
            font-size: 19px;
            color: var(--main-color);
            font-weight: 500;
            margin-bottom: 5px;
            font-family: "Poppins";
        }
        
        .category-title {
            font-size: 19px;
            font-weight: 500;
            color: var(--main-color);
            margin-bottom: 5px;
            display: inline-block;
            font-family: "Poppins";
        }
        
        .category-underline {
            width: 60px;
            height: 2px;
            background-color: var(--main-color);
            margin-bottom: 15px;
        }
        
        .category-items {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .category-items li {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
            position: relative;
        }
        
        .location-map-wrapper {
            flex: 0 0 45%;
            position: relative;
        }
        
        .location-map{display: flex;justify-content: center;align-items: center;}
        .location-map img {
            width: 90%;
            height: auto;
            display: block;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .location-intro p {
                font-size: 1.5rem;
            }
            
            .location-categories {
                gap: 40px 50px;
            }
        }
        
        @media (max-width: 991px) {
            .location-content {
                flex-direction: column;
                gap: 50px;
            }
            
            .location-map-wrapper {
                flex: 1;
                width: 100%;
            }
            
            .location-intro p {
                font-size: 1.3rem;
            }
            
            .location-categories {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .location-sec {
                padding: 50px 0;
            }
            
            .location-intro {
                margin-bottom: 40px;
            }
            
            .location-intro p {
                font-size: 1.1rem;
            }
            
            .category-title {
                font-size: 1.3rem;
            }
            
            .category-items li {
                font-size: 0.95rem;
            }
        }




                /* CTA Section */
        .cta-sec {
            background-color: #252324;
            
        }
        .cta-sec .container{
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cta-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        
        .cta-text h2 {
            font-size: 32px;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 15px;
            font-family: 'Georgia', serif;
        }
        
        .cta-text p {
            font-size: 1rem;
            color: #b0b0b0;
            margin: 0;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            flex-shrink: 0;
        }
        
        .btn-primary-orange {
            background-color: var(--main-color);
            color: #ffffff;
            padding: 10px 30px;
            font-size: 1rem;
            font-weight: 500;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-orange:hover {
            background-color: var(--main-color);
            color: #ffffff;
        }
        
        .btn-outline-white {
            background-color: transparent;
            color: #ffffff;
            padding: 10px 30px;
            font-size: 1rem;
            font-weight: 500;
            border: 2px solid #ffffff;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-white:hover {
            background-color: #ffffff;
            color: #2a2a2a;
        }
        
        /* Footer Section */
        .footer-sec {
            background-color: #252324;
            padding: 60px 0 30px;
            position: relative;
        }

        .footer-sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  left: 0;
  bottom: 0;

  background:
    linear-gradient(
      rgba(37, 35, 36, 1),
      rgba(37, 35, 36, 0)
    ),
    url("../images/footer_overlay.png") no-repeat center;

  background-size: cover, cover;
}

        
        .footer-content {
            margin-bottom: 40px;
            position: relative;
        }
        
        /* Company Info */
        .footer-company {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 60px;
            width: auto;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .brand-name {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--main-color);
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo-text .brand-suffix {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--main-color);
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-tagline {
            font-size: 0.95rem;
            color: #b0b0b0;
            line-height: 1.7;
            margin-top: 10px;
        }
        
        /* Address */
        .footer-address h4 {
            font-size: 22px;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 0px;
            font-family: "Poppins";
        }
        
        .footer-address p {
            font-size: 0.95rem;
            color: #b0b0b0;
            line-height: 1.8;
            margin: 0;
        }
        
        /* Contact */
        .footer-contact h4 {
           font-size: 22px;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 0px;
            font-family: "Poppins";
        }

        .footer-contact .underline,.footer-address .underline{position: relative;width: 100%;padding: 20px 0px;}
         .footer-contact .underline:before,.footer-address .underline:before{position: absolute;content: '';width: 100px;height: 2px;background: var(--main-color);z-index: 1;left: 0%;top: 50%;transform: translateY(-50%);}
         .footer-contact .underline:after,.footer-address .underline:after{position: absolute;content: '';width: 100%;height: 2px;background: var(--footer-line);left: 0%;top: 50%;transform: translateY(-50%);}
        
        .contact-phone,
        .contact-email {
            font-size: 0.95rem;
            color: #b0b0b0;
            margin-bottom: 15px;
      }
        
        .contact-phone a,
        .contact-email a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-phone a:hover,
        .contact-email a:hover {
            color: var(--main-color);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
       .social-icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: block;
}
        
        .social-icon:hover {
            transform: translateY(-3px);
        }


        
        
        /* Copyright */
        .footer-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-copyright p {
            font-size: 0.9rem;
            color: #808080;
            margin: 0;
            z-index: 99;
    position: relative;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991px) {
            .cta-content {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .cta-text h2 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .footer-company {
                align-items: center;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
        
        @media (max-width: 767px) {

            .absolute_btn {right:-42px}
            .cta-sec {
                padding: 40px 0;
            }
            
            .cta-text h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                width: 100%;
                flex-direction: column;
            }
            
            .btn-primary-orange,
            .btn-outline-white {
                width: 100%;
                text-align: center;
            }
            
            .footer-sec {
                padding: 40px 0 20px;
            }
            
            .logo-text .brand-name,
            .logo-text .brand-suffix {
                font-size: 2rem;
            }
        }
		
.modal-footer .btn.btn-primary{background-color:#F77623; border:none; padding:1rem; 
border-radius:0;}		
.modal-title{font-size:30px;}     




  /* ============================================================
     ENQUIRY MODAL — paste this block into your style.css
     ============================================================ */
  .enquiry-modal .modal-dialog{max-width:880px;}
  .enquiry-modal .modal-content{
    border:none;border-radius:0;overflow:hidden;background:var(--white);
    box-shadow:0 30px 80px rgba(0,0,0,.45);
  }

  .enquiry-grid{display:grid;grid-template-columns:0.85fr 1fr;}

  /* ---- left visual panel ---- */
  .enquiry-visual{
    position:relative;min-height:520px;
    background-size:cover !important;
  }
  .enquiry-visual-overlay{
    position:absolute;left:0;bottom:0;width:100%;padding:38px 34px;color:#fff;
  }
  .enquiry-eyebrow{
    display:inline-block;font-size:11px;letter-spacing:3px;text-transform:uppercase;
    color:var(--main-color);font-weight:600;margin-bottom:14px;
  }
  .enquiry-visual-overlay h3{
    font-family:"Kepler Display",Georgia,serif;font-weight:700;
    font-size:30px;line-height:1.2;color:#fff;margin:0 0 10px;
  }
  .enquiry-visual-overlay p{font-size:13.5px;color:#d9d9d9;margin:0;}
  .enquiry-visual-overlay .v-line{width:48px;height:2px;background:var(--main-color);margin:0 0 18px;}

  /* ---- right form panel ---- */
  .enquiry-form-wrap{padding:44px 40px 40px;position:relative;}

  .enquiry-close{
    position:absolute;top:18px;right:18px;z-index:5;
    width:38px;height:38px;border-radius:50%;border:none;
    background:rgba(255,255,255,.9);color:var(--secondary-color);
    display:flex;align-items:center;justify-content:center;
    font-size:15px;cursor:pointer;transition:.25s ease;
  }
  .enquiry-close:hover{background:var(--main-color);color:#fff;transform:rotate(90deg);}

  .enquiry-head{margin-bottom:26px;}
  .enquiry-head .modal-title{
    font-family:"Kepler Display",Georgia,serif;font-weight:700;
    font-size:30px;color:var(--secondary-color);line-height:1.15;margin:0;
  }
  .enquiry-head-line{display:block;width:54px;height:2px;background:var(--main-color);margin:14px 0;}
  .enquiry-head p{font-size:13.5px;color:#777;margin:0;line-height:1.6;}

  .enquiry-field{margin-bottom:20px;position:relative;}
  .enquiry-field label{
    display:block;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;
    color:#9a9a9a;font-weight:500;margin-bottom:6px;
  }
  .enquiry-field input,
  .enquiry-field select{
    width:100%;border:none;border-bottom:1px solid var(--landmark-line);
    background:transparent;padding:9px 0;font-family:"Poppins",sans-serif;
    font-size:14.5px;color:var(--secondary-color);border-radius:0;
    transition:border-color .25s ease;
  }
  .enquiry-field input::placeholder{color:#bcbcbc;}
  .enquiry-field input:focus,
  .enquiry-field select:focus{
    outline:none;box-shadow:none;border-bottom-color:var(--main-color);
  }
  /* custom select arrow */
  .enquiry-field select{
    appearance:none;-webkit-appearance:none;cursor:pointer;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F77623' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat;background-position:right 2px center;padding-right:24px;
  }
  .enquiry-field select option{color:var(--secondary-color);}

  .enquiry-submit{
    width:100%;background:var(--main-color);color:#fff;border:none;border-radius:0;
    padding:15px;font-size:15px;font-weight:500;letter-spacing:.5px;
    margin-top:8px;cursor:pointer;transition:.25s ease;
  }
  .enquiry-submit:hover{background:#e2641a;}

  /* ---- responsive ---- */
  @media (max-width:767px){
    .enquiry-grid{grid-template-columns:1fr;}
    .enquiry-visual{display:none;}
    .enquiry-form-wrap{padding:50px 26px 34px;}
  }
  /* ============================================================ */






  .brochure-modal .modal-dialog{max-width:880px;}
.brochure-modal .modal-content{
  border:none;border-radius:0;overflow:hidden;background:var(--white);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.brochure-grid{display:grid;grid-template-columns:0.85fr 1fr;}

.brochure-visual{
  position:relative;min-height:520px;
  background-size:cover !important;
}
.brochure-visual-overlay{
  position:absolute;left:0;bottom:0;width:100%;padding:38px 34px;color:#fff;
}
.brochure-eyebrow{
  display:inline-block;font-size:11px;letter-spacing:3px;text-transform:uppercase;
  color:var(--main-color);font-weight:600;margin-bottom:14px;
}
.brochure-visual-overlay h3{
  font-family:"Kepler Display",Georgia,serif;font-weight:700;
  font-size:30px;line-height:1.2;color:#fff;margin:0 0 10px;
}
.brochure-visual-overlay p{font-size:13.5px;color:#d9d9d9;margin:0;}
.brochure-visual-overlay .v-line{width:48px;height:2px;background:var(--main-color);margin:0 0 18px;}

.brochure-form-wrap{padding:44px 40px 40px;position:relative;}

.brochure-close{
  position:absolute;top:18px;right:18px;z-index:5;
  width:38px;height:38px;border-radius:50%;border:none;
  background:rgba(255,255,255,.9);color:var(--secondary-color);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;cursor:pointer;transition:.25s ease;
}
.brochure-close:hover{background:var(--main-color);color:#fff;transform:rotate(90deg);}

.brochure-head{margin-bottom:26px;}
.brochure-head .modal-title{
  font-family:"Kepler Display",Georgia,serif;font-weight:700;
  font-size:30px;color:var(--secondary-color);line-height:1.15;margin:0;
}
.brochure-head-line{display:block;width:54px;height:2px;background:var(--main-color);margin:14px 0;}
.brochure-head p{font-size:13.5px;color:#777;margin:0;line-height:1.6;}

.brochure-field{margin-bottom:20px;position:relative;}
.brochure-field label{
  display:block;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;
  color:#9a9a9a;font-weight:500;margin-bottom:6px;
}
.brochure-field input{
  width:100%;border:none;border-bottom:1px solid var(--landmark-line);
  background:transparent;padding:9px 0;font-family:"Poppins",sans-serif;
  font-size:14.5px;color:var(--secondary-color);border-radius:0;
  transition:border-color .25s ease;
}
.brochure-field input::placeholder{color:#bcbcbc;}
.brochure-field input:focus{
  outline:none;box-shadow:none;border-bottom-color:var(--main-color);
}

.brochure-submit{
  width:100%;background:var(--main-color);color:#fff;border:none;border-radius:0;
  padding:15px;font-size:15px;font-weight:500;letter-spacing:.5px;
  margin-top:8px;cursor:pointer;transition:.25s ease;
}
.brochure-submit:hover{background:#e2641a;}

 .brochure-field select{
    width:100%;border:none;border-bottom:1px solid var(--landmark-line);
    background:transparent;padding:9px 0;font-family:"Poppins",sans-serif;
    font-size:14.5px;color:var(--secondary-color);border-radius:0;
    transition:border-color .25s ease;
  }
/* custom select arrow */
  .brochure-field select{
    appearance:none;-webkit-appearance:none;cursor:pointer;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F77623' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat;background-position:right 2px center;padding-right:24px;
  }
  .brochure-field select option{color:var(--secondary-color);}

  .brochure-field select:focus{
    outline:none;box-shadow:none;border-bottom-color:var(--main-color);
  }



@media (max-width:767px){
  .brochure-grid{grid-template-columns:1fr;}
  .brochure-visual{display:none;}
  .brochure-form-wrap{padding:50px 26px 34px;}
}
        
     
  
  
        
        



