@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --default-font: "Poppins", "Roboto", system-ui, -apple-system, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", "Ubuntu", sans-serif;
  --nav-font: "Poppins", "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #f9fafb; /* Background color for the entire website, including individual sections */
  --default-color: #333333; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #102a49; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #611556; /* 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: #333333; /* The default color of the main navmenu links */
  --nav-hover-color: #14529d; /* 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: #333333; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #14529d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* ---------- Tokens ---------- */
:root {
  --ql-text: #0c3b5e; /* Primary text on light tiles */
  --ql-panel: #f5f7fa; /* Container panel bg */
  --ql-card: #ffffff;
  --ql-border: #0d4c81;
  --ql-focus: #1c7ed6;

  /* Tile theme colors (background + border) */
  --t1-bg: #d9e8ff;
  --t1-br: #8fb7ff; /* Newsletter - soft blue   */
  --t2-bg: #ffe8b2;
  --t2-br: #ffc247; /* Analytics  - soft amber  */
  --t3-bg: #cff2c9;
  --t3-br: #58c66d; /* Acts/Rules - soft green  */
  --t4-bg: #cff0f2;
  --t4-br: #62d1d9; /* Achievements - aqua      */
  --t5-bg: #e5dbff;
  --t5-br: #b79bff; /* E‑Gov     - lilac        */
  --t6-bg: #ffd9c9;
  --t6-br: #ffa57f; /* Schemes   - peach        */
}

/* 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: #eff1f3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #14529d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #252525;
  --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: var(--default-font);
}

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: var(--heading-font);
}

/* 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: linear-gradient(90deg, #0D4C81 0%, #0D4C81 100%); */
  background: #ffffff;
  color: rgb(35, 34, 34);
  transition: all 0.5s;
  z-index: 999;
  background-color: var(--background-color);
}

.header .topbar {
  /* background: linear-gradient(90deg, #0D4C81  0%, #0D4C81  100%); */
  background-color: #0d4c81;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 2px solid #ffffff21;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}
body {
  animation: none !important;
}
.header .logo {
  line-height: 1;
  width: 10%;
}

.header .logo img {
  max-height: auto;
  /* margin-right: 8px; */
  width: auto;
  height: 80px;
  border-radius: 5px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* .scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
} */

/*--------------------------------------------------------------
# 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: #080808;
    padding: 18px 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: #f89d2c;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #fff;
    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: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    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: linear-gradient(90deg, #611556 0%, #762337 100%);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 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;
  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(--accent-color);
  border-color: var(--accent-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: 10px 0;
  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 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* .scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 6px;
  bottom: 0px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
} */
/* 
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
*/
/* .scroll-top.active {
  visibility: visible;
  opacity: 1;
}  */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}
.page-title {
  min-height: 300px; /* jitna height chahiye utna de sakte ho */
  display: flex;
  align-items: center; /* vertically center */
  justify-content: center; /* horizontally center container */
  text-align: center;
  padding: 40px 0;
}

.content-center {
  width: 100%;
}

.page-title p {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
  position: relative;
}
.page-title h1 {
  font-size: 24px;
  font-weight: 700;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  /*box-shadow: 0px 4px 4px 0px #0000004D;*/
  line-height: 1.2;
  color: white;
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
  z-index: 99;
  position: relative;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.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 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 105px 0;
  background-color: var(--background-color);
  overflow: hidden;
}

.hero::before {
  /*content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/banner-home-page.png");
  background-size: cover;
  background-position: center;
  opacity:1;
  z-index: 0;*/
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}
.hero-content h2 {
  color: #fff;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0px;
  /*box-shadow: 0px 4px 4px 0px #0000004D;*/
  line-height: 1.2;
  color: white;
  font-family: Poppins;
  font-weight: 700;
  font-style: Bold;
  font-size: 43px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
}
.hero .hero-content h3 {
  color: #fff;
}
@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 15px;
  margin-bottom: 30px;
  color: white;
  position: relative;

  word-break: break-word;
}
.hero .hero-content .bannertext:before {
  content: "";
  position: absolute;
  width: 3px;
  height: -webkit-fill-available;
  left: -10px;
  background: white;
}
.hero .hero-content .bannertext {
  margin-left: 10px;
  width: 100%;
}
.park-slider .card {
  position: relative;
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.hero .hero-buttons .btn-primary {
  display: inline-block;
  padding: 17px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 17px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  background: white;
}

.hero .hero-buttons .btn-secondary:hover {
  background: transparent;
  color: white;
  border: 1px solid white;
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  color: black;
}

/*.about .about-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}*/

.about .about-content .lead {
  margin-bottom: 1.5rem;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #232323;
  line-height: 106%;
  text-align: justify;
}

.about .about-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about .achievement-boxes .achievement-box {
  padding: 1.2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.about .achievement-boxes .achievement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about .achievement-boxes .achievement-box h3 {
  margin-bottom: 0.3rem;
  color: black;
  font-family: Poppins;
  font-weight: 600;
  font-size: 25px;
  line-height: 141%;
}

.about .achievement-boxes .achievement-box p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-family: Poppins;
  font-weight: 500;
  line-height: 141%;
}

.about .certifications h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about .certifications img {
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.about .certifications img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.about .cta-container .btn-primary {
  background-color: #0d4c81;
  border-color: #0d4c81;
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about .cta-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image {
  position: relative;
}

.about .about-image .main-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about .about-image .image-overlay {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 50%;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about .about-image .image-overlay img {
  border: 5px solid var(--background-color);
}

.about .about-image .experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about .about-image .experience-badge p {
  font-size: 0.8rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
}

@media (max-width: 991.98px) {
  .about .about-image {
    margin-top: 3rem;
  }

  .about .about-image .image-overlay {
    bottom: -40px;
    right: -20px;
  }

  .about .about-image .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    left: -20px;
  }

  .about .about-image .experience-badge span {
    font-size: 1.5rem;
  }

  .about .about-image .experience-badge p {
    font-size: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .about .achievement-boxes .achievement-box {
    padding: 1rem;
  }

  .about .achievement-boxes .achievement-box h3 {
    font-size: 1.8rem;
  }

  .about .achievement-boxes .achievement-box p {
    font-size: 0.8rem;
  }

  .about .about-image .image-overlay {
    bottom: -30px;
    right: 0;
    width: 40%;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .service-card {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-card.featured {
  border: 2px solid var(--accent-color);
}

.services .service-card.featured .service-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-card .service-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 0 0 0 8px;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.services .service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-card p {
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.services .service-card .service-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.services .service-card .service-features span i {
  color: var(--accent-color);
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card .service-link:hover {
  gap: 0.75rem;
}

.services .service-image-block {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services .service-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .service-list-block {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.services .service-list-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-list-block p {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services .service-list-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services .service-list-item .service-list-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-list-item .service-list-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .service-list-item .service-list-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.services .service-list-item .service-list-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container {
  margin-top: 5rem;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 10px;
}

.services .cta-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .cta-container p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .cta-container .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services .service-list-block {
    margin-top: 2rem;
  }

  .services .service-card {
    padding: 2rem;
  }

  .services .cta-container {
    padding: 2rem;
  }

  .services .cta-container h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services .service-list-item {
    flex-direction: column;
    gap: 1rem;
  }

  .services .service-list-item .service-list-icon {
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .projects-grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;*/
}

@media (max-width: 992px) {
  .projects .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.projects .project-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  /*min-height: 280px;*/
}

.projects .project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-item:hover .project-visual img {
  transform: scale(1.08);
}

.projects .project-item:hover .project-link {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.projects .project-item:hover .project-link i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .projects .project-item {
    flex-direction: column;
    min-height: auto;
  }
}

.projects .project-content {
  flex: 1;
  padding: 30px;
  /*display: flex;*/
  flex-direction: column;
  justify-content: space-between;
  background: #f0d655;
}

@media (max-width: 768px) {
  .projects .project-content {
    padding: 25px;
  }
}

.projects .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.projects .project-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.projects .project-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects .project-status.completed {
  background: #22c55e;
  color: #ffffff;
}

.projects .project-status.in-progress {
  background: var(--accent-color);
  color: #ffffff;
}

.projects .project-status.planning {
  background: #f59e0b;
  color: #ffffff;
}

.projects .project-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .projects .project-title {
    font-size: 20px;
  }
}

.projects .project-details {
  margin-bottom: 0px;
}

.projects .project-info {
  margin-bottom: 20px;
}

.projects .project-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.projects .project-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .projects .project-specs {
    flex-direction: column;
    gap: 8px;
  }
}

.projects .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.projects .spec-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects .project-location i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.projects .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.projects .project-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.projects .project-visual {
  flex: 0 0 400px;
  position: relative;
  overflow: hidden;
}
.project-item {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .projects .project-visual {
    flex: none;
    height: 200px;
  }
}

.projects .project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projects .project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.projects .project-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-slide {
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  min-height: 400px;
  border-radius: 25px;
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--accent-color), transparent 97%)
  );
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: 4px solid var(--accent-color);
}

.testimonials .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonials .stars-rating {
  display: flex;
  gap: 0.5rem;
}

.testimonials .stars-rating i {
  color: #ffc107;
  font-size: 1.25rem;
}

.testimonials .quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .quote-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.testimonials .testimonial-body {
  margin: 2.5rem 0;
}

.testimonials .testimonial-body p {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--heading-color);
  margin: 0;
  position: relative;
}

.testimonials .testimonial-footer {
  margin-top: 2.5rem;
}

.testimonials .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .author-details {
  text-align: left;
}

.testimonials .author-details h4 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.testimonials .author-details .role {
  display: block;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonials .author-details .company {
  display: block;
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.testimonials .swiper-navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .swiper-pagination {
  position: static !important;
  margin: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static !important;
  width: 50px;
  height: 50px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
  font-size: 1.25rem;
  color: var(--contrast-color);
  font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .testimonials .testimonial-slide {
    padding: 2.5rem 2rem;
    min-height: 350px;
  }

  .testimonials .testimonial-body p {
    font-size: 1.125rem;
  }

  .testimonials .author-avatar {
    width: 70px;
    height: 70px;
  }

  .testimonials .author-details h4 {
    font-size: 1.25rem;
  }

  .testimonials .quote-icon {
    width: 50px;
    height: 50px;
  }

  .testimonials .quote-icon i {
    font-size: 1.25rem;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-slide {
    padding: 2rem 1.5rem;
    min-height: 300px;
  }

  .testimonials .testimonial-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonials .testimonial-body {
    margin: 2rem 0;
  }

  .testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonials .author-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .testimonials .author-details {
    text-align: center;
  }

  .testimonials .author-details h4 {
    font-size: 1.125rem;
  }

  .testimonials .author-details .role {
    font-size: 0.9375rem;
  }

  .testimonials .author-details .company {
    font-size: 0.875rem;
  }

  .testimonials .swiper-navigation-wrapper {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
/* .certifications {
  padding: 100px 0;
  background: #FDF9E9;
} */

.certifications {
  background-image: url(../img/jk_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.certifications .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  color: black;
}

.certifications .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

.certifications .badge-highlight {
  display: flex;
  align-items: center;
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.certifications .badge-highlight img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.certifications .badge-highlight .badge-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.certifications .badge-highlight .badge-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.certifications .certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.certifications .certification-grid .cert-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.certifications .certification-grid .cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.certifications .certification-grid .cert-card:hover::before {
  transform: scaleY(1);
}

.certifications .certification-grid .cert-card:hover .cert-icon img {
  transform: scale(1.1);
}

.certifications .certification-grid .cert-card .cert-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.8rem;
}

.certifications .certification-grid .cert-card .cert-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.certifications .certification-grid .cert-card .cert-details {
  flex: 1;
}

.certifications .certification-grid .cert-card .cert-details h5 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
}

.certifications .certification-grid .cert-card .cert-details .cert-category {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.certifications .certification-grid .cert-card .cert-details p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
}

.certifications .achievements-banner {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 12px 40px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-top: 3rem;
}

.certifications .achievements-banner .achievement-item {
  padding: 1rem;
}

.certifications .achievements-banner .achievement-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.certifications .achievements-banner .achievement-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.certifications .achievements-banner .achievement-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .certifications .certification-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certifications .certification-grid .cert-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .certifications .certification-grid .cert-card .cert-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .certifications {
    padding: 80px 0;
  }

  .certifications h2 {
    font-size: 2.2rem;
  }

  .certifications .badge-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .certifications .badge-highlight img {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .certifications .cert-card {
    flex-direction: column;
    text-align: center;
  }

  .certifications .cert-card .cert-icon {
    margin: 0 auto;
  }

  .certifications .achievements-banner {
    padding: 2rem 1rem;
  }

  .certifications .achievements-banner .achievement-item {
    margin-bottom: 2rem;
  }

  .certifications .achievements-banner .achievement-item:last-child {
    margin-bottom: 0;
  }

  .certifications .achievements-banner .achievement-item h3 {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease-in-out;
  height: 100%;
  background: #f0d655;
  border: 1px solid #818181;
  text-align: center;
}

.team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.team .team-card.featured .team-header {
  display: flex;
  padding: 30px;
  gap: 25px;
  align-items: flex-start;
  padding-bottom: 20px;
}

.team .team-card.featured .team-header .team-image {
  position: relative;
  flex-shrink: 0;
}

.team .team-card.featured .team-header .team-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}

.team .team-card.featured .team-header .team-image .experience-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.team .team-card.featured .team-header .team-info {
  flex: 1;
}

.team .team-card.featured .team-header .team-info h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.team .team-card.featured .team-header .team-info .position {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team .team-card.featured .team-header .team-info .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team .team-card.featured .team-header .team-info .contact-info a {
  color: var(--default-color);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.team .team-card.featured .team-header .team-info .contact-info a i {
  color: var(--accent-color);
  font-size: 16px;
}

.team .team-card.featured .team-header .team-info .contact-info a:hover {
  color: var(--accent-color);
}

.team .team-card.featured .team-details {
  padding: 0 30px 0px 30px;
}

.team .team-card.featured .team-details p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team .team-card.featured .team-details .credentials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.team .team-card.featured .team-details .credentials .cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 15px;
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.team .team-card.featured .team-details .credentials .cred-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.team .team-card.featured .team-details .credentials .cred-item span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
}

.team .team-card.featured .team-details .social-links {
  display: flex;
  gap: 12px;
}

.team .team-card.featured .team-details .social-links a {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.team .team-card.featured .team-details .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.team .team-card.compact .member-photo {
  position: relative;
  overflow: hidden;
}

.team .team-card.compact .member-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 10%) 0%,
    color-mix(in srgb, var(--heading-color), transparent 20%) 100%
  );
  opacity: 0;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--contrast-color);
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content span {
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team
  .team-card.compact
  .member-photo
  .hover-overlay
  .overlay-content
  .quick-contact {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team
  .team-card.compact
  .member-photo
  .hover-overlay
  .overlay-content
  .quick-contact
  a {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team
  .team-card.compact
  .member-photo
  .hover-overlay
  .overlay-content
  .quick-contact
  a:hover {
  transform: scale(1.1);
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.team .team-card.compact .member-photo:hover .hover-overlay {
  opacity: 1;
}

.team .team-card.compact .member-photo:hover .hover-overlay .overlay-content {
  transform: translateY(0);
}

.team .team-card.compact .member-photo:hover img {
  transform: scale(1.05);
}

.team .team-card.compact .member-summary {
  padding: 20px;
  text-align: center;
}

.team .team-card.compact .member-summary h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.team .team-card.compact .member-summary span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

.team .team-card.compact .member-summary .skills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.team .team-card.compact .member-summary .skills .skill-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 992px) {
  .team .team-card.featured .team-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .team .team-card.featured .team-header .team-image {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .team .team-card.featured .team-header {
    padding: 25px 20px;
  }

  .team .team-card.featured .team-header .team-image img {
    width: 100px;
    height: 100px;
  }

  .team .team-card.featured .team-header .team-info h4 {
    font-size: 20px;
  }

  .team .team-card.featured .team-header .team-info .contact-info a {
    font-size: 13px;
  }

  .team .team-card.featured .team-details {
    padding: 0 20px 25px 20px;
  }

  .team .team-card.featured .team-details .credentials {
    justify-content: center;
  }

  .team .team-card.featured .team-details .credentials .cred-item {
    font-size: 12px;
    padding: 6px 12px;
  }

  .team .team-card.featured .team-details .social-links {
    justify-content: center;
  }

  .team .team-card.featured .team-details .social-links a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .team .team-card.compact .member-photo img {
    height: 200px;
  }

  .team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
    font-size: 18px;
  }

  .team
    .team-card.compact
    .member-photo
    .hover-overlay
    .overlay-content
    .quick-contact
    a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .team .team-card.compact .member-summary {
    padding: 15px;
  }

  .team .team-card.compact .member-summary h5 {
    font-size: 16px;
  }

  .team .team-card.compact .member-summary .skills .skill-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    color-mix(in srgb, var(--accent-color), transparent 98%) 0%,
    color-mix(in srgb, var(--heading-color), transparent 97%) 100%
  );
  z-index: 1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-hero-content .badge-wrapper {
  margin-bottom: 2rem;
}

.call-to-action .cta-hero-content .badge-wrapper .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.call-to-action .cta-hero-content .badge-wrapper .cta-badge i {
  font-size: 1rem;
}

.call-to-action .cta-hero-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .call-to-action .cta-hero-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-hero-content h2 {
    font-size: 2.2rem;
  }
}

.call-to-action .cta-hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
}

.call-to-action .cta-hero-content .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.call-to-action .cta-hero-content .feature-highlights .highlight-item span {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 500;
}

.call-to-action .cta-form-section .form-container {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 80px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

@media (max-width: 768px) {
  .call-to-action .cta-form-section .form-container {
    padding: 30px 25px;
  }
}

.call-to-action .cta-form-section .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.call-to-action .cta-form-section .form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.call-to-action .cta-form-section .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1rem;
  margin: 0;
}

.call-to-action .cta-form-section .form-group {
  margin-bottom: 1rem;
}

.call-to-action .cta-form-section .form-group input,
.call-to-action .cta-form-section .form-group select,
.call-to-action .cta-form-section .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.call-to-action .cta-form-section .form-group input:focus,
.call-to-action .cta-form-section .form-group select:focus,
.call-to-action .cta-form-section .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .cta-form-section .form-group input::placeholder,
.call-to-action .cta-form-section .form-group select::placeholder,
.call-to-action .cta-form-section .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.call-to-action .cta-form-section .form-group select {
  cursor: pointer;
}

.call-to-action .cta-form-section .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.call-to-action .cta-form-section .form-actions {
  margin-top: 2rem;
  text-align: center;
}

.call-to-action .cta-form-section .form-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.call-to-action .cta-form-section .form-actions .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-form-section .form-actions .btn-primary i {
  font-size: 1.2rem;
}

.call-to-action .cta-form-section .form-actions .contact-alternative {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.call-to-action .cta-form-section .form-actions .contact-alternative span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action
  .cta-form-section
  .form-actions
  .contact-alternative
  .phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action
  .cta-form-section
  .form-actions
  .contact-alternative
  .phone-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.call-to-action
  .cta-form-section
  .form-actions
  .contact-alternative
  .phone-link
  i {
  font-size: 1rem;
}

.call-to-action .cta-form-section .trust-indicators {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .cta-form-section .trust-indicators .trust-item {
  text-align: center;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-icon {
  margin-bottom: 10px;
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .cta-form-section .trust-indicators .trust-item .trust-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.call-to-action
  .cta-form-section
  .trust-indicators
  .trust-item
  .trust-content
  .trust-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.call-to-action
  .cta-form-section
  .trust-indicators
  .trust-item
  .trust-content
  .trust-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .call-to-action .cta-hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-sidebar {
  position: sticky;
  top: 120px;
}

.service-details .service-sidebar .service-overview-card,
.service-details .service-sidebar .quick-info-card,
.service-details .service-sidebar .contact-action-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details .service-sidebar .service-overview-card {
  text-align: center;
}

.service-details .service-sidebar .service-overview-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), black 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-details .service-sidebar .service-overview-card .service-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.service-details .service-sidebar .service-overview-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-details .service-sidebar .service-overview-card p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-details .service-sidebar .service-overview-card .service-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-details
  .service-sidebar
  .service-overview-card
  .service-stats
  .stat-item {
  text-align: center;
}

.service-details
  .service-sidebar
  .service-overview-card
  .service-stats
  .stat-item
  .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.service-details
  .service-sidebar
  .service-overview-card
  .service-stats
  .stat-item
  .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
}

.service-details .service-sidebar .quick-info-card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details
  .service-sidebar
  .quick-info-card
  .info-grid
  .info-row:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row .label {
  color: var(--default-color);
  font-weight: 500;
  font-size: 0.95rem;
}

.service-details .service-sidebar .quick-info-card .info-grid .info-row .value {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-details .service-sidebar .contact-action-card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-sidebar .contact-action-card .contact-text {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-details .service-sidebar .contact-action-card .contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-details
  .service-sidebar
  .contact-action-card
  .contact-methods
  .contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details
  .service-sidebar
  .contact-action-card
  .contact-methods
  .contact-btn
  i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.service-details
  .service-sidebar
  .contact-action-card
  .contact-methods
  .contact-btn
  span {
  color: var(--default-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-details
  .service-sidebar
  .contact-action-card
  .contact-methods
  .contact-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.service-details
  .service-sidebar
  .contact-action-card
  .contact-methods
  .contact-btn:hover
  i,
.service-details
  .service-sidebar
  .contact-action-card
  .contact-methods
  .contact-btn:hover
  span {
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-action-card .btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-action-card .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.service-details .service-main-content .hero-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-details .service-main-content .hero-section img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-details .service-main-content .hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.service-details .service-main-content .hero-section .hero-overlay .hero-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.service-details
  .service-main-content
  .hero-section
  .hero-overlay
  .hero-badge
  i {
  font-size: 1.1rem;
}

.service-details .service-main-content .content-section {
  margin-bottom: 3rem;
}

.service-details .service-main-content .content-section h1 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.service-details .service-main-content .content-section .content-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

.service-details
  .service-main-content
  .content-section
  .content-intro
  p:last-child {
  margin-bottom: 0;
}

.service-details .service-main-content .capabilities-grid {
  margin-bottom: 4rem;
}

.service-details .service-main-content .capabilities-grid h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-details .service-main-content .capabilities-grid .capability-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.service-details
  .service-main-content
  .capabilities-grid
  .capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-details
  .service-main-content
  .capabilities-grid
  .capability-card
  .capability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), black 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-details
  .service-main-content
  .capabilities-grid
  .capability-card
  .capability-icon
  i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.service-details .service-main-content .capabilities-grid .capability-card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-main-content .capabilities-grid .capability-card p {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.service-details .service-main-content .methodology-section h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline {
  position: relative;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 50%)
  );
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item {
  position: relative;
  padding-left: 120px;
  margin-bottom: 3rem;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item:last-child {
  margin-bottom: 0;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), black 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-marker
  .phase-number {
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-content {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-content
  h4 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-content
  p {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-content
  .phase-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-content
  .phase-features
  li {
  color: var(--default-color);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-details
  .service-main-content
  .methodology-section
  .methodology-timeline
  .timeline-item
  .timeline-content
  .phase-features
  li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 600;
}

.service-details .portfolio-showcase .showcase-header {
  margin-bottom: 2rem;
}

.service-details .portfolio-showcase .showcase-header h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .portfolio-showcase .showcase-header p {
  color: var(--default-color);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-details .portfolio-showcase .project-showcase-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.service-details .portfolio-showcase .project-showcase-item .project-image {
  position: relative;
  height: 100%;
  min-height: 250px;
}

.service-details .portfolio-showcase .project-showcase-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay
  .project-info {
  text-align: center;
  color: var(--contrast-color);
  padding: 1.5rem;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay
  .project-info
  h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay
  .project-info
  p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay
  .project-info
  .view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay
  .project-info
  .view-btn
  i {
  font-size: 1.2rem;
}

.service-details
  .portfolio-showcase
  .project-showcase-item
  .project-image
  .project-overlay
  .project-info
  .view-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 20%);
  transform: scale(1.1);
}

.service-details
  .portfolio-showcase
  .project-showcase-item:hover
  .project-image
  img {
  transform: scale(1.05);
}

.service-details
  .portfolio-showcase
  .project-showcase-item:hover
  .project-image
  .project-overlay {
  opacity: 1;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    position: static;
    margin-top: 3rem;
  }

  .service-details .service-main-content .content-section h1 {
    font-size: 2rem;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline::before {
    left: 30px;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline
    .timeline-item {
    padding-left: 100px;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline
    .timeline-item
    .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline
    .timeline-item
    .timeline-marker
    .phase-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-details .service-sidebar .contact-action-card .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-details .service-main-content .hero-section img {
    height: 250px;
  }

  .service-details .service-main-content .hero-section .hero-overlay {
    padding: 1.5rem;
  }

  .service-details .service-main-content .capabilities-grid .row {
    --bs-gutter-y: 2rem;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline::before {
    display: none;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline
    .timeline-item {
    padding-left: 0;
    text-align: center;
  }

  .service-details
    .service-main-content
    .methodology-section
    .methodology-timeline
    .timeline-item
    .timeline-marker {
    position: relative;
    margin: 0 auto 1.5rem;
  }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .project-header {
  margin-bottom: 60px;
}

.project-details .project-header .project-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .project-header .project-banner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.project-details .project-header .project-banner .banner-badge {
  position: absolute;
  top: 25px;
  left: 25px;
}

.project-details
  .project-header
  .project-banner
  .banner-badge
  .status-indicator {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1e40af 30%)
  );
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .project-header .project-summary {
  padding-left: 50px;
}

.project-details .project-header .project-summary .project-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.project-details .project-header .project-summary .project-tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-details .project-header .project-summary .main-title {
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.project-details .project-header .project-summary .summary-text {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 45px;
}

.project-details .project-header .project-summary .key-metrics .metric-row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.project-details
  .project-header
  .project-summary
  .key-metrics
  .metric-row:last-child {
  margin-bottom: 0;
}

.project-details .project-header .project-summary .key-metrics .metric {
  flex: 1;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.project-details
  .project-header
  .project-summary
  .key-metrics
  .metric
  .metric-title {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.project-details
  .project-header
  .project-summary
  .key-metrics
  .metric
  .metric-data {
  display: block;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .project-details .project-header .project-summary {
    padding-left: 0;
    margin-top: 40px;
  }

  .project-details .project-header .project-banner img {
    height: 350px;
  }

  .project-details .project-header .main-title {
    font-size: 2.2rem;
  }

  .project-details .project-header .key-metrics .metric-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .project-details .project-header .project-tags {
    flex-wrap: wrap;
  }
}

.project-details .visual-showcase {
  margin-bottom: 80px;
}

.project-details .visual-showcase .showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .visual-showcase .showcase-grid .showcase-item.large {
  grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item.tall {
  grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  padding: 30px 20px 20px;
}

.project-details
  .visual-showcase
  .showcase-grid
  .showcase-item
  .item-overlay
  .overlay-label {
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .project-details .visual-showcase .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .project-details .visual-showcase .showcase-grid .showcase-item.large,
  .project-details .visual-showcase .showcase-grid .showcase-item.tall {
    grid-row: span 1;
  }
}

.project-details .detailed-breakdown {
  margin-bottom: 80px;
}

.project-details .detailed-breakdown .breakdown-content h3 {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list {
  margin-top: 40px;
}

.project-details
  .detailed-breakdown
  .breakdown-content
  .achievement-list
  .achievement-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.project-details
  .detailed-breakdown
  .breakdown-content
  .achievement-list
  .achievement-point:last-child {
  margin-bottom: 0;
}

.project-details
  .detailed-breakdown
  .breakdown-content
  .achievement-list
  .achievement-point
  .achievement-marker {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.project-details
  .detailed-breakdown
  .breakdown-content
  .achievement-list
  .achievement-point
  .achievement-marker
  i {
  color: var(--accent-color);
  font-size: 18px;
}

.project-details
  .detailed-breakdown
  .breakdown-content
  .achievement-list
  .achievement-point
  .achievement-details
  h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.project-details
  .detailed-breakdown
  .breakdown-content
  .achievement-list
  .achievement-point
  .achievement-details
  p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .detailed-breakdown .specifications-panel h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .specifications-panel .spec-table {
  margin-bottom: 40px;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .spec-table
  .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .spec-table
  .spec-row:last-child {
  border-bottom: none;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .spec-table
  .spec-row
  .spec-name {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .spec-table
  .spec-row
  .spec-detail {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .progress-indicator
  .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .progress-indicator
  .progress-header
  .progress-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .progress-indicator
  .progress-header
  .progress-percentage {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .progress-indicator
  .progress-bar-container {
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  overflow: hidden;
}

.project-details
  .detailed-breakdown
  .specifications-panel
  .progress-indicator
  .progress-bar-container
  .progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #10b981 40%)
  );
  border-radius: 4px;
  transition: width 0.8s ease;
}

@media (max-width: 992px) {
  .project-details .detailed-breakdown .specifications-panel {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .project-details .detailed-breakdown .specifications-panel {
    padding: 30px 25px;
  }
}

.project-details .technical-gallery .gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.project-details .technical-gallery .gallery-header h3 {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.project-details .technical-gallery .gallery-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.project-details .technical-gallery .tech-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-details .technical-gallery .tech-item:hover {
  transform: translateY(-8px);
}

.project-details .technical-gallery .tech-item:hover .tech-caption {
  background: var(--accent-color);
}

.project-details .technical-gallery .tech-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-details .technical-gallery .tech-item .tech-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: color-mix(in srgb, var(--default-color), transparent 15%);
  color: var(--contrast-color);
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .project-details .technical-gallery .tech-item {
    margin-bottom: 20px;
  }

  .project-details .technical-gallery .tech-item img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-form-container {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.quote .quote-info {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #000 20%) 100%
  );
  padding: 60px 40px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  min-height: 100%;
}

@media (max-width: 992px) {
  .quote .quote-info {
    padding: 40px 30px;
  }
}

.quote .quote-info .quote-content {
  width: 100%;
}

.quote .quote-info h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.quote .quote-info > p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quote .contact-items {
  margin-bottom: 30px;
}

.quote .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quote .contact-item:last-child {
  margin-bottom: 0;
}

.quote .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.quote .contact-item .contact-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.quote .contact-item .contact-details h4 {
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.quote .contact-item .contact-details p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 14px;
  margin: 0;
}

.quote .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.quote .trust-badges .trust-badge {
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 10px 15px;
  border-radius: 25px;
}

.quote .trust-badges .trust-badge i {
  color: var(--contrast-color);
  font-size: 16px;
  margin-right: 8px;
}

.quote .trust-badges .trust-badge span {
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.quote .quote-form-wrapper {
  padding: 60px 40px;
}

@media (max-width: 992px) {
  .quote .quote-form-wrapper {
    padding: 40px 30px;
  }
}

.quote .form-header {
  margin-bottom: 30px;
}

.quote .form-header h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.quote .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
}

.quote .php-email-form .form-group {
  margin-bottom: 20px;
}

.quote .php-email-form input[type="text"],
.quote .php-email-form input[type="email"],
.quote .php-email-form input[type="tel"],
.quote .php-email-form select,
.quote .php-email-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.quote .php-email-form input[type="text"]:focus,
.quote .php-email-form input[type="email"]:focus,
.quote .php-email-form input[type="tel"]:focus,
.quote .php-email-form select:focus,
.quote .php-email-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.quote .php-email-form input[type="text"]::placeholder,
.quote .php-email-form input[type="email"]::placeholder,
.quote .php-email-form input[type="tel"]::placeholder,
.quote .php-email-form select::placeholder,
.quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.quote .php-email-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 50px;
  appearance: none;
}

.quote .php-email-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote .php-email-form button[type="submit"] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .quote .quote-info {
    text-align: center;
  }

  .quote .quote-info .contact-items {
    max-width: 400px;
    margin: 30px auto;
  }

  .quote .quote-info .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quote .quote-form-container {
    border-radius: 10px;
  }

  .quote .quote-info {
    padding: 30px 20px;
  }

  .quote .quote-info h3 {
    font-size: 24px;
  }

  .quote .quote-form-wrapper {
    padding: 30px 20px;
  }

  .quote .form-header h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 40%)
  );
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(
    120deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), var(--accent-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 30%)
  );
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service
  .tos-content
  .content-section
  .prohibited-list
  .prohibited-item
  span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service
  .tos-content
  .content-section
  .disclaimer-box
  ul
  li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 98%) 100%
  );
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service
  .tos-contact
  .contact-box
  .contact-content
  .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}
/* section.education-wrapper.section-gap{
 background-image: url(../img/jk_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
} */
/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .park-slider .card.active {
    flex: 0 0 100% !important;
  }
  .about .about-content h2 {
    font-size: 23px !important;
  }
  .timeline {
    display: none !important;
  }
  h2 {
    font-size: 23px !important;
  }
  .about-overlay img {
    display: none;
  }
  .video-btn {
    position: relative !important;
    transform: translate(0%, 50%) !important;
  }
  .topbar {
    display: none !important;
  }
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.chip {
  display: inline-block;
  padding: 0.35rem 2.6rem;
  background: #fff;
  color: #691b4a !important;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(123, 31, 58, 0.06);
  font-size: 13px !important;
}

.swiper.heroSwiper .swiper-slide {
  transition: opacity 1.5s ease-in-out !important;
  position: relative;
}
.swiper.heroSwiper .swiper-button-next {
  display: none !important;
}
.hero {
  background-color: transparent !important;
}
/* --- Hide arrows completely --- */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

.heroSwiper {
  position: relative;
}
/* --- Pagination vertical right side --- */
.heroSwiper .swiper-pagination {
  position: absolute !important;
  inset: 0 auto 0 auto !important; /* RESET */

  right: 20px !important;
  left: auto !important;

  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  z-index: 999 !important;
  width: auto !important;
  height: auto !important;
}

/* --- Default bullets --- */
.heroSwiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* --- Active bullet --- */
.heroSwiper .swiper-pagination-bullet-active {
  background-color: white !important;
  border: 3px solid white !important;
  opacity: 1 !important;
  width: 20px;
  height: 20px;
  background: #0d4c81 !important;
  border: 9px solid #fff;
  color: #fff;
  padding: 3px;
  opacity: 1 !important;
}

.hero-bg-1 {
  background-image: url("../img/banner3.jpg");
  background-size: cover;
  background-position: center;
  @media (max-width: 500px) {
    background-image: url("../img/banner-sm-2.png");
  }
}

.hero-bg-2 {
  background-image: url("../img/walking-img.png");
  background-size: cover;
  background-position: center;
  max-width: 100%;
  height: auto;
  @media (max-width: 500px) {
    background-image: url("../img/banner-sm-3.png");
  }
}

.hero-bg-3 {
  background-image: url("../img/mountain-valley.jpg");
  background-size: cover;
  background-position: center;
}

/* For time being hide above bg image from slider */
#hide-for-mobile-asofnow {
  @media (max-width: 500px) {
    display: none;
  }
}

.hero-bg-4 {
  background-image: url("../img/digital-city.jpg");
  background-size: cover;
  background-position: center;
  @media (max-width: 500px) {
    background-image: url("../img/digital-city-sm.png");
  }
}

.swiper-slide section {
  position: relative;
  z-index: 2;
  width: 100%;
}

.park-slider .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.park-slider .swiper-slide:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 29%);
  z-index: 1;
  height: 100px;
  top: 78%;
  transition: 0.5s;
}
.searchicon {
  background: #d9d9d940;
  border: 1px solid #dcdcdc61;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.searchicon i {
  margin-left: 0px !important;
}
.searchicon:hover {
  background: #eee7e77d;
}
.marquee-text {
  /* position: relative;
    height: 52px;
    background: linear-gradient(90deg, #611556 0%, #762337 100%);*/
}
.marquee-text .latest-upd {
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  padding: 14px 20px;
  background-color: #f0d655;
  color: black;
  z-index: 99;
}
marquee ul li a {
  color: white;
}
/*.marquee-text .latest-upd::before {
    content: "";
    position: absolute;
    top: 0;
    right: -13%;
    width: 14%;
    height: 100%;
    background-color:#F0D655;
    clip-path: polygon(0 0, 0% 100%, 100% 133%);
}*/

marquee ul {
  gap: 80px;
  margin-bottom: 0;
  align-items: center;
  margin-top: 13px;
}
marquee ul li {
  list-style: none;
  display: flex;
  gap: 4px;
  font-size: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wht-float {
  position: fixed;
  line-height: 45px;
  bottom: 12px;
  right: 0px;
  color: #f0d655;
  border-radius: 0px 0px 20px 20px;
  text-align: center;
  font-size: 26px;
  z-index: 999999;
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  border: 1px solid #dcdcdc61;
  transform: rotate(90deg) translateY(100%);
  transform-origin: right bottom;
}
#pmMitraModal {
  z-index: 9999999;
}
.whtsapp-btn a button {
  color: #f0d655;
}
.custom-search-offcanvas {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.search-box {
  width: 60%;
  position: relative;
  animation: fadeSlide 0.5s ease forwards;
  transform: translateY(20px);
  opacity: 0;
}

@keyframes fadeSlide {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  font-size: 18px;
  border-radius: 50px;
  border: 2px solid #ddd;
  transition: 0.3s ease;
}

.search-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #007bff;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-icon:hover {
  transform: translateY(-50%) scale(1.1);
}
.utility-items .util-item {
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}

.utility-items .util-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  height: 18px;
  width: 1px;
  background: #bbb; /* Light grey separator */
}
/*about iamge*/
.about-main {
  float: right;
  position: relative;
}
.about-overlay {
  position: relative;
}
.about-main {
  position: relative;
  display: inline-block;
}

/* EXACT SAME YELLOW SHAPE */
/*.about-main::before {
    content: "";
    position: absolute;
        top: -40px;
    right: 0;
    width: 95%;
    height: 224px;      
    background: #E6CF52; 
    clip-path: polygon(
        0% 35%,    
        100% 0%,   
        100% 60%,   
        0% 60%     
    );

    z-index: 0;
}*/
.about-overlay {
  position: relative;
}
/*.about-overlay::before {
    content: "";
    position: absolute;
    top: -40px;
    right: 0;
    width: 95%;
    height: 224px;      
    background: #E6CF52; 
    clip-path: polygon(
        0% 35%,    
        100% 0%,   
        100% 60%,   
        0% 60%     
    );

    z-index: 0;
}*/
.about-overlay img {
  /* position: absolute;
    top: 152px;
    z-index: 8;
    left: 0px;
    height: 426px;
    object-fit: cover;*/
}

.about-main img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}
section#about {
  background-image: url(../img/About_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
section#services {
  background-image: url(../img/bg-7parks.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

footer#footer {
  background-image: url(../img/Footer-gradient-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  color: black;
}
.lead {
  margin-bottom: 1.5rem;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #232323;
  line-height: 141%;
}
.park-slider {
  display: flex;
  gap: 20px;
  padding: 0px;
  height: 430px;
  background: transparent;
}

/* DEFAULT LOOK */
.park-slider .card {
  position: relative;
  flex: 0 0 180px; /* All cards half width initially */
  height: 100%;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.45s ease;
}

/* FIRST CARD = FULL BY DEFAULT */
.park-slider .card.active {
  flex: 0 0 50%;
}

/* CARD IMAGE */
.park-slider .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* HOVER EFFECT = CARD EXPANDS */
.park-slider .card:hover {
  flex: 0 0 60%;
}

/* OTHER CARDS SHRINK WHEN ONE IS HOVERED */
.park-slider:hover .card {
  flex: 0 0 150px; /* others shrink */
}

.park-slider .card:hover {
  flex: 0 0 60%; /* hovered card full */
  z-index: 2;
}

.park-slider .card:hover img {
  transform: scale(1.15);
}

/* TEXT OVERLAY */
.info {
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 3;
}

.info h3 {
  margin: 0;
  font-family: Poppins;
  font-weight: 700;
  font-size: 17px;
  line-height: 29px;
  color: white;
}

.info a {
  color: #fff;
  margin-top: 8px;
  display: inline-block;
  text-decoration: none;
}
.mySwipernew .swiper-button-next,
.swiper-button-prev {
  display: block !important;
  @media (max-width: 500px) {
    display: none !important;
  }
}
.video-btn {
  position: relative;
}
.pulse-effect {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  position: absolute;
  top: 13%;
  z-index: 99;
  left: 35%;
  background: #6c1c47;
  line-height: 60px;
  text-align: center;
}
.pulse-effect i {
  left: 38%;
  top: 36%;
  color: #fff;
  font-size: 25px;
}
.circle1 {
  position: absolute;
  background-color: inherit;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  opacity: 0.5;
  animation: pulse 3s ease-out infinite;
  background: #8e4f61;
  top: 0px;
}
.circle1:nth-of-type(1) {
  animation-delay: -0.5s;
}
.circle1:nth-of-type(2) {
  animation-delay: -1s;
}
.circle1:nth-of-type(3) {
  animation-delay: -1.5s;
}
@keyframes pulse {
  100% {
    transform: scale(2.75);
    opacity: 0;
  }
}

.mySwipernew .swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important; /* Hide default arrows */
}
.mySwipernew .swiper-button-prev.custom-prev {
  background: #611556;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0px;
}
.mySwipernew .swiper-button-next {
  background: #611556;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  right: 0px;
}

.timeline {
  position: relative;
  margin: 40px 0 0 0;
  padding: 0 80px;
  display: flex;
  justify-content: center; /* CENTER THE WHOLE CONTENT */
  align-items: center;
  position: relative;
  margin: 100px auto;
  width: 80%;
}
.timeline-bar {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: #650d57;
  z-index: 1;
}
.timeline-dot {
  position: absolute;
  top: 32px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  z-index: 2;
  background: #fff;
  border: 2px solid #650d57;
  cursor: pointer;
}
.timeline-dot.active {
  background: #650d57;
  border-color: #650d57;
}
.timeline-label {
  position: absolute;
  top: 0;
  width: 100px;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
}

/* Updated positions for 6 years (2021 to 2026) */
/* ===== Timeline Points (5 points) ===== */
/* .tl1 { left: 10%; }
.tl2 { left: 30%; }
.tl3 { left: 50%; }
.tl4 { left: 67%; }
.tl5 { left: 86%; }
.tl6 { left: 99%; } */

/* ===== Labels positions ===== */
/* .tl-label1 { left: 10%; transform: translateX(-30%); }
.tl-label2 { left: 30%; transform: translateX(-30%); }
.tl-label3 { left: 50%; transform: translateX(-50%); }
.tl-label4 { left: 70%; transform: translateX(-70%); }
.tl-label5 { left: 90%; transform: translateX(-90%); }
.tl-label6 { left: 99%; transform: translateX(-99%); } */
.tl1 {
  left: 10%;
}
.tl2 {
  left: 25%;
}
.tl3 {
  left: 41%;
}
.tl4 {
  left: 59%;
}
.tl5 {
  left: 77%;
}
.tl6 {
  left: 92%;
}

.tl-label1 {
  left: 10%;
  transform: translateX(-30%);
}
.tl-label2 {
  left: 25%;
  transform: translateX(-30%);
}
.tl-label3 {
  left: 41%;
  transform: translateX(-50%);
}
.tl-label4 {
  left: 59%;
  transform: translateX(-70%);
}
.tl-label5 {
  left: 77%;
  transform: translateX(-90%);
}
.tl-label6 {
  left: 99%;
  transform: translateX(-99%);
}

.explore_gallery .swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
  padding-bottom: 50px;
}

/*.card-custom { box-shadow: 0 6px 24px rgba(101,13,87,0.15); border-radius: 18px; padding: 32px;}*/
.timeline-slider .swiper {
  padding-bottom: 60px;
}
.timeline-slider .swiper-pagination-bullet-active {
  background: #650d57 !important;
}

/* for the time being added */

span[aria-label="Go to slide 4"] {
  @media (max-width: 500px) {
    display: none;
  }
}

.timeline-slider .swiper-button-prev {
  background: #0d4c81;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0px;
}
.timeline-slider .swiper-button-next {
  background: #0d4c81;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  right: 0px;
}
.timeline-slider .swiper-button-next {
  display: block !important;

  @media (max-width: 500px) {
    display: none !important;
  }
}
.timeline-slider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}
.timeline-slider .swiper-slide::after {
  background: transparent !important;
}
/* Remove default border */
.custom-tabs {
  border-bottom: none;
}

/* Normal inactive tabs */
.custom-tabs .nav-link {
  border: none;
  background: transparent;
  color: #5a4d57;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  border-radius: 50px;
}

/* Dotted line under each tab */
.custom-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  border-bottom: 2px dotted #a07f9b;
}

/* Active tab styling */
.custom-tabs .nav-link.active {
  background: #650d57;
  color: #fff !important;
  border-radius: 50px;
}

/* Remove dotted under active */
.custom-tabs .nav-link.active::after {
  border: none;
}
.tabingsite {
  background: #f0d6551a;
  border: 1px solid #d4d4d4;
  padding: 20px;
}
.bgftr {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}
section#team {
  /* background-image: url(../img/sustainability.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fcfcfc;
}
.imgesection_scheme {
  width: 100%;
}
section#projects {
  background-image: url(../img/bg-about.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
}
.call-to-action {
  position: relative;
  background: #fdf9e9;
}
.news-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}
.news-scroll::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* fixed width so 2 cards visible */
.news-card {
  min-width: 300px;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(101, 13, 87, 0.1);
  display: flex;
  align-items: center;
}
.news-img {
  width: 120px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 18px;
}

/* rest same */
/* Tabs Styles */
.news-tabs {
  display: flex;
  gap: 40px;
  border-bottom: none;
}

.news-tabs .nav-link {
  background: transparent;
  border: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.news-tabs .nav-link.active {
  background: #650d57;
  color: #fff !important;
}

/* News Cards */
.news-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(101, 13, 87, 0.1);
}

.news-img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 18px;
}

.news-text h4 {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.news-meta {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.read-more {
  font-weight: 600;
  color: #650d57;
  text-decoration: none;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}

.read-more:hover {
  text-decoration: underline;
}
.instagramsection {
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.pm-footer {
  background: linear-gradient(90deg, #0d4c81, #0d4c81);
  padding: 30px 0 12px;
  color: #fff;
  font-family: "Poppins";
}

.footer-logo {
  width: 277px;
  border-radius: 5px;
}

.footer-text {
  max-width: 260px;
  line-height: 1.6;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.8;
}

/* Container */
.about-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 500px; */
  margin-left: auto;
}

/* BACK IMAGE */
.about-main .main-img {
  width: 92%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* FRONT IMAGE CONTAINER */
.about-overlay {
  position: absolute;
  left: 43%;
  transform: translateX(-100%);
  width: 60%;
  top: 120px;
  z-index: 9;
}

/* FRONT IMAGE (Modi Ji) */
.overlay-img {
  width: 100%;
  border-radius: 12px;
  /*box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);*/
  display: block;
}

/* PLAY BUTTON POSITION */
.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* Button base */
.pulse-effect {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse-effect i {
  font-size: 32px;
  color: red;
}
.mob_fnt h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Pulse animation circles */

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .topbar {
    display: none;
  }
  .about-wrapper {
    max-width: 100%;
  }
  .about-overlay {
    width: 85%;
    bottom: -35px;
  }
}

@media (max-width: 576px) {
  .about-overlay {
    width: 95%;
    bottom: -25px;
  }
}
.aboutusbg {
  background-image: url(../img/about-us-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
  height: 500px;
  position: relative;
}

.MP-dhar-bg.aboutusbg:before {
  background: #00000063;
}
.aboutusbg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000000;
  top: 0px;
  left: 0px;
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #0d4c81;
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;

  @media (max-width: 500px) {
    min-width: -webkit-fill-available !important;
  }
}
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: white;
}
.singles_abouts_boxs {
  position: relative;
  transition: transform 0.8s;
}
.vision-title {
  color: black;
  text-transform: uppercase;
  width: fit-content;
  background: #f0d655;
  padding: 11px 30px;
  border-radius: 5px;
  top: -13px;
  position: absolute;
  font-size: 27px;
  z-index: 1;
  right: 0px;
  transition: transform 0.8s;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
}
.mv-idv {
  overflow: hidden;
  border-radius: 10px;
}
.singles_abouts_boxs img {
  opacity: 0.9;
  border-radius: 10px;
  width: 100%;
}
.abouts_titles {
  width: 70%;
  position: absolute;
  bottom: -55px;
  left: -43px;
  transition: transform 0.8s;
}
.vision:hover .abouts_titles {
  transform: translateX(33%) translateY(-75%) scale(1.2);
  transition: 0.5s all ease;
}
.vision:hover .vision-title {
  transform: translateX(-120%);
  transition: 0.5s all ease;
}
.abouts_titles p {
  font-size: 16px;
  font-weight: 400;
  color: #f4f4f4;
  margin: 0;
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  padding: 30px 30px 30px 30px;
  border-radius: 10px;
  position: relative;
  height: 200px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
}
.Mission-title {
  text-transform: uppercase;
  width: fit-content;
  color: black;
  text-transform: uppercase;
  width: fit-content;
  background: #f0d655;
  padding: 11px 30px;
  border-radius: 5px;
  top: -13px;
  position: absolute;
  font-size: 27px;
  z-index: 1;
  left: 0px;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
  transition: transform 0.8s;
}
.abouts_titless {
  width: 70%;
  position: absolute;
  bottom: -58px;
  right: -25px;
  transition: transform 0.8s;
}
.abouts_titless p {
  font-size: 16px;
  font-weight: 400;
  color: #f4f4f4;
  margin: 0;
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  padding: 30px 30px 30px 30px;
  border-radius: 10px;
  position: relative;
  height: 200px;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
}
.mission:hover .abouts_titless {
  transform: translateX(-27%) translateY(-75%) scale(1.2);
  transition: 0.5s all ease;
  margin: auto;
}
.mission:hover .Mission-title {
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}
.process-flow {
  position: relative;
}

/* Step Box */
.step-box {
  background: transparent;
  padding-right: 30px;
  position: relative;
}

.step-icon {
  width: 55px;
  height: 55px;
  background: #8b1d63;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon i {
  font-size: 28px;
  color: #fff;
}

.step-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
}

.step-box p {
  font-size: 14px;
  color: #666;
}

/* Arrows – Pure CSS */
.arrow-right,
.arrow-left {
  position: absolute;
  top: 30px;
  width: 100%;
  height: 1px;
  background: #000;
}

.arrow-right::after,
.arrow-left::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

/* Right Row Arrows */
.arrow-right {
  right: -20px;
}

.arrow-right::after {
  right: -5px;
  transform: rotate(45deg);
}

/* Left Row Arrows */
.arrow-left {
  left: -20px;
}

.arrow-left::after {
  left: -5px;
  transform: rotate(225deg);
}

/* Remove arrow on last items */
.row .col-md-3:last-child .arrow-right,
.row .col-md-3:last-child .arrow-left {
  display: none;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .arrow-right,
  .arrow-left {
    display: none;
  }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlide 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-marquee-section {
  /*background: #faf6e8;*/
  padding: 20px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 15px 0;
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
}

.marquee-content img {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  width: 150px;
  height: 77px;
  object-fit: contain;
}

/* ⭐ One direction only (Right → Left) */
.marquee .marquee-content {
  animation: oneDirection 20s linear infinite;
}

@keyframes oneDirection {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.pmmitra-services-section {
  padding: 20px 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5d64c;
  padding: 25px 30px;
  border-radius: 18px;
  position: relative;
  border-radius: 7px;
}

.service-text h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-text p {
  margin: 0;
  line-height: 1.6;
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 141%;
  letter-spacing: 0%;
}

.service-icon {
  width: 75px;
  height: 75px;
  background: #7b1e2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -49px;
  bottom: 0px;
  border: 5px solid white;
}

/* Responsive */
@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
    text-align: center;
    border-radius: 18px;
    padding: 20px;
  }

  .service-icon {
    margin-top: 15px;
  }
}
.timehead {
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 38px;
  letter-spacing: 0%;
  color: #262626;
}

.swiper-slide ul li {
  font-size: 18px;
}

.mitra-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mitra-list li {
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.mitra-list li i {
  color: #752339; /* blue icon */
  font-size: 20px;
  margin-right: 10px;
  margin-top: 3px;
}
.highlights-title {
  color: #ffffff;
}
.highlight-area {
  background: #f89d2c;
  /* background: linear-gradient(to right, #6b2358, #882e58); */
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1px 20px 0px 22px;
  box-sizing: border-box;
  /* height: 107.5px; */
  /* height: 150%; */
  min-height: -webkit-fill-available;
  position: relative;
  /* margin-top: -43px; */
  z-index: 9;
  color: #ffffff;
}
.highlight-img {
  width: 122px;
  min-width: 120px;
  height: 83px;
  object-fit: cover;
  border-radius: 0px;
  margin-left: 8px;
}
.highlights-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.highlights-title {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 2px;
  margin-top: 0px;

  @media (max-width: 500px) {
    margin-top: -16px !important;
  }
  /* margin-top: -16px; */
}
.marquee-box {
  overflow: hidden;
  height: 48px; /* Show just one paragraph's height */
  position: relative;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
}
.marquee-inner {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  animation: marqueeUp 15s linear infinite;
}
.marquee-text {
  font-size: 13px;
  width: 100%;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  line-height: 24px;
}
@keyframes marqueeUp {
  0% {
    top: 100%;
  }
  100% {
    top: -200%;
  }
}
@media (max-width: 900px) {
  .highlight-img {
    width: 100px;
    height: 80px;
  }
  .highlight-area {
    height: 140px;
    padding: 20px 12px 12px 15px;
  }
}
@media (max-width: 600px) {
  .container {
    flex-direction: inherit;
  }
  .highlight-area {
    height: auto;
  }
  .highlight-img {
    width: 100%;
    height: 80px;
  }
  .quick-links-label {
    font-size: 13px;
    margin-right: 0px !important;
  }
  .quick-link {
    margin-right: 5px !important;
    font-size: 12px !important;
  }
}

.quick-links-label,
.quick-link {
  margin-right: 0px !important;
}

.links-area {
  background: linear-gradient(to right, #0d4c81, #0d4c81);
  color: #fff;
  flex: 2 1 400px;
  min-width: 300px;
  padding: 26px 18px 22px 32px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /*gap: 19px;*/
  position: relative;
  top: 0px;
  line-height: 16px;
  @media (min-width: 500px) {
    padding: 0% 1%;
    justify-content: space-around;
    min-height: -webkit-fill-available;
  }

  @media (max-width: 500px) {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.quick-links-label {
  font-weight: bold;
  margin-right: 35px;
  font-size: 1.1em;
}
.quick-link {
  margin-right: 45px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.quick-link:hover {
  text-decoration: underline;
}
.faq-icon {
  position: absolute;
  right: 32px;
  top: 22px;
  background: #ecd65f;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg {
  width: 26px;
  height: 26px;
  fill: #611e3d;
}
a:hover {
  color: #f89d2c !important;
}
.Governmentlogo {
  width: 30px;
  margin-right: 10px;
}
.customer-card .customer-content,
.customer-card .customer-inner {
  flex: 1;
}
.thumbnail_slider .thumbnail-slider .thumb {
  width: 107px;
  height: 90px;
  object-fit: fill;
  cursor: pointer;
  border-radius: 6px;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail_slider .thumbnail-slider .thumb:hover,
.thumbnail_slider .thumbnail-slider .thumb.active {
  opacity: 1;
  border-color: #0d6efd;
  transform: scale(1.05);
}
.min-info {
  height: auto;
  line-height: 386px;
  top: 120px;
  position: absolute;
  padding: 0% 2%;
  /* background-color: rgb(13, 76, 129); */

  @media (max-width: 500px) {
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 8px;
    color: #fff;
    top: 223px;
    display: flex;
    flex-wrap: wrap;
    /* background-color: rgb(13, 76, 129); */
  }
}

/* Background images via ::after */
.box1::after {
  background-image: url("../img/bg1.jpg");
}
.box2::after {
  background-image: url("../img/bg2.jpg");
}
.box3::after {
  background-image: url("../img/bg3.jpg");
}
.box4::after {
  background-image: url("../img/bg4.jpg");
}

/* Grid Layout */
.pm-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Card Base */
.pm-box {
  padding: 35px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Background Image Layer */
.pm-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s ease;
  z-index: 0;
}

/* Gradient Overlay */
.pm-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(97 21 86 / 91%) 0%,
    rgb(118 35 55 / 90%) 100%
  );
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

/* Text On Top */
.pm-box * {
  position: relative;
  z-index: 2;
}

/* Hover Zoom Effect */
.pm-box:hover::after {
  transform: scale(1.15);
}

/* Headings */
.pm-box h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

/* List */
.pm-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-box ul li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  line-height: 1.45;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 14px;
}

/* White Chevron Icon */
.icon {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  display: inline-block;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .pm-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pm-section {
    grid-template-columns: 1fr;
  }
}
.pm-pills {
  border-radius: 50px;
}

.pm-pills .nav-link {
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 50px !important;
  transition: 0.3s;
}

/* Same screenshot colors */
.pm-pills .nav-link:nth-child(1),
.pm-pills .nav-item:nth-child(1) .nav-link {
  background: #e9e6e6;
  border-radius: 12px 12px 0px 0px !important;
  color: black;
}

.pm-pills .nav-link:nth-child(2),
.pm-pills .nav-item:nth-child(2) .nav-link {
  background: #e9e6e6;
  border-radius: 12px 12px 0px 0px !important;
  color: black;
}

.pm-pills .nav-link:nth-child(3),
.pm-pills .nav-item:nth-child(3) .nav-link {
  background: #e9e6e6;
  border-radius: 12px 12px 0px 0px !important;
  color: black;
}

/* Active (Bootstrap pill style override) */
.pm-pills .nav-link.active {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  color: #fff !important;
  background: linear-gradient(90deg, #611556 0%, #762337 100%) !important;
  border-radius: 12px 12px 0px 0px !important;
}

.pwc-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  background: #ffffff;
  transition: 0.3s ease;
}

.pwc-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.pwc-title {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
  align-items: center;
  background: #f0d655;
  position: relative;
  margin-top: -43px;
  text-align: center;
  padding: 9px;
  border-radius: 10px;
}

.pwc-icon {
  font-size: 26px;
  color: #d35400; /* PwC Orange */
}

.pwc-list li {
  margin-bottom: 7px;
  color: #555;
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.5rem;
}

.pwc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d35400;
  font-size: 20px;
}

.layout-img-wrapper {
  text-align: center;
  padding: 25px 10px;
}

.layout-img-wrapper img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);*/
  transition: 0.3s ease;
}

.layout-img-wrapper img:hover {
  transform: scale(1.02);
}
/* Accordion Yellow Box Background (like connectivity section boxes) */
.custom-acc .accordion-body {
  background: #fff5d6;
  border-left: 6px solid #f6c944;
  border-radius: 0 10px 10px 0;
  padding: 20px 25px;
  margin-bottom: 16px;
}
div#connectAccordion .accordion-item {
  background: transparent;
  border: none;
}
/* Accordion heading button */
.custom-acc .accordion-button {
  background: #e9d9ef;
  color: #611556;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

/* Active Heading Gradient */
.custom-acc .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  color: #fff;
}

/* Remove default shadow */
.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(20%);
}

.custom-acc .accordion-button:not(.collapsed)::after {
  filter: brightness(1000%) invert(100%);
}

/* List inside accordion */
.custom-acc ul li {
  list-style: none;
  padding: 4px 0;
  font-size: 15px;
}

.custom-acc ul li span {
  font-weight: 600;
  color: #611556;
}

.route-list li strong {
  color: #1a1a1a;
  float: right;
}

/* Icons */
.acc-icon {
  width: 20px;
  height: 20px;
}
.news-text h4 {
  font-size: 14px;
  line-height: 16px;
}
p.news-meta {
  line-height: 22px;
}
.MP-dhar-bg {
  background-image: url(../img/park_4.jpg) !important;
  background-size: cover;
  background-position: center;
  animation: zoomBg 12s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}

.popup-box {
  border-radius: 16px;
  overflow: hidden;
  animation: zoomIn 0.4s ease;
}

.popup-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.popup-content h4 {
  color: #2c2c2c;
}

.popup-content p {
  color: #6c757d;
  margin-bottom: 15px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#pmMitraModal .modal-header {
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
}
#pmMitraModal .modal-header h5 {
  color: white !important;
}
g.highcharts-exporting-group {
  display: none !important;
}
.highcharts-credits {
  display: none !important;
}
.row.card-custom.align-items-center img {
  width: 100%;
}
#container {
  height: 80vh;
}
.closebtns {
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  font-size: 19px;
  height: 15px;
  width: 15px;
  line-height: 17px;
}

.whatsnew p {
  line-height: normal;
  margin-bottom: 2px;
}
.investerimg img {
  width: 76%;
}
.whatsnew .read-more {
  font-size: 11px;
  font-weight: 400;
}
.whatsnew .news-card {
  background: #fff;
  border-radius: 14px;
  padding: 7px;
}
.modal-header .modal-title {
  width: 100%;
  text-align: center;
}
.whatsnew {
  background: #0000005a;
  padding: 8px 15px;
  border-radius: 15px;
}

.investercontaint .info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  margin: 16px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.investercontaint .card-title {
  background: #f4d44d;
  color: #000;
  font-weight: 500;
  text-align: center;
  padding: 7px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.investercontaint .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.investercontaint .card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: #333;
}

.investercontaint .arrow {
  color: #7a1c4b;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.investercontaint .form-wrapper {
  max-width: 700px;
  margin: 20px auto;
  background: #f4da5a;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.investercontaint .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.investercontaint .form-grid input,
.investercontaint .form-grid select {
  width: 100%;
  padding: 7px 10px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #ddd;
}

.investercontaint .form-grid select {
  grid-column: span 2;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.investercontaint .submit-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(90deg, #6d0f4b, #8b1b5e);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.investercontaint .submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.investercontaint ::placeholder {
  color: #999;
}
.investerimg img {
  width: 100%;
}
@media (max-width: 600px) {
  .investercontaint .form-grid {
    grid-template-columns: 1fr;
  }

  .investercontaint .form-grid select {
    grid-column: span 1;
  }
}

.side-btn {
  position: fixed;
  bottom: 8%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  color: #fff;
  padding: 12px 10px;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  width: 45px;
  transition: width 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  z-index: 99;
  display: none;
}

.side-btn span {
  opacity: 0;
  margin-left: 10px;
  transition: opacity 0.3s ease;
}
.side-btn:hover {
  width: 180px;
}
.side-btn:hover span {
  opacity: 1;
}
.right-btn {
  right: 0;
}
.sideicons {
  opacity: 1 !important;
  padding-left: 0px;
  margin: 0px !important;
}
.sideicons .bi {
  font-size: 18px;
  position: relative;
  top: 3px;
}

@media (max-width: 767px) {
  .right-btn {
    right: 45px;
  }
}
.icon_invester {
  height: 32px;
}
body {
  animation: none !important;
}

.lates_whatsnew::-webkit-scrollbar {
  width: 8px;
  border-radius: 20px;
}

/* Track */
.lates_whatsnew::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

/* Handle */
.lates_whatsnew::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px;
}

/* Handle on hover */
.lates_whatsnew::-webkit-scrollbar-thumb:hover {
  background: #555;
  border-radius: 20px;
}
.lates_whatsnew {
  height: 250px;
  overflow: auto;
  padding-right: 8px;
  position: relative;
  max-height: 100vh;
  overflow-y: auto;
}

.servisesection .service-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  padding-top: 10px;
  position: relative;
  height: 267px;
  transition: 0.3s ease;
  border: 2px solid #cfe3ff;
}

.servisesection .service-card:hover {
  transform: translateY(-6px);
}

.servisesection .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.servisesection .service-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #cfe6ff;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border-radius: 0 0 14px 14px;
  font-size: 14px;
}

.mySwiperachivement .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.swiper.mySwiperachivement .swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
  padding-bottom: 50px;
}
.card_text {
  background: #0d4c81;
  width: fit-content;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

/* .swiper-slide img{
      height: 215px;
} */
/* .profile_img img{width: 120px !important;height: 128px;} */
.profile_img img {
  height: 320px;
  object-fit: cover;
  border-radius: 0px !important;
}
#mainSlider .carousel-item {
  position: relative;
  background: #0c3a60;
  padding: 0px;
  border-radius: 5px;
  color: #fff;
  height: 320px;
}
.profile_img {
  position: relative;
  top: 0%;
}
#mainSlider .carousel-item {
  position: relative;
  background: #0c3a60;
  padding: 0px;
  border-radius: 5px;
  color: #fff;
  height: 295px;
}
.min-info h4,
.min-info h5 {
  color: #fff;
}

.skip-content {
  margin-top: 0px;
  text-transform: uppercase;
}

#slider-img-thumnail {
  @media (max-width: 500px) {
    gap: 2px !important;
  }
}

.min-info h4 {
  @media (max-width: 500px) {
    line-height: 23px;
    margin-bottom: 0px;
  }
}

.min-info h5 {
  @media (max-width: 500px) {
    line-height: 20px;
    margin-bottom: 0px;
  }
}

.prime {
  font-size: 14px;
  line-height: 29px;
}

.customer-card {
  transition: transform 0.4s ease;
  /* box-shadow 0.4s ease,
    background 0.4s ease; */
}

.customer-card:hover {
  background: linear-gradient(85deg, #0d4c8100 24%, #0d4c81 100%);
  color: #fff;
  transform: scale(1.08); /* 🔍 zoom */
  box-shadow: 0 15px 40px rgba(13, 76, 129, 0.35);
  z-index: 2;
}
.customer-card:hover .customer-content h5,
.customer-card:hover .customer-content p {
  color: #fff;
}
.customer-card {
  position: relative;
  border-radius: 8px;
  padding: 20px 20px 10px;
  display: flex;
  align-items: center;
  /* width: 550px; */
  /* margin: 6px 0 15px 54px; */
  height: 200px;
  margin-top: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #ebebeb;
  background: #ffffff;
  border-bottom: 3px solid #681a4c;
  box-shadow: 0px 1px 7.8px 0px #00000040;
}

.quote-container img {
  width: 95px;
}
.customer-inner {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.customer-content h5 {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
  color: #08325a;
}
.customer-content p {
  font-weight: 400;
  font-size: 14px;
  color: #575757db;
  margin-bottom: 7px;
}
.text-left {
  text-align: left !important;
}

.mySwiper_scheme .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-inner .btn.btn-light.btn-sm {
  float: right;
}
.mySwiper_scheme .swiper-slide img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.swiper.mySwiper_scheme {
  margin-left: auto;
  margin-right: auto;
}

.team-section .teamSwiper {
  padding: 50px 0;
}
.teamSwiper {
  padding: 60px 0;
}

.team-card {
  background: linear-gradient(135deg, #00b3b3, #00c9a7);
  color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 30px 20px;
  transform: scale(0.9);
  opacity: 0.6;
  transition: 0.4s;
}

.swiper-slide-active .team-card {
  transform: scale(1);
  opacity: 1;
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 15px;
}

.explore_marqee .marquee-wrapper {
  /* background: #f8f9fa; */
  padding: 20px 0;
  overflow: hidden;
}

.explore_marqee .marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.explore_marqee .marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.explore_marqee .marquee-track img {
  /* height: 60px; */
  /* background: #fff; */
  padding: 10px 20px;
  border-radius: 6px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease;
}

.explore_marqee .marquee-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.team-member-wrapper {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.team-swiper {
  position: relative;
  padding-bottom: 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease;
}

.member-card {
  background: white;
  border-radius: 18px;
  padding: 70px 30px 40px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #f5b800;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h3 {
  margin-top: 10px;
  font-size: 20px;
}

.member-card span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

.member-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ACTIVE CENTER SLIDE */
.team-swiper .swiper-slide-active .member-card {
  background: #326e4f;
  color: white;
  transform: scale(1.15) translateY(20px);
}

.team-swiper .swiper-slide-active span {
  color: #fef08a;
  opacity: 1;
}

.team-swiper .swiper-slide-active .avatar {
  width: 120px;
  height: 120px;
  top: -60px;
}

/* NAVIGATION */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #313131;
  border-radius: 6px;
  padding: 10px 14px;
  cursor: pointer;
}

.swiper-button-prev-custom {
  left: -40px;
}

.swiper-button-next-custom {
  right: -40px;
}

/* MOBILE */
@media (max-width: 767px) {
  .team-swiper .swiper-slide-active .member-card {
    transform: none;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    display: none;
  }
}

.team-member-wrapper {
  padding: 90px 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;

  @media (max-width: 500px) {
    padding: 0% 6%;
  }
}

/* Slider */
.team-slider {
  padding-bottom: 60px;
}

.slick-slide {
  padding: 20px;
  transition: transform 0.4s ease;
}

/* Card */
.member-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 70px 30px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

/* Avatar */
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #f5b800;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: all 0.4s ease;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h3 {
  margin: 10px 0 4px;
  font-size: 20px;
}

.member-card span {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

.member-card p {
  font-size: 14px;
  line-height: 1.6;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: #0d4c81;
}
/* CENTER SLIDE */
.slick-center .member-card {
  background-color: #0d4c81;
  color: #ffffff;
  transform: scale(1.15) translateY(24px);
}
.slick-center .member-card h3 {
  color: #fff;
}

.slick-center .member-card span {
  color: #fef08a;
  opacity: 1;
}

.slick-center .avatar {
  width: 120px;
  height: 120px;
  top: -60px;
}

/* Custom arrows */
.slick-prev,
.slick-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #313131;
  border-radius: 6px;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  font-size: 18px;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}
.team-member-wrapper .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
  padding-bottom: 75px;
}

.team-member-wrapper .slick-prev,
.team-member-wrapper .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background: #0d4c81;
}
.team-member-wrapper .slick-next {
  right: -48px;
}
.team-member-wrappe .slick-prev {
  left: -45px;
}
/* Mobile */
@media (max-width: 767px) {
  .slick-center .member-card {
    transform: none;
  }

  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

.swiper.mySwiper_graph {
  padding-bottom: 60px;
}
.mapjammu {
  width: 100%;
}

.team-member-wrapper .slick-prev:hover,
.team-member-wrapper .slick-prev:focus,
.team-member-wrapper .slick-next:hover,
.team-member-wrapper .slick-next:focus {
  color: transparent;
  outline: none;
  background: #0d4c81;
}
/* ===== GALLERY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: auto;
  height: 600px;
}

.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;

  @media (max-width: 500px) {
    overflow: unset;
  }
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery a:hover img {
  transform: scale(1.1);
}

/* ===== SIZE VARIANTS ===== */
.large {
  grid-column: span 2;
  grid-row: span 2;
}

.medium {
  grid-column: span 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .large,
  .medium {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  /* .gallery {
    grid-template-columns: 1fr;
  } */

  .gallery a {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* OUTER CONTAINER */
.marquee-wrapper {
  width: 95%;
  margin: auto;
  overflow: hidden;
}

/* MARQUEE TRACK */
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee-right 20s linear infinite;
  width: max-content;
}

/* LOGO BOX */
.logo-box {
  /* min-width: 153px; */
  height: 80px;
  /* background: #71a68a; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  /* border: 1px solid #6f8f7c; */
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); */
}

.logo-box img {
  /* max-height: 50px; */
  width: auto;
  display: block;
}

/* ANIMATION */
@keyframes marquee-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE SPEED */
@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 30s;
  }
}

#navmenu ul li a button {
  padding: 6px 25px !important;
}

#main-nv-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* horizontal gap between items */
  white-space: nowrap;
  @media (max-width: 500px) {
    display: grid !important;
  }
}

#notification_quicklinks_dv {
  @media (max-width: 500px) {
    margin: 10.5% 0% 0% 0%;
  }
}

#About-Carousel-Main-Img {
  @media (max-width: 500px) {
    max-width: 100%;
    height: auto;
  }
}

#About-Carousel-Main-Img-mandeep-kaur-lg {
  display: none !important;
  @media (min-width: 500px) {
    display: block !important;
  }
}

#About-Carousel-Main-Img-mandeep-kaur-sm {
  display: block !important;
  @media (max-width: 500px) {
    display: block !important;
    object-fit: unset !important;
  }
}

.map-img {
  @media (max-width: 500px) {
    width: 100%;
  }
}

#right-header-logo {
  margin-top: 5%;
  gap: 1rem;
}

#main-hdr-rightleft-logo {
  /* height: 215px; */
  height: 9rem;
  padding-top: 5px;
}

.site-info {
  display: flex;
  justify-content: flex-end;
  @media (max-width: 500px) {
    justify-content: center;
  }
}

.site-info span:nth-child(2) {
  margin-right: 16px;
}

.footer-left {
  display: flex;
  justify-content: center;
}

.hdr-secondary-icon {
  margin-top: 1rem;
}

#whatNew-mobile-section {
  @media (max-width: 500px) {
    gap: 1rem;
  }
}

/* #whatNew-mobile-section div:nth-child(2) img {
  max-width: 100%;
} */

.carousel-inner {
  border-radius: 15px;
}

.main-emblem-dv {
  margin-top: 4%;
}

.quick-link-tile {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

/* ---------- Layout for quick links ---------- */
.quick-links {
  /* background: var(--ql-panel); */
  padding: 16px;
  border-radius: 12px;
}
.quick-links h2 {
  margin: 0 0 12px;
  font-size: 1.375rem; /* ~22px */
  color: var(--ql-text);
}

/* Stacked list (desktop will still look neat; mobile friendly) */
.ql-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Tile as full-width band */
.ql-tile {
  display: grid;
  grid-template-columns: 56px 1fr; /* icon block + label */
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 2px solid var(--ql-border);
  background: var(--ql-card);
  text-decoration: none;
  color: var(--ql-text);
  transition: transform 0.02s ease, box-shadow 0.15s ease;
  /* WCAG 2.2 SC 2.5.8: ≥24x24 target */
  min-width: 24px;
  min-height: 24px;
}

.ql-tile:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--ql-focus);
}

/* Icon circle matches tile border color (visual hook) */
.ql-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: var(--ql-text);
  background: #fff; /* keeps good contrast */
  border: 2px solid var(--ql-border);
}

.ql-label {
  font-size: 1rem; /* 16px */
  font-weight: 700;
}

/* ---------- Themed tiles (like your screenshot) ---------- */
.ql-tile.t1 {
  background: var(--t1-bg);
  border-color: var(--t1-br);
}
.ql-tile.t2 {
  background: var(--t2-bg);
  border-color: var(--t2-br);
}
.ql-tile.t3 {
  background: var(--t3-bg);
  border-color: var(--t3-br);
}
.ql-tile.t4 {
  background: var(--t4-bg);
  border-color: var(--t4-br);
}
.ql-tile.t5 {
  background: var(--t5-bg);
  border-color: var(--t5-br);
}
.ql-tile.t6 {
  background: var(--t6-bg);
  border-color: var(--t6-br);
}

/* Make the icon ring pick up its tile color */
.t1 .ql-icon {
  border-color: var(--t1-br);
}
.t2 .ql-icon {
  border-color: var(--t2-br);
}
.t3 .ql-icon {
  border-color: var(--t3-br);
}
.t4 .ql-icon {
  border-color: var(--t4-br);
}
.t5 .ql-icon {
  border-color: var(--t5-br);
}
.t6 .ql-icon {
  border-color: var(--t6-br);
}

/* Hover: small lift; ensure motion is subtle */
.ql-tile:hover {
  transform: translateY(-1px);
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  /* Two columns of tiles on tablet/desktop, still full colored bands */
  .ql-stack {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.ql-stack li {
  border: 1px solid black !important;
  border-radius: 0.5rem;
  height: 9rem;
}

.ql-stack li .row {
  margin: 13% 0%;
  gap: 1rem;
}

.ql-stack li .row .col-lg-12 {
  display: flex;
  justify-content: center;
}

.ql-stack li .row .col-lg-12 .ql-label {
  text-align: center;
}

.ql-stack li:nth-of-type(1) {
  background: var(--t1-bg);
  border-color: var(--t1-br) !important;
}

.ql-stack li:nth-of-type(2) {
  background: var(--t2-bg);
  border-color: var(--t2-br) !important;
}

.ql-stack li:nth-of-type(3) {
  background: var(--t3-bg);
  border-color: var(--t3-br) !important;
}

.ql-stack li:nth-of-type(4) {
  background: var(--t4-bg);
  border-color: var(--t4-br) !important;
}

.ql-stack li:nth-of-type(5) {
  background: var(--t5-bg);
  border-color: var(--t5-br) !important;
}

.ql-stack li:nth-of-type(6) {
  background: var(--t6-bg);
  border-color: var(--t6-br) !important;
}

.ql-stack li {
  transform: scale(1);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
  will-change: transform; /* performance hint */
}

.ql-stack li:hover {
  transform: scale(1.04);
}

#main-img-slider{
  padding: 0% 1% 0% 1%;
  @media (max-width:500px) {
    padding: 0% 3% 0% 3%;
  }
}
