
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  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: #001973; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d42ff; /* 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: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* 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: #0d42ff; /* 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: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "DM Sans", serif;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "DM Sans", serif;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

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

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

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  background: green;
  font-size: 13px;
  padding: 8px 20px;
  font-weight: 500;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 7px 10px;
    font-size: 11px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  padding: 4px 0;
  background-color: #212121;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(14, 29, 52, 0.9);
}

/*--------------------------------------------------------------
# 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: #000;
    padding: 13px 13px;
    font-size: 15px;
    /* font-family: var(--nav-font); */
    font-weight: 600;
    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: #d8a62b;
  }

  .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: -94%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    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);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    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: #fff;
    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 Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #212121;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 65px;
  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: 40px;
  margin-right: 6px;
}

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

.footer .footer-about p {
  font-size: 14px;
  color: #f0f0f0;
  line-height: 21px;
  /* 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 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  color: #f0f0f0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  /* color: color-mix(in srgb, var(--default-color), transparent 40%); */
  display: inline-block;
  line-height: 1;
  color: #f0f0f0;
}

.footer .footer-links ul a:hover {
  color: var(--default-color);
}

.footer .footer-contact p {
  /* margin-bottom: 5px; */
  color: #f0f0f0;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 19px;
  border-top: 1px solid color-mix(in srgb, #ffffff, transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #ffffffcf;
  letter-spacing: 0.2px;
}

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

.footer .credits a {
  color: var(--default-color);
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #f15929;
  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: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

.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: 35px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  /* padding: 5px 0; */
  margin-bottom: 22px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  /* text-transform: uppercase; */
  margin-bottom: 12px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
  .heading-main h3{
      font-size:20px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 71vh;
  background-size: cover;
  position: relative;
  background-image: linear-gradient(to right, rgb(0 0 0 / 93%), rgb(0 0 0 / 29%)), url(../img/banner-main.webp);
  padding: 213px 0 150px 0;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.hero h2 {
  margin-bottom: 15px;
  padding: 0;
  font-size: 35px;
  font-family: "Libre Caslon Display", serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
}

.hero p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero form {
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 14px;
  padding-right: 14px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  flex-shrink: 0;
  padding: 0px 23px;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.hero form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .stats-item {
  padding: 7px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 24px;
  display: block;
  font-weight: 700;
  margin-bottom: 11px;
  padding-bottom: 6px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  left: 0;
  /* right: 0; */
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: #5271fe;
  font-size: 40px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  color: #4a4a4a;
  font-size: 15px;
  /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Libre Caslon Display", serif;
  margin-bottom: 20px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  /* background-color: var(--surface-color); */
  color: var(--default-color);
  border: none;
  position: relative;
  /* border-radius: 0; */
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 0px;
  /* border-radius: 0; */
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.services .card h3 {
  font-weight: 700;
  line-height: 25px;
  font-size: 16px;
  color: #000;
  margin-bottom: 9px;
  /* padding: 10px 20px; */
  text-transform: capitalize;
}

.services .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.services .card a:hover {
  color: var(--accent-color);
}

.services .card p {
  /* padding: 0 20px; */
  color: #000;
  letter-spacing: 0.2px;
  margin-bottom: 5px;
  /* color: color-mix(in srgb, var(--default-color), transparent 40%); */
  font-size: 13px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
    background-image: url(../img/cta-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Libre Caslon Display", serif;
  line-height: 41px;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  /* font-family: var(--heading-font); */
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 36px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
    .footer .footer-links{
        margin-bottom: 15px;
    }
    .scroll-top
    {
            width: 32px;
    height: 32px;
    }
    .footer
    {
        background-position: right;
    }
    .footer .footer-top
    {
        padding-top: 60px!important;
    }
    .logo-box img
    {
        height: 60px!important;
    }
    .logo-box img
    {
        margin-bottom: 15px!important;
    }
    .call-to-action .cta-btn
    {
        font-size: 14px;
        padding: 7px 20px;
    }
    .call-to-action
    {
        padding: 49px 0;
    }
    .call-to-action p
    {
        font-size: 15px;
    }
    .services .card h3
    {
        font-size: 17px;
    }
    .services .card p
    {
        font-size: 15px;
    }
    .header .logo img
    {
        max-height: 51px;
    }
    .featured-services .service-item .icon i
    {
        font-size: 30px;
    }
    .featured-services .service-item .title
    {
        font-size: 18px;
    }
    .featured-services .service-item .description
    {
        font-size: 14px;
    }
    .featured-services .service-item
    {
        margin-bottom: 10px;
    }
    .about .content h3
    {
        font-size: 25px;
    }
    .content p
    {
        font-size: 15px;
    }
    .hero .stats-item
    {
        padding: 0px!important;
    }
    .hero form .btn-primary
    {
        padding: 0 20px!important;
    font-size: 12px!important;
    }
    .form-control
    {
        font-size: 12px!important;
    }
    .hero p
    {
        font-size: 12px;
        margin-bottom: 13px;
    }
    .hero .stats-item span
    {
        font-size: 18px;
    }
    .hero .stats-item p
    {
        font-size: 10px;
    }
    .hero
    {
        padding: 101px 0 46px 0!important;
        background-position: right;
    }
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--heading-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 5px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 35px;
  display: block;
  font-weight: 700;
  margin-bottom: 13px;
  padding-bottom: 6px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: #474747;
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Pricing Section
--------------------------------------------------------------*/
.alt-pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.alt-pricing .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.alt-pricing .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.alt-pricing .pricing-item h4 sup {
  font-size: 28px;
}

.alt-pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.alt-pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.alt-pricing .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.alt-pricing .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.alt-pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na span {
  text-decoration: line-through;
}

.alt-pricing .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.alt-pricing .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.alt-pricing .featured {
  background: var(--accent-color);
}

.alt-pricing .featured h3,
.alt-pricing .featured h4,
.alt-pricing .featured h4 span,
.alt-pricing .featured ul,
.alt-pricing .featured ul .na,
.alt-pricing .featured ul i,
.alt-pricing .featured ul .na i {
  color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 30px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: #5d5d5d;
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  margin-bottom: 13px;
  border-radius: 5px;
  border: 1px solid #9f9f9f;
  padding: 10px 15px;
  box-shadow: none;
  /* border-radius: 0; */
  color: #121212;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  /* border-color: color-mix(in srgb, var(--default-color), transparent 80%); */
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #212121;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.image-about img
{
    border-radius: 10px;
}
.logo-box img
{
    width: 100%;
    height: 80px;
    padding: 10px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 0 auto;
}
.footer-links h4
{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.footer-contact h4
{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.footer-about h4
{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.vision-image img
{
    width: 100%;
}
.vision-heading h2
{
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 30px;
}
.vision-heading p
{
    color: #4a4a4a;
    font-size: 15px;
}
.form-main-online h4
{
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 22px;
}
.box-main h4
{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.box-main p
{
    color: #4a4a4a;
    font-size: 15px;
}
.box-main
{
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 6px 7px #ddd;
}
.vision-heading ul li
{
    color: #4a4a4a!important;
    font-size: 15px!important;
    line-height: 30px!important;
}
.form-check
{
    margin: 4px 13px;
    font-size: 13px;
}
@media(max-width:700px){
    .page-title h1
    {
        font-size: 25px!important;
    }
    .vision-heading h2
    {
        font-size: 20px;
        font-weight: 600!important;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .track-section
    {
        padding: 20px!important;
        margin-bottom: 25px;
    }
    .hero form
    {
        padding: 6px!important;
        border-radius: 6px;
    }
    .box-main-builder img
    {
        height: 45px!important;
    }
    .property-number a
    {
        font-size: 10px!important;
    }
    .box-main-builder
    {
            border-radius: 4px!important;
    }
    .property-number
    {
        top: -68px!important;
    }
    .property-number a
    {
        padding: 3px 9px!important;
    }
    .featured-services
    {
        padding: 22px 0px!important;
    }
    
}
.track-section
{
        border: 1px solid #ddd;
    padding: 42px;
    border-radius: 15px;
    box-shadow: 10px 10px #ddd;
}
.track-section input
{
    font-size: 13px!important;
}
.top-main-section
{
    margin-top: 10px;
}
.delivery-order img
{
    width: 40px;
    margin: 0 auto;
}
.tracking-status h3
{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}
.track-it
{
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
}
.status-is
{
    color: #e80909;
}
.tracking-status h5
{
    background-color: #eeeeee;
    padding: 10px;
    border-radius: 4px;
    color: #001973;
    font-size: 15px;
    letter-spacing: 0.2px;
}
.heads th
{
        background-color: #eeeeee;
    font-size: 14px;
    vertical-align: middle;
}
.table-main th
{
    vertical-align: middle;
    font-size: 14px;
}
.table-main td
{
    vertical-align: middle;
    font-size: 14px;
}
.box-main-builder
{
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    /* border-bottom: 2px solid #283651d4; */
    padding: 8px;
}
.box-main-builder img
{
    width: 100%;
    height: 90px;
    object-fit: contain;
}
.property-number
{
    text-align: center;
    margin-top: 2px;
    position: relative;
    z-index: inherit;
    top: -111px;
    text-align: right;
    margin: 0 auto;
    width: 100%;
    overflow: overlay;
}
.property-number a
{
    background-color: #f2f2f2;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    color: #343434;
    text-align: right;
}
.property-main
{
    background-color: #212121 !important;
    padding-bottom: 50px!important;
    padding-top: 50px!important;
}
.white-section
{
    color: #fff!important;
    margin-bottom: 30px!important;
}
.project-name
{
    padding: 12px 16px;
}
.product-amount
{
    position: absolute;
    bottom: 128px;
    font-size: 19px;
    text-align: left;
    z-index: 999;
    margin-left: 12px;
    font-weight: 800;
    color: #fff;
}
.card .feature-rating {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 7px 0;
    width: 100%;
}
.card .feature-rating .featured {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
}
.card .featured span {
    font-weight: 500;
    font-size: 10px;
    color: #000;
    letter-spacing: 0.2px;
    background-color: #fff;
    padding: 4px 11px;
    display: inline-block;
    border-radius: 4px;
}
.card .new-featured span {
    font-weight: 500;
    font-size: 11px;
    color: #000;
    letter-spacing: 0.2px;
    background-color: #fff;
    padding: 4px 11px;
    display: inline-block;
    border-radius: 4px;
}
.card .feature-rating .new-featured {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-left: 2px;
}
.view-detail div
{
    width: 50%;
float: left;
}
.project-amount span
{
    font-weight: 600;
    font-size: 17px;
    color: #000;
    text-align: center;
}
.project-amount
{
    margin-top: 1px;
}
.divider
{
    content: '';
    background-color: #ddd;
    /* padding: 5px; */
    width: 100%;
    margin-top: 10px;
    height: 1px;
    margin-bottom: 8px;
}
.view-more
{
    text-align: center;
}
.view-more a
{
    background-color: #dcab16;
    padding: 5px 18px;
    font-size: 12px;
    letter-spacing: 0.2px;
    border-radius: 29px;
    color: #ffffff !important;
    transition: all ease 0.6s;
}
.view-more a:hover
{
    background-color: #001973;
    color: #fff;
    transition: all ease 0.6s;
}
.about-us-section
{
    padding-bottom: 55px!important;
    padding-top: 55px!important;
}
.builder-logo
{
    overflow: hidden;
}
.builder-logo img
{
    transition: all ease 0.4s;
    overflow: hidden;
}
.builder-logo:hover img
{
    transform: scale(1.2);
    overflow: hidden;
    transition: all ease 0.4s;
}
.popular-section img
{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.popular-section
{
    /* padding: 8px; */
    background-color: #fff;
    border:1px solid #ddd;
    transition: all ease 0.6s;
    border-radius: 10px;
}
.popular-section h5
{
    margin-bottom: 8px;
    text-align: center;
    font-weight: 600;
    transition: all ease 0.6s;
    color: #000;
    font-size: 16px;
    margin-top: 10px;
}
.popular-section:hover{
    background-color: #001973;
    transition: all ease 0.6s;
}
.popular-section:hover h5
{
    color: #fff;
    transition: all ease 0.6s;
    
}
.faq
{
    padding-bottom: 50px!important;
    padding-top: 50px!important;
}
.blog-section
{
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
}
.blog-section .post-category {
    font-size: 13px;
    color: #292929;
    margin-bottom: 10px;
    margin-top: 7px;
}
.blog-section img
{
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}
.blog-section h4
{
    font-size: 16px;
    transition: all ease 0.5s;
    color: #000;
    line-height: 24px;
    font-weight: 600;
    margin-top: 2px;
    margin-bottom: 2px;
}
.content-blog
{
    /* padding: 10px; */
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 10px;
    padding-bottom: 2px;
}
.blog-section:hover h4
{
    color: #ee3834!important;
    transition: all ease 0.5s;
}
.form-control
{
    font-size: 14px!important;
}
.design-buy a
{
    color: #fff!important;
}
#featured-services
{
    background-image: url(../images/bg-main.png);
    background-position: center;
    background-repeat: repeat;
}
.bg-black
{
    background-color: #ededed!important;
}
.button-apply a
    {
        font-size: 13px!important;
        padding: 7px 18px!important;
            padding: 10px 18px!important;
    }
.button-apply
{
    margin-top: 15px;
    margin-bottom: 10px;
}
.button-apply a
{
    background-color: #000;
    padding: 8px 27px;
    border-radius: 5px;
    color: #fff;
    transition: all ease 0.5s;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.button-apply a:hover
{
    background-color: #656565;
    color: #fff;
    transition: all ease 0.5s;
}
.career-list p {
    letter-spacing: 0.2px;
    margin-bottom: 10px;
    color: #000;
    font-size: 15px;
}
.career-list h3 {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
    letter-spacing: 0.2px;
    font-size: 16px;
}
.accordion-header button
{
    background-color: #e4e4e4;
    font-weight: 700;
    font-size: 16px;
}
.card-inner
{
    border: 1px solid #ddd!important;
    background-color: #f8f8f8;
    border-radius: 10px!important;
}

/*property detail css*/
.main-image-detail img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.project-heading h1 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.project-heading p {
    color: #000;
}
.project-details h2 {
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    margin-top: 10px;
    letter-spacing: 0.3px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}
.project-details ul li {
    line-height: 28px;
    color: #000;
    font-size: 16px;
}
.floor-plan img {
    width: 100%;
    transition: all ease 0.3s;
    height: 200px;
    object-fit: contain;
}
.table-section td {
    border: 1px solid #ddd;
}
.table-section tr td {
    font-size: 15px;
    padding: 7px;
    font-size: 14px;
}
.location-map img {
    width: 100%;
    border-radius: 5px;
}
.gallery-images img {
    width: 100%;
    transition: all ease 0.3s;
    height: 170px;
    object-fit: cover;
}
.project-details h3 {
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    margin-top: 10px;
    letter-spacing: 0.3px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}
.floor-plan h4
{
    font-size: 16px;
    margin-top: 6px;
    color: #000;
    letter-spacing: 0.3px;
    text-align: center;
}
.project-details li {
    margin-bottom: 12px;
}
.extra-details h3 {
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    margin-top: 10px;
    letter-spacing: 0.3px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}
.table-section table
{
    width: 100%!important;
}
.gallery-images {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.heading-main h3 {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    margin-bottom: 12px;
}
.heading-main p {
    color: #000;
    margin-bottom: 8px;
    font-size: 15px;
}
.price-section-main {
    margin-top: 8px;
    margin-bottom: 11px;
}
.rera-details p {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
}
.price-section-main h6{
        font-size: 19px;
    font-weight: 700;
    color: #0c0092;
}
.top-15
{
    margin-top: 15px;
}
.form-section-inner{
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background-color: #dedede1c;
}
.form-section-inner h3
{
    font-size: 19px;
    text-align: center;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}
.discount img
{
    width: 150px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.discount
{
    margin-top: 20px;
}
.discount a
{
    background-color: #dcab16;
    padding: 7px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    border-radius: 6px;
}
.related-projects h4
{
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    margin-top: 10px;
    letter-spacing: 0.3px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;   
}
.related-blog h5
{
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 8px 14px;
    border: 1px solid #cfcfcf;
    margin-top: 10px;
    letter-spacing: 0.3px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;   
}
.send-message-now button
{
    width: 100%;
    font-size: 13px!important;
}
.blog-details h1 {
    font-size: 25px;
    font-weight: 600;
}
.post-category {
    font-size: 13px;
    color: #292929;
    margin-bottom: 10px;
    margin-top: 7px;
}
.blog-details img {
    border-radius: 5px;
    margin-top: 11px;
}
.blog-details p {
    margin-top: 10px;
    margin-bottom: 14px;
}
.bottom-15
{
    margin-bottom:15px;
}
/* Header Base Styling */
#header.header {
  transition: all 0.4s ease-in-out;
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
}

/* Topbar Animation */
.topbar {
  height: 40px;
  background-color: #0d121b !important;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  display: flex !important;
  /* display: none ki jagah height use karenge animation ke liye */
  overflow: hidden;
}

/* Navmenu links spacing */
.navmenu ul li a {
  transition: all 0.3s;
}

/* Scrolled State (Jab user scroll karega) */
/* Ye ".scrolled" class aapke JS se body ya header par add honi chahiye */
.scrolled #header.header {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.scrolled #header.header .topbar {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0 !important;
}

/* Logo resize on scroll (optional but looks premium) */
.scrolled .logo img {
  max-height: 55px;
  transition: all 0.4s ease-in-out;
}

/* Dropdown smooth transition */
.navmenu .dropdown ul {
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
}
.navmenu .dropdown:hover > ul {
  margin-top: 0;
}   

/* --- Hero Section Background Fix --- */
.as-hero-section {
    width: 100%;
    min-height: 70vh; /* Thoda sa area footer/niche ke liye chhoda hai */
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    /* transition for smooth loading */
    transition: background 0.5s ease-in-out;
    padding-top: 120px; /* Header ke liye space */
}

/* Image ko hilne se rokne ke liye overlay */
.as-hero-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65); /* Dark shade taaki text bright dikhe */
    z-index: 1;
}

.as-hero-content {
    z-index: 2; /* Text ko overlay ke upar lane ke liye */
}

/* Text Styling */
.as-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
}

.as-accent { color: #0d6efd; }

.as-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* --- Improved Search Bar --- */
.as-search-wrapper {
    background: #ffffff;
    border-radius: 50px; /* Pill shape */
    padding: 6px;
    max-width: 650px;
}

.as-input-field {
    box-shadow: none !important;
    font-weight: 500;
}

.as-search-btn-new {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.as-search-btn-new:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* --- Stats Styling --- */
.as-stat-num {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.as-stat-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: 0;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .as-hero-section {
        min-height: 100vh;
        padding-top: 140px;
        text-align: center;
    }
    .as-hero-title { font-size: 2.2rem; }
    .as-search-wrapper { border-radius: 15px; }
    .as-search-wrapper form { flex-direction: column; }
    .as-search-btn-new { width: 100%; margin-top: 10px; border-radius: 10px; }
}

/* Unique Prefix: as-dev- */

.as-dev-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.as-dev-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.as-dev-divider {
    width: 60px;
    height: 3px;
    background: #f15929;
    border-radius: 5px;
}

/* Card Styling */
.as-dev-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 5px; /* Space for shadow */
}

.as-dev-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #0d6efd;
}

.as-dev-img-box {
    width: 100%;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.as-dev-card:hover .as-dev-img-box {
    transform: scale(1.1);
}

.as-dev-img-box img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.as-dev-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Floating Project Badge */
.as-dev-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    text-align: center;
}

.as-dev-count {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.as-dev-label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Full Card Clickable */
.as-dev-link-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 5;
}

/* Pagination Styling */
.as-dev-pagination .swiper-pagination-bullet-active {
    background: #0d6efd;
    width: 25px;
    border-radius: 5px;
}

/* Unique Prefix: as-proj- */

.as-proj-section {
    padding: 80px 0;
    background-color: #f4f7f9 !important;
}

.as-proj-main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.as-proj-divider {
    width: 70px;
    height: 4px;
    background: #0d6efd;
    border-radius: 10px;
    margin-top: 15px;
}

/* Card Styling */
.as-proj-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.as-proj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #0d6efd;
}

/* Image Styling */
.as-proj-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.as-proj-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.as-proj-card:hover .as-proj-img-wrapper img {
    transform: scale(1.1);
}

/* Badges on Image */
.as-proj-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-rera {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-type {
    background: rgba(13, 110, 253, 0.9);
    color: white;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Card Body */
.as-proj-body {
    padding: 20px;
}

.as-proj-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.as-proj-info p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Card Footer */
.as-proj-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.as-proj-price strong {
    font-size: 1.25rem;
    color: #0d6efd;
}

.as-proj-btn {
    background: #f0f7ff;
    color: #0d6efd;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.as-proj-btn:hover {
    background: #0d6efd;
    color: #fff;
}
/* Unique Prefix: as-loc- */

.as-loc-section {
    padding: 60px 0;
    background: #fff;
}

.as-loc-main-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.as-loc-divider {
    width: 50px;
    height: 3px;
    background: #0d6efd;
    margin-top: 10px;
    border-radius: 2px;
}

/* Location Card Design */
.as-loc-card {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.as-loc-img-container {
    position: relative;
    height: 250px; /* Sabhi images ki height same rakhi hai */
    overflow: hidden;
}

.as-loc-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Gradient Overlay */
.as-loc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: 0.4s;
}

.as-loc-info h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.as-loc-btn {
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    display: inline-block;
    transition: 0.4s;
}

/* Hover Effects */
.as-loc-card:hover {
    transform: translateY(-5px);
}

.as-loc-card:hover .as-loc-img-container img {
    transform: scale(1.1);
}

.as-loc-card:hover .as-loc-overlay {
    background: linear-gradient(to top, rgba(13, 110, 253, 0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.as-loc-card:hover .as-loc-btn {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

/* Unique Prefix: as-cta- */

.as-cta-section {
    padding: 100px 0;
    position: relative;
    /* Aap apni background image yahan bhi laga sakte hain */
    background: linear-gradient(135deg, #001d3d 0%, #003566 100%);
    overflow: hidden;
}

/* Background Design Element */
.as-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Subtle pattern */
    opacity: 0.1;
    z-index: 1;
}

.as-cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    z-index: 2;
    position: relative;
}

.as-cta-icon i {
    font-size: 3rem;
    color: #ffc300; /* Luxury Gold/Yellow touch */
    text-shadow: 0 0 20px rgba(255, 195, 0, 0.4);
}

.as-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.as-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-inline: auto;
}

/* Primary Button (Contact) */
.as-cta-btn-primary {
    background: #0d6efd;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #0d6efd;
    display: inline-flex;
    align-items: center;
}

.as-cta-btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* Secondary Button (Call) */
.as-cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
}

.as-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .as-cta-title { font-size: 1.8rem; }
    .as-cta-text { font-size: 1rem; }
    .as-cta-section { padding: 60px 0; }
    .as-cta-buttons { flex-direction: column; width: 100%; }
    .as-cta-btn-primary, .as-cta-btn-secondary { width: 100%; justify-content: center; }
}

/* Unique Prefix: as-about- */

.as-about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.as-about-img-wrapper {
    padding: 15px;
}

/* Floating Experience Badge Styling */
.as-about-exp-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #0d6efd;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 160px;
    border: 5px solid #fff;
}

.as-exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.as-exp-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Text Content Styling */
.as-about-subtitle {
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.as-about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
}

.as-about-lead {
    font-size: 1.1rem;
    color: #4a5568;
    border-left: 4px solid #0d6efd;
    padding-left: 20px;
}

.as-about-features i {
    font-size: 1.4rem;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .as-about-section { padding: 60px 0; }
    .as-about-title { font-size: 2rem; }
    .as-about-exp-badge {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: -50px;
        margin-left: auto;
        margin-right: 20px;
        max-width: 150px;
    }
}


/* Unique Prefix: as-blog-v2- */

.as-blog-v2-section {
    padding: 32px 0;
    background: #fdfdfd;
}

.as-blog-v2-main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
}

.as-blog-v2-divider {
    width: 80px;
    height: 4px;
    background: #0d6efd;
    border-radius: 10px;
    margin-top: 15px;
}

/* Card Design */
.as-blog-v2-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.as-blog-v2-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

/* Image with Tag */
.as-blog-v2-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.as-blog-v2-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.as-blog-v2-card:hover .as-blog-v2-img-box img {
    transform: scale(1.1) rotate(1deg);
}

.as-blog-v2-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #f15929;
    color: #fff;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Body Content */
.as-blog-v2-body {
    padding: 25px;
}

.as-blog-v2-meta {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.as-blog-v2-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.as-blog-v2-card:hover .as-blog-v2-title {
    color: #0d6efd;
}

.as-blog-v2-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link Style */
.as-blog-v2-link {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.as-blog-v2-link:hover {
    color: #0d6efd;
    gap: 12px;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .as-blog-v2-title {font-size: 15px;margin-bottom: 10px;}
    .as-blog-v2-img-box { height: 200px; }
}

/* Unique Prefix: as-ft- */

.as-ft-main-footer {
    background-color: #0d121b; /* Rich Dark Background */
    color: #cbd5e0;
    padding-top: 60px;
    font-size: 0.95rem;
}

.as-ft-heading {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Heading bottom line */
.as-ft-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.as-ft-desc {
    line-height: 1.7;
    color: #a0aec0;
}

/* Social Links */
.as-ft-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.as-ft-social a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

/* Footer Links */
.as-ft-links {
    list-style: none;
    padding: 0;
}

.as-ft-links li {
    margin-bottom: 12px;
}

.as-ft-links li a {
    color: #a0aec0;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.as-ft-links li a:hover {
    color: #0d6efd;
    padding-left: 5px;
}

/* Contact Info */
.as-ft-contact-box p {
    display: flex;
    gap: 15px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.as-ft-contact-box i {
    color: #fff;
    font-size: 1.1rem;
}

/* Copyright Bar */
.as-ft-bottom {
    background-color: #080c12;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.as-ft-bottom p {
    font-size: 0.85rem;
}

.as-ft-credit a {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 600;
}

.as-ft-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .as-ft-main-footer { padding-top: 60px; }
    .as-ft-heading {margin-bottom: 20px;font-size: 18px;}
}

/* Unique Prefix: as-float- (Left Aligned) */

.as-float-contact-left {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Right se hata kar Left kar diya */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.as-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

/* WhatsApp & Call Colors */
.as-whatsapp { background-color: #25d366; animation: as-pulse-whatsapp 2s infinite; }
.as-call { background-color: #0d6efd; animation: as-pulse-call 2s infinite; animation-delay: 1s; }

/* Label (Ab ye Right side ki taraf khulega) */
.as-float-label-right {
    position: absolute;
    left: 70px; /* Right ki jagah Left side se gap */
    background: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.as-float-btn:hover .as-float-label-right {
    opacity: 1;
    visibility: visible;
    left: 65px; /* Hover par thoda andar aayega */
}

.as-float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Pulse Animations (Same as before) */
@keyframes as-pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes as-pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(13, 110, 253, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .as-float-contact-left {
        bottom: 20px;
        left: 20px;
    }
    .as-float-label-right {
        display: none; /* Mobile par label chhupa diya taaki screen block na ho */
    }
}

/* Unique Prefix: as-featured- */

.as-featured-section {
    background-color: #f4f7fa;
}

.as-title-main {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1a202c;
}

.as-title-line {
    width: 60px;
    height: 4px;
    background: #f15929;
    margin-top: 15px;
    border-radius: 10px;
}

/* Card Wrapper */
.as-card-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
    height: 100%;
}

.as-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image Container */
.as-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.as-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.as-card-wrapper:hover .as-card-image img {
    transform: scale(1.1);
}

/* Badges and Price */
.as-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.as-badge-rera {
    background: #198754;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.as-badge-type {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.as-price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f15929;
    color: white;
    padding: 6px 15px;
    font-weight: 800;
    font-size: 0.9rem;
    border-top-left-radius: 20px;
}

/* Card Body */
.as-card-body {
    padding: 20px;
}

.as-proj-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    /* Truncate long names */
    /*display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;*/
}

.as-proj-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.as-proj-details span {
    font-size: 13px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-proj-details i {
    color: #0d6efd;
}

/* Footer Buttons */
.as-btn-detail {
    background: #f1f5f9;
    color: #f15929;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.as-btn-detail:hover {
    background: #0d6efd;
    color: #fff;
}

.as-btn-icon {
    width: 35px;
    height: 35px;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.as-btn-icon:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .as-card-image { height: 180px; }
    .as-proj-name { font-size: 1rem; }
}

/* Unique Prefix: as-dev-v2- */

.as-dev-v2-section {
    padding: 60px 0;
}

.as-dev-v2-title {
    font-size: 2.2rem;
    color: #2d3748;
}

.as-dev-v2-divider {
    width: 50px;
    height: 4px;
    background: #f15929;
    border-radius: 10px;
    margin-top: 15px;
}

/* Developer Card Wrapper */
.as-dev-v2-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

/* Image/Logo Box */
.as-dev-v2-img-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.as-dev-v2-img-box img {
    max-width: 120px;
    max-height: 100%;
    transition: 0.4s ease;
    object-fit: contain;
}

/* Hover Effect on Card */
.as-dev-v2-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #0d6efd;
    transform: translateY(-5px);
}

.as-dev-v2-card:hover .as-dev-v2-img-box img {
    filter: grayscale(0%); /* Color on Hover */
    transform: scale(1.05);
}

/* Project Count Badge */
.as-dev-v2-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.as-dev-v2-count {
    font-size: 1.4rem;
    font-weight: 800;
    color: #f15929;
    line-height: 1;
}

.as-dev-v2-label {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Link Overlay */
.as-dev-v2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Custom Pagination dots */
.as-dev-v2-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
}

.as-dev-v2-pagination .swiper-pagination-bullet-active {
    background: #0d6efd;
    width: 25px;
    border-radius: 10px;
}

/* Unique Prefix: as-loc-v2- */

.as-loc-v2-section {
    background-color: #f8fafc;
}

.as-loc-v2-title {
    font-size: 2.3rem;
    color: #1e293b;
}

.as-loc-v2-divider {
    width: 60px;
    height: 4px;
    background: #f15929;
    border-radius: 10px;
}

/* Card Styling */
.as-loc-v2-card {
    position: relative;
    height: 350px; /* Tall Cards look premium */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.as-loc-v2-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Gradient Overlay */
.as-loc-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background 0.3s ease;
}

/* Content Inside Overlay */
.as-loc-v2-content {
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: 100%;
}

.as-loc-v2-content h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.as-loc-v2-content p {
    color: #cbd5e1;
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.as-loc-v2-link {
    color: #0d6efd;
    background: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

/* Hover States */
.as-loc-v2-card:hover {
    transform: scale(0.98);
}

.as-loc-v2-card:hover img {
    transform: scale(1.1);
}

.as-loc-v2-card:hover .as-loc-v2-content {
    transform: translateY(0);
}

.as-loc-v2-card:hover .as-loc-v2-link {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .as-loc-v2-card {
        height: 190px; /* Reduced height for mobile */
        border-radius: 15px;
    }
    .as-loc-v2-content {
        transform: translateY(0);
    }
    .as-loc-v2-link {
        opacity: 1;
        visibility: visible;
        padding: 5px 12px;
    }
    .as-loc-v2-content h5 {
        font-size: 13px;
    }
}

/* Unique Prefix: as-cta-v2- */

.as-cta-v2-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #001d3d; /* Fallback color */
}

/* Background Image with Dark Overlay */
.as-cta-v2-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/gurgaon-skyline.webp'); /* Apni skyline image lagayein */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
    z-index: 1;
}

.as-cta-v2-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.as-cta-v2-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.as-cta-v2-title span {
    color: #f15929; /* Highlight color */
    text-decoration: underline;
}

.as-cta-v2-desc {
    color: #e2e8f0;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 40px;
    line-height: 1.6;
}

/* Shimmer Button Effect */
.as-btn-shimmer {
    background: #f15929;
    color: #fff;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: none;
}

.as-btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

.as-btn-outline-white {
    padding: 14px 35px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.as-btn-outline-white:hover {
    background: #fff;
    color: #000;
}

.as-cta-v2-features span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.as-cta-v2-features i {
    color: #0d6efd;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .as-cta-v2-title {font-size: 22px;}
    .as-cta-v2-glass-card { padding: 40px 20px; }
    .as-cta-v2-action-btns { display: flex; flex-direction: column; gap: 15px; }
}
/* Buttons ko ek line mein laane ke liye */
.as-cta-v2-action-btns {
    display: flex;
    justify-content: center; /* Center align karne ke liye */
    align-items: center;    /* Vertical alignment barabar karne ke liye */
    gap: 15px;              /* Buttons ke beech ka gap */
    flex-wrap: nowrap;      /* Force karega ek hi line mein rehne ke liye */
}

/* Dono buttons ki height aur padding ek jaisi rakhne ke liye */
.as-btn-shimmer, .as-btn-outline-white {
    padding: 12px 28px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;       /* Dono buttons ki width barabar rakhi hai */
    height: 55px;           /* Height fix kar di taaki upar neeche na ho */
    white-space: nowrap;    /* Text wrap nahi hoga */
}

/* Mobile par buttons ko upar neeche karne ke liye (Responsive) */
@media (max-width: 576px) {
    .as-cta-v2-action-btns {
        flex-direction: column; /* Mobile par ek ke niche ek */
        width: 100%;
    }
    .as-btn-shimmer, .as-btn-outline-white {
        width: 100%;        /* Mobile par full width */
    }
}
.as-cta-v2-action-btns a:hover{
    background-color: #000;
    color: #fff;
}
/* Unique Prefix: as-about-v3- */

.as-about-v3-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.as-about-v3-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 4px;
}

.as-about-v3-main-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #222;
}

.as-about-v3-main-title span {
    color: #f15929;
    border-bottom: 4px solid #f15929;
}

.as-about-v3-lead {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
}

/* Points Styling */
.as-about-v3-single-point {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid transparent;
    transition: 0.3s;
}

.as-about-v3-single-point:hover {
    border-left-color: #0d6efd;
    transform: translateX(10px);
}

.as-point-icon {
    width: 50px;
    height: 50px;
    background: #f15929;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
}

.as-point-text h6 { font-weight: 700; margin-bottom: 5px; color: #333; }
.as-point-text p { font-size: 13px; color: #777; margin: 0; }

/* Luxury Button */
.as-btn-luxury {
    padding: 15px 40px;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.as-btn-luxury:hover {
    background: #0d6efd;
    color: #fff;
}

/* Creative Image Grid */
.as-about-v3-img-grid {
    position: relative;
    padding: 20px;
}

.as-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.as-sub-img-box {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.as-sub-img-box i { font-size: 2rem; color: #0d6efd; }
.as-sub-img-box span { font-weight: 700; font-size: 14px; }

.as-floating-experience {
    position: absolute;
    top: 50px;
    z-index: 9;
    left: -30px;
    background: #f15929;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

.as-floating-experience strong { font-size: 1.8rem; }
.as-floating-experience small { font-size: 10px; text-transform: uppercase; }

/* Responsive */
@media (max-width: 991px) {
    .as-about-v3-main-title {font-size: 25px;}
    .as-main-img { height: 350px; }
    .as-floating-experience { display: none; }
}

/* Unique Prefix: as-hero-v2- */

.as-hero-v2-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}
.as-hero-v2-content
{
    margin-top: 120px;
    margin-bottom: 30px;
}
.as-hero-v2-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1); /* Zoom effect for premium feel */
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.3); }
}

.as-hero-v2-mask {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,29,61,0.9) 30%, rgba(0,0,0,0.4) 100%);
}

.as-hero-v2-badge {
    display: inline-block;
    background: #f15929;
    border: 1px solid rgba(13, 110, 253, 0.4);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    backdrop-filter: blur(5px);
}

.as-hero-v2-title {
    font-size: 35px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.as-hero-v2-title span {
    color: #f15929;
    text-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
}

.as-hero-v2-subtitle {
    color: #e2e8f0;
    font-size: 16px;
    max-width: 600px;
    margin-top: 18px;
    margin-bottom: 20px;
}

/* Glass Search Bar */
.as-search-v2-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 5px;
    display: flex;
    max-width: 650px;
}

.as-search-v2-form input {
    background: transparent !important;
    color: white !important;
}

.as-search-v2-form input::placeholder { color: #cbd5e1; }

.as-popular-tags span, .as-popular-tags a {
    color: #cbd5e1;
    font-size: 12px;
    margin-right: 10px;
    text-decoration: none;
}

.as-popular-tags a:hover { color: #0d6efd; }

/* Stats */
.as-hero-v2-stats h4 {font-size: 20px;font-weight: 800;color: #fff;margin-bottom: 0;}
.as-hero-v2-stats p { color: #cbd5e1; font-size: 0.9rem; margin-bottom: 0; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); height: 40px; }

/* Enquiry Card */
.as-hero-v2-enquiry-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    position: relative;
    z-index: 5;
}

.as-hero-v2-enquiry-card h5 { font-weight: 800; color: #001d3d; }
.as-hero-v2-enquiry-card p { color: #64748b; font-size: 0.9rem; }

/* Mobile Responsive */
@media (max-width: 991px) {
    .as-hero-v2-title {font-size: 26px;}
    .as-search-v2-form {border-radius: 52px;}
}
.as-hero-v2-stats
{
    margin-top: 20px;
}

/* WhatsApp Header Button Styling */
.as-btn-whatsapp-header {
    position: relative;
    background: #25d366; /* Official WhatsApp Green */
    color: #ffffff !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    overflow: visible; /* Pulse effect bahar dikhne ke liye */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.as-btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2; /* Text ko pulse ke upar rakhne ke liye */
}

.as-btn-whatsapp-header i {
    font-size: 1.2rem;
}

/* Hover Effect */
.as-btn-whatsapp-header:hover {
    background: #1ebc5a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Continuous Pulse Animation */
.as-btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #25d366;
    border-radius: 50px;
    z-index: 1;
    opacity: 0.6;
    animation: as-whatsapp-pulse 2s infinite;
}

@keyframes as-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2, 1.4); /* Horizontal aur vertical stretch */
        opacity: 0;
    }
}

/* Mobile responsive adjustments */

/* About Page V5 Styling */

.as-v5-tag {
    color: #0d6efd;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

/* Image Stack Design */
.as-about-v5-image-wrap {
    position: relative;
    padding: 30px;
}
.as-main-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.as-outline-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 10px solid #f15929;
    border-radius: 20px;
    z-index: 1;
}
.as-floating-experience-v5 {
    position: absolute;
    bottom: -10px; right: 0;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
}
.as-floating-experience-v5 .num {font-size: 2.5rem;font-weight: 900;color: #f15929;}
.as-floating-experience-v5 .txt { font-size: 12px; font-weight: 700; color: #1a202c; line-height: 1.2; }

/* Icon Circle */
.as-icon-circle {
    width: 45px; height: 45px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Glassy Stat Cards */
.as-v5-stat-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: 0.3s;
}
.as-v5-stat-card.active, .as-v5-stat-card:hover {
    background: rgba(13, 110, 253, 0.1);
    border-color: #0d6efd;
}
.as-v5-stat-card h2 { color: #fff; font-weight: 800; font-size: 2.8rem; }
.as-v5-stat-card p { color: #a0aec0; margin-bottom: 0; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }

/* Mission Vision Horizontal Cards */
.as-v5-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.as-v5-card:hover { transform: translateY(-10px); }
.as-v5-card-img {
    width: 100%; height: 100%; object-fit: cover;
}

/* CTA Button */
.as-btn-v5 {
    padding: 15px 40px;
    background: #fff;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
}
.as-btn-v5:hover {
    background: #001d3d;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .as-outline-box { display: none; }
    .as-v5-card-img { height: 200px; }
}

/* Contact Section Premium Styling */

/* Floating Form Controls */
.as-custom-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    transition: 0.3s;
}

.as-custom-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

/* Info Box Styling */
.as-info-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.as-info-box:hover {
    border-color: #0d6efd;
    transform: translateX(10px);
}

.as-info-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-right: 20px;
}

.as-info-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.as-info-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Submit Button */
.as-btn-submit {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.as-btn-submit:hover {
    background: #001d3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Map Section */
.as-map-section iframe {
    display: block;
    margin-bottom: -10px; /* To remove extra space at bottom */
}

@media (max-width: 768px) {
    .as-info-box { padding: 15px; }
    .as-info-icon { min-width: 50px; height: 50px; font-size: 1.2rem; }
}
/* Career Page Custom Styling */

/* Job Card Design */
.as-job-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9 !important;
}

.as-job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: #0d6efd !important;
}

/* Badge Styles */
.bg-primary-subtle { background-color: rgba(13, 110, 253, 0.1); }
.bg-success-subtle { background-color: rgba(25, 135, 84, 0.1); }

/* Meta Info Icons */
.as-job-meta {
    font-size: 0.9rem;
    color: #475569;
}

.as-job-meta i {
    margin-right: 5px;
}

/* Job Details List */
.as-job-details ul {
    padding-left: 1.2rem;
    line-height: 1.6;
}

.as-job-details ul li {
    margin-bottom: 5px;
}

/* Apply Button */
.as-job-card .btn-primary {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 25px;
}

@media (max-width: 768px) {
    .as-job-meta span {
        display: block;
        margin-bottom: 5px;
    }
}
/* Property Listing Styles */

.as-property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
    height: 100%;
}

.as-property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Image & Badges */
.as-card-img-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.as-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.as-property-card:hover .as-card-img-container img {
    transform: scale(1.1);
}

.as-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.as-badge-rera {
    background: #28a745;
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.as-badge-type {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* Card Body */
.as-card-body h3 {
    color: #1a202c;
    margin-bottom: 8px;
}

.as-location {
    letter-spacing: 0.2px;
}

.as-amenities {
    color: #4a5568;
}

/* Button & Price */
.as-card-footer .btn-outline-primary {
    border-width: 2px;
    font-weight: 700;
    font-size: 12px;
}

.as-card-footer .btn-outline-primary:hover {
    background: #0d6efd;
    color: #fff;
}

/* Layout for 3 cards per row */
@media (min-width: 992px) {
    .col-lg-4 {
        width: 33.33%;
    }
}
/* Property Details Custom CSS */
.as-floor-box img {
    height: 200px;
    object-fit: contain;
    background: #f8f9fa;
    transition: 0.3s;
}

.as-floor-box:hover img {
    transform: scale(1.05);
}

.as-form-card .form-control {
    background: #f8f9fa;
    border: 1px solid #eee;
}

.as-form-card .form-control:focus {
    background: #fff;
    box-shadow: none;
    border-color: #0d6efd;
}

.sticky-top {
    transition: all 0.3s ease;
}

/* For breadcrumbs within header */
.as-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255,255,255,0.5);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}
.as-page-header
{
    margin-top: 80px;
}
.signature-heading
{
    color: #fff;
    font-size: 40px!important;
}
.call-now-main
{
    color: #fff;
}
@media(max-width:700px){
    .as-btn-whatsapp-header
    {
        display: none!important;
    }
    .as-hero-v2-badge
    {
        font-size: 11px!important;
    }
    .as-hero-v2-subtitle
    {
        font-size: 12px!important;
    }
    .as-hero-v2-stats h4
    {
        font-size: 16px!important;
    }
    .as-dev-title
    {
        font-size: 25px!important;
    }
    .as-dev-v2-title
    {
        font-size: 25px!important;
    }
    .as-loc-v2-title
    {
        font-size: 25px!important;
    }
    .as-float-btn
    {
        width: 45px!important;
        height: 45px!important;
    }
    .as-about-v3-lead
    {
        font-size: 15px;
    }
    .as-about-v3-single-point
    {
        padding: 14px;
    }
    .as-cta-v2-desc
    {
        font-size: 14px!important;
        margin: 20px auto 19px;
    }
    .as-loc-v2-overlay
    {
        padding: 12px!important;
    }
    .as-dev-v2-count
    {
        font-size: 13px;
    }
    .as-dev-v2-img-box img
    {
        max-width: 65px!important;
    }
    .as-dev-v2-card
    {
        padding: 10px!important;
    }
    .as-ft-desc
    {
        font-size: 14px;
    }
    .as-ft-links li
    {
        font-size: 14px;
    }
    .as-ft-contact-box p
    {
        font-size: 14px;
    }
    .as-ft-bottom p
    {
        font-size: 12px;
    }
    .as-about-v3-img-grid
    {
        margin-top: 10px;
        padding: 0px;
    }
    .as-blog-v2-body
    {
        padding: 18px;
    }
    .as-blog-v2-excerpt
    {
        margin-bottom: 12px;
        font-size: 14px;
    }
    .as-blog-v2-link
    {
        font-size: 13px;
    }
    .as-popular-tags span, .as-popular-tags a
    {
        font-size: 10px;
        margin-right: 5px;
    }
    .as-search-v2-form button
    {
        font-size: 10px;
    }
    .as-search-v2-form,.form-control
    {
        font-size: 9px!important;
    }
    .as-hero-v2-stats p
    {
        font-size: 10px;
    }
    
}

.as-page-header h1
{
    font-size: 35px!important;
}