

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:"Lato", sans-serif;
  --heading-font:"Lora", serif;
  --nav-font:"Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ca9833; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ca9833; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ca9833; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
.container{
  max-width: 1500px;
}
@media (max-width: 768px) {
  .container{
    max-width: 720px !important;
  }
}
@media (max-width: 576px) {
  .container{
    max-width: 540px !important;
  }
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  font-weight: normal;

}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
  font-weight: normal;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: normal;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /* max-height: 32px; */
  margin-right: 8px;
  filter: brightness(0)invert(1);
}

.header .logo i {
  font-size: 24px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    /* inset: 60px 20px 20px 20px; */
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
    right: 0px;
    bottom: 0px;
    top: 0px;
    border-radius: 0px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Image Zoomer
--------------------------------------------------------------*/
.image-zoomer {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.image-zoomer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-zoomer:hover img {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  color: #696969;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color)
}

.footer h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .footer-contact p a{
  color: var(--nav-color);
}
.footer .footer-contact p a:hover{
  color: var(--accent-color);
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 100px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}
@media (max-width: 992px) {
  section, .section {
    padding: 60px 0;
  }
}
@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 30px;
  position: relative;
}
.section-title p {
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title h2 {
  font-size: 36px;
  position: relative;
}
.body-description{
  font-size: 18px;
}
@media (max-width: 992px) {
  .section-title h2 {
    font-size: 28px;
    position: relative;
  }
  .body-description{
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Global Section button
--------------------------------------------------------------*/
.theme_btn{
  padding-top: 20px;
}
.theme_btn a {
  background-color: #000;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-width: .0625rem;
  -webkit-border-radius: 2.5rem;
  border-radius: 2.5rem;
  border-style: solid;
  border-color: #000;
}

.theme_btn a:after {
  line-height: 1;
  text-transform: none;
  content: '\F138';
  font-family: bootstrap-icons;
  width: 0;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.theme_btn a:hover:after {
  width: 1.25rem;
  opacity: 1;
  margin-top: 2px;
  margin-left: 10px;
}

.theme_btn a.download-icon:after{
  content: '\F30A';
}

.theme_btn a.mail-icon:after{
  content: '\F32F';
}

@media (max-width: 768px) {
  .theme_btn a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media (max-width: 992px) {

}
@media (min-width: 769px) and (max-width: 1024px) {

}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero .hero-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
}

.hero .hero-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 60%) 100%);
  z-index: 2;
}

.hero .hero-container .container {
  z-index: 3;
}

.hero .hero-container .hero-content {
  padding-right: 30px;
}
.hero .hero-container .hero-content img{
  filter:brightness(0) invert(1);
  width: 150px;
}
.hero .hero-container .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero .hero-container .hero-content p {
  margin-bottom: 35px;
  color: #fff;
  margin-right: 10px;
}
.hero .hero-container .hero-content p span{
  margin-right: 10px;
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content{
    padding-right: 0px;
    text-align: center;
  }
  .hero .hero-container .hero-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero .hero-container .hero-content h1 {
    font-size: 34px;
    text-align: left;
  }
  .hero .hero-container .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}



/*--------------------------------------------------------------
# Features and Amenities Section
--------------------------------------------------------------*/

.features .features-card {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features .feature-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.features .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.features .feature-image:hover img {
  transform: scale(1.05);
}
.features .feature-content {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
}
.features .feature-content .content-inner{
  padding: 3rem;
}
.features h3 {
  color: var(--heading-color);
  font-size: 28px;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.features p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .features .features-card {
    margin-bottom: 30px;
  }
  .features .feature-image, .features .feature-content {
      height: auto;
  }
  .features .feature-content .content-inner {
    padding: 2rem;
  }
  .features h3 {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .features .features-card {
    margin-bottom: 30px;
  }
  .features .feature-content .content-inner {
      padding: 2rem;
  }
  .features h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Masterplan Section
--------------------------------------------------------------*/
.theme_btn.theme_btn_border a{
  background-color: transparent;
  color: var(--heading-color);
}
.theme_btn.theme_btn_border a:hover{
  background-color: var(--heading-color);
  color: var(--nav-color);
}

.toggle-switch{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.toggle-switch li{
  font-size: 20px;
  padding-right: 10px;
}
.toggle-switch .form-switch .form-check-input{
  background-color:#c9c9c9;
  width: 60px;
  height: 34px;
}
.toggle-switch .form-switch .form-check-input,
.toggle-switch .form-switch .form-check-input:focus{
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle cx='8' cy='8' r='8' fill='currentColor'/%3e%3c/svg%3e");
  background-image: var(--bs-form-switch-bg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: 5px;
  border-color: transparent;
  box-shadow: none;
}
.toggle-switch .form-switch .form-check-input:checked{
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle cx='8' cy='8' r='8' fill='currentColor'/%3e%3c/svg%3e");
  background-image: var(--bs-form-switch-bg);
  background-position: 30px 3px;
}

.masterplan-2dlist .nav{
  background-color: var(--heading-color);
}
.masterplan-2dlist .nav button{
 
  color: var(--nav-color);
}
.masterplan-2dlist .nav button.active{
  background-color: transparent;
  color: var(--accent-color);
}
@media (max-width: 768px) {
  .toggle-switch{
    justify-content: flex-start;
  }
  .toggle-switch li{
    font-size: inherit;
  }
}
@media (max-width: 992px) {

}
@media (min-width: 769px) and (max-width: 1024px) {
  .toggle-switch{
    justify-content: flex-start;
  }
}

/*--------------------------------------------------------------
# Project Section
--------------------------------------------------------------*/
.project_card{

}
.project_card .card_img_inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.project_card .card_img_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project_card .card_img_inner:hover img {
  transform: scale(1.05);
}
.project_card .card_desc_inner{
  padding: 30px;
  background-color: var(--background-color);
}
.project_card .card_desc_inner h3{
  margin-bottom: 30px;
}
.project_card .card_desc_inner ul{
  list-style: none;
  padding-left: 0px;
}
.project_card .card_desc_inner ul li{
  display: inline-block;
  padding-right: 20px;
}
.project_card .card_desc_inner ul li img{
  width: 20px;
  height: 20px;
}

.sec-projects .swiper {
  width: 100%;
  height: 100%;
}

.sec-projects .swiper-slide {
  text-align: left;
  font-size: inherit;
}

.sec-projects .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cus-swiper-pagination{
  text-align: center;
  margin: 50px auto 30px;
}
.cus-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #000;
  opacity: 0.4;
  margin: 0 5px;
  transition: opacity 0.3s;
}

.cus-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

@media (max-width: 768px) {
}
@media (max-width: 992px) {
  .project_card .card_desc_inner h3{
    font-size: 20px;
  }
}
  

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/

.sec-amenities .swiper {
  width: 100%;
  height: 100%;
}

.content-swiper {
  max-width: 500px;
}
.content-swiper .swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.image-swiper {
  flex: 1.5;
}

.swiper-slide {
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.swiper-slide-active {
  transform: translateY(0) !important;
}

.content-swiper .swiper-slide h4 {
  margin-bottom: 15px;
  width: 100%;
}


.image-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.image-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-slide:hover img {
  transform: scale(1.05);
}

.swiper-pagination-bullets {
  bottom: -20px;
}

@media (max-width: 768px) {
  .gallery-container {
    padding-left: calc(3rem * .5);
  }
  .content-swiper .swiper-slide h4,
  .content-swiper .swiper-slide p{
    padding-right: calc(3rem * .5);
  }
}
@media (max-width: 992px) {
  .content-swiper{
    /* margin-bottom: 50px; */
  }
  .content-swiper .swiper-slide{
    justify-content: start;
    margin-top: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {

}
/*--------------------------------------------------------------
# Input Css
--------------------------------------------------------------*/
.enquiry-form input{
  line-height: 50px;
  border-radius: 30px;
  color: var(--heading-color);
  padding-left: 20px;
  padding-right: 20px;
}
.enquiry-form input:focus{
  border-color: var(--heading-color);
  box-shadow: none;
}
.enquiry-form textarea{
  border-radius: 30px;
  color: var(--heading-color);
  padding-left: 20px;
  padding-right: 20px;
}
.enquiry-form textarea:focus{
  border-color: var(--heading-color);
  box-shadow: none;
}
.enquiry-form .btn-submit{
  background-color: #000;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-width: .0625rem;
  -webkit-border-radius: 2.5rem;
  border-radius: 2.5rem;
  border-style: solid;
  border-color: #000;
}

/*--------------------------------------------------------------
# Floating CSS
--------------------------------------------------------------*/
.floating_panel {
  position: fixed;
  bottom: 100px;
  right: 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 9999;
  transition: width 0.4s ease;
  width: 60px; /* default collapsed width */
}
.floating_panel.open {
  width: 500px; /* expanded width on hover */
}

.floating_content {
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
  pointer-events: none;
  background-color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 40px;
  margin-right: 10px;
}

.floating_panel.open .floating_content {
  opacity: 1;
  pointer-events: auto;
}

.floating_toggle {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10000;
}

.floating_toggle:hover {
  background-color: var(--accent-color);
}

.floatbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.floatbtn i {
  margin-left: 5px;
}

.floatbtn.white {
  background: white;
  color: black;
}

.floatbtn.white:hover {
  background: #f0f0f0;
}

.floatbtn.black {
  background: var(--heading-color);
  color: white;
}

.floatbtn.black:hover {
  background: #555;
}

@media (max-width: 768px) {
  .floating_toggle{
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

}


/*--------------------------------------------------------------
# Projects Overview
--------------------------------------------------------------*/
.proj-overview{
  display: flex;
  justify-content: flex-start
}
.proj-overview .proj-overview-list {
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
}

.proj-overview .proj-overview-list  .proj-overview-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: var(--background-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  display: flex
;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-overview .proj-overview-list  .proj-overview-icon i {
  font-size: 38px;
  color:var(--heading-color);
}

.proj-overview .proj-overview-list .proj-overview-txt {
  position: relative;
  z-index: 2;
  flex: 1;
}
.proj-overview .proj-overview-list .proj-overview-txt h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

.proj-overview .proj-overview-list .proj-overview-txt span {
  transition: color 0.4s ease;
}
/*--------------------------------------------------------------
# Projects highlights
--------------------------------------------------------------*/
/* .highlights-items{
  transition: .5s ease-in-out;
} */
.highlights-items .highlights-items-img{
  margin-bottom: 1rem;
  color: #fff;
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: var(--background-color);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.highlights-items .highlights-items-img img{
  display: inline-flex;
  align-items: center;
  width: 50px;
  height: 50px;
}
.highlights-items p{
  font-size: 18px;
}
.hover_moveup{
  transition: .5s ease-in-out;
}
.hover_moveup:hover{
  transform: translateY(-10px);
}