@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Base Color Schemes */

:root {
  --primary-color: #0d4c81;
}

/*  */

: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 !important;
  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; */
    min-width: 20px;
  }

  .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;
}

#footer {
  padding: 0px !important;
}

/*--------------------------------------------------------------
# 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: 0px 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;
  }
}

.team-member-wrapper > div > div > div {
    @media (min-width: 700px) {
        margin-top: -51px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

#about > div > h2 {
  padding-top: 1.5%;
  margin-bottom: 0px;
}

.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.8rem;
  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: var(--primary-color);
  border-color: var(--primary-color);
  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) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: bottom !important;
}



.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%);
}

#pie-chart-wrap{
  @media (min-width:700px) {
    height: 284px;
  }
  
}

#analytical-dshbrd-tb table {
    min-width: unset;
}

.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-image: url("../img/main-slider-first-img-lg.png");
  background-size: cover;
  background-position: center;
  /* object-fit:fill; */
  @media (max-width: 500px) {
    background-image: url("../img/main-slider-first-img.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/meeting-room.jpg");
  background-size: cover;
  background-position: center;
  @media (max-width:500px) {
    background-image: url("../img/meeting-room-sm.png");
  }
}

/* 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/banner3.jpg");
  background-size: cover;
  background-position: center;
  /* @media (max-width: 500px) {
    background-image: url("../img/jmc-office.png");
  } */
}

.hero-bg-5{
  background-image: url("../img/fresh-7.JPG");
  background-size: cover;
  background-position: center;
}

.hero-bg-6{
  background-image: url("../img/fresh-5-1.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-bg-7{
  background-image: url("../img/fresh-9.png");
  background-size: cover;
  background-position: center;
}

.hero-bg-8{
  background-image: url("../img/swacchta-pakhdawa-11.png");
  background-size: cover;
  background-position: center;
}

.hero-bg-9{
  background-image: url("../img/swachhta-pakhdawa-10-new.jpeg");
  background-size: cover;
  background-position: center;
}
.hero-bg-10 {
  /* background-image: url("../img/banner3.jpg"); */
  background-image: url("../img/main-slider-last-img-new.jpeg");
  background-size: cover;
  background-position: center;
  /* object-fit:fill; */
  @media (max-width: 500px) {
    background-image: url("../img/main-slider-last-img-new.jpeg");
  }
}

.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;
}

#about {
  padding-top: 0px;
  padding-bottom: 0px;
  @media (max-width: 500px) {
    padding-top: 2%;
  }
}

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-image: url(../img/footer-bg-img.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;
}

.tl1 {
  left: 10%;
}
.tl2 {
  left: 25%;
}
.tl3 {
  left: 41%;
}
.tl4 {
  left: 59%;
}
.tl5 {
  left: 77%;
}
.tl6 {
  left: 92%;
}

.tl7 {
  left: 95%;
}

.tl-label1 {
  left: 9%;
  transform: translateX(-30%);
}
.tl-label2 {
  left: 24%;
  transform: translateX(-30%);
}
.tl-label3 {
  left: 41.75%;
  transform: translateX(-50%);
}
.tl-label4 {
  left: 61.5%;
  transform: translateX(-70%);
}
.tl-label5 {
  left: 81.5%;
  transform: translateX(-90%);
}
.tl-label6 {
  left: 97.5%;
  transform: translateX(-99%);
}
.tl-label7 {
  left: 110%;
  transform: translateX(-110%);
}

.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: #84575c !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: #0d4c81 !important;
  border-color: #0d4c81 !important;
  color: var(--contrast-color) !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 500 !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.bgftr:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}


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-size: 1rem;
  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;
  text-align: justify;
}

.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;
  @media (min-width:700px) {
    height: 433px;
  }
}

/* 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: 40px;
  position: absolute;
  padding: 0% 2%;
  /* background-color: rgb(13, 76, 129); */

  @media (max-width: 500px) {
    position: absolute;
    bottom: 30%;
    left: 0%;
    background: transparent;
    /*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); */
  }
}

.min-info h4,h5 {
      display: block;
    width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
}

/* 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 {
  border-radius: 5% !important;
  margin: 16% 0% 0% 12%;
  width: 200px !important;
  height: 200px !important;
  object-fit: fill !important;

  @media (max-width: 500px) {
    border-radius: 4% !important;
    height: 213px !important;
    width: 244px !important;
    margin: auto !important;
  }
}
#mainSlider .carousel-item {
  position: relative;
  background: #0c3a60;
  padding: 0px;
  border-radius: 5px;
  color: #fff;
  height: 320px;
}


.profile_img {
  position: relative;
  top: 0%;
  @media (max-width:676px) {
    right:auto;
  }
}
#mainSlider .carousel-item {
  position: relative;
  background: #0c3a60;
  padding: 0px;
  border-radius: 5px;
  color: #fff;
  height: 295px;
}
  @media (max-width: 676px) {
#mainSlider .carousel-item {
  height: 480px;
}
  }
.min-info h4,
.min-info h5 {
  color: #fff;
}

.skip-content {
  margin-top: 0px;
  text-transform: uppercase;
}

#slider-img-thumnail {
  display: flex;
  justify-content: space-between;
  @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: 5;
  height:200px;
}
.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;
  height: 200px;
  margin-top: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #ebebeb;
  background: #ffffff;
  border-bottom: 3px solid #0d4c81;
  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; */
  font-size: 1.3rem;
  line-height: 28px;
  margin-bottom: 10px;
  color: #08325a;
}
.customer-content p {
  font-weight: 400;
  font-size: 12px;
  color: #575757db;
  margin-bottom: 7px;
}

.customer-content h6{
  margin-bottom: 2px;
}

.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; */
  height: 352px;
  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;
      background: #ffffff !important;
    padding: 0px !important;
}

.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: 12%;
  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-prev { 
  @media (max-width:500px) {
     width: 20px;
   height: 20px;
   background: transparent;
  }
}

.team-member-wrapper .slick-next { 
  @media (max-width:500px) {
     width: 20px;
   height: 20px;
   background: transparent;
  }
}


.team-member-wrapper .slick-next {
  right: -48px;
  @media (max-width:500px) {
    right:-8px !important;
  }
}
/* .team-member-wrappe .slick-prev {
  left: -45px;
} */

.slick-prev {
    left: -48px !important;
    @media (max-width:500px) {
      left:-8px !important;
    }
}


/* Mobile */
@media (max-width: 767px) {
  .slick-center .member-card {
    transform: none;
  }
  /* image slider */
  .slick-prev,
  .slick-next {
    /* display: none !important; */
    display: block !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: 100%;
  margin: 0px;
  overflow: hidden;
  @media (max-width:500px) {
    width: 95%;
    margin: auto;
  }
}

/* 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: 0% 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: none !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: 1%;
  gap: 1rem;
  @media (max-width:500px) {
    margin-top: 5%;
  }
}

#main-hdr-left-logo {
  height: 6rem;
  /* padding-top: 5px; */
}

#main-hdr-right-logo {
  height: 5.5rem;
  padding-top: 0px; 
  @media (max-width:500px) {
    padding-top: 5px;
  }
}

.site-info {
  display: flex;
  justify-content: flex-end;
  @media (max-width: 500px) {
    justify-content: center;
  }
}

.site-info > span {
  color:#000000;
}

#ftr-bottom-copyright-txt{
  color: #000000;
}

.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: 2%;
}

.quick-link-tile {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

/* ---------- Layout for quick links ---------- */
.ql-stack {
  @media (min-width: 700px) {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}

.quick-links {
  /* background: var(--ql-panel); */
  padding: 16px 0px;
  /* border-radius: 12px; */
  @media (max-width: 500px) {
    padding-left: 2%;
    padding-right: 2%;
  }
}
.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: 60px;
  height: 60px;
  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-icon img {
  width: 38px;
}

.ql-label {
  color: #000000;
  font-weight: 700;
  font-size: 16px;
}

/* ---------- 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;
  }
}


section.quick-links {
  /* your styles */
  @media (min-width:700px) {
    padding-left: 7px;
    padding-right: 5px;
  }
}

section.quick-links.ul > * {
  @media (min-width:700px) {
    width: 12rem !important;
  }
}


.ql-stack li {
  border: 1px solid black !important;
  /* border-radius: 0.5rem; */
  border-radius: 5px;
  height: 9rem;
}

.ql-stack li .row {
  margin: 13% 0%;
  gap: 1rem;
  @media (max-width:500px) {
  margin: 7.5% 0% 13% 0%;
  }
}

.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: #dddddd;
  border: none !important;
}

.ql-stack li:nth-of-type(1):hover {
  background: #0d4c81;
  border: none !important;
}

.ql-stack li:nth-of-type(1):hover .ql-label {
  color: white;
}


.ql-stack li:nth-of-type(2) {
  background: #dddddd;
  border: none !important;
}

.ql-stack li:nth-of-type(2):hover {
  background: #0d4c81;
  border: none !important;
}

.ql-stack li:nth-of-type(2):hover .ql-label {
  color: white;
}

.ql-stack li:nth-of-type(3) {
  background: #dddddd;
  border: none !important;
}

.ql-stack li:nth-of-type(3):hover {
  background: #0d4c81;
  border: none !important;
}

.ql-stack li:nth-of-type(3):hover .ql-label {
  color: white;
}

.ql-stack li:nth-of-type(4) {
  background: #dddddd;
  border: none !important;
}

.ql-stack li:nth-of-type(4):hover {
  background: #0d4c81;
  border: none !important;
}

.ql-stack li:nth-of-type(4):hover .ql-label {
  color: white;
}

.ql-stack li:nth-of-type(5) {
  background: #dddddd;
  border: none !important;
}

.ql-stack li:nth-of-type(5):hover {
  background: #0d4c81;
  border: none !important;
}

.ql-stack li:nth-of-type(5):hover .ql-label {
  color: white;
}

.ql-stack li:nth-of-type(6) {
  background: #dddddd;
  border: none !important;
}

.ql-stack li:nth-of-type(6):hover {
  background: #0d4c81;
  border: none !important;
}

.ql-stack li:nth-of-type(6):hover .ql-label {
  color: white;
}

.ql-stack li {
  transform: scale(1);
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out;
  will-change: transform; /* performance hint */
  position: relative;
  z-index: 0;
}

.ql-stack li:hover {
  transform: scale(1.04);
  z-index: 10;
  /* transform : 0.2s ease; */
}

#main-img-slider {
  padding: 0%;
  @media (max-width: 500px) {
    padding: 0%;
  }
}

/* Check for citizen eservice card */

/*===============Truncate Card Paragraph================ */

  /* Wider, readable tooltip for full paragraph */
 /* =============================
       Card-like Tooltip (Production)
       ============================= */

    /* Scope all styles to our custom tooltip class */
/* ================================
   BASE: Keep your existing styles
   ================================ */

.truncate-tooltip.tooltip {
  z-index: 1085;
}

.truncate-tooltip,
.truncate-tooltip .tooltip-inner {
  --bs-tooltip-bg: #ffffff;
  --bs-tooltip-color: #1f2a37;
  --bs-tooltip-opacity: 1;
  --bs-tooltip-border-radius: 10px;
  --bs-tooltip-arrow-color: #ffffff;
  --bs-tooltip-padding-x: 10px;
  --bs-tooltip-padding-y: 8px;
}

.truncate-tooltip .tooltip-inner {
  max-width: 210px;
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  font-size: 0.85rem;
  line-height: 1.25;
  white-space: normal;
  text-align: left;
  background-color: var(--bs-tooltip-bg);
  color: var(--bs-tooltip-color);
  border-radius: var(--bs-tooltip-border-radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.06);
}

.truncate-tooltip.show .tooltip-inner {
  transition: box-shadow 120ms ease, transform 120ms ease;
  transform: translateY(-1px);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.14),
    0 3px 10px rgba(0,0,0,0.07);
}

@media (max-width: 576px) {
  .truncate-tooltip .tooltip-inner {
    max-width: min(82vw, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .truncate-tooltip.show .tooltip-inner {
    transition: none;
    transform: none;
  }
}

/* ================================
   NEW: REAL POINTED TRIANGLE ARROW
   ================================ */

/* Set arrow size */
.truncate-tooltip {
  --tt-arrow-size: 8px;
  --tt-border-color: rgba(0, 0, 0, 0.08);
}

/* Remove Bootstrap default arrow border */
.truncate-tooltip .tooltip-arrow::before {
  border: none !important;
}

/* ------- TOP placement ------- */
.bs-tooltip-top.truncate-tooltip .tooltip-arrow::after,
[data-popper-placement^="top"].truncate-tooltip .tooltip-arrow::after {
  content:"";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-left: var(--tt-arrow-size) solid transparent;
  border-right: var(--tt-arrow-size) solid transparent;
  border-top: var(--tt-arrow-size) solid var(--bs-tooltip-bg);
}

/* Border under arrow (light outline) */
.bs-tooltip-top.truncate-tooltip .tooltip-arrow::before,
[data-popper-placement^="top"].truncate-tooltip .tooltip-arrow::before {
  content:"";
  position:absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-right: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-top: calc(var(--tt-arrow-size) + 1px) solid var(--tt-border-color);
}

/* ------- BOTTOM placement ------- */
.bs-tooltip-bottom.truncate-tooltip .tooltip-arrow::after,
[data-popper-placement^="bottom"].truncate-tooltip .tooltip-arrow::after {
  content:"";
  position:absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-left: var(--tt-arrow-size) solid transparent;
  border-right: var(--tt-arrow-size) solid transparent;
  border-bottom: var(--tt-arrow-size) solid var(--bs-tooltip-bg);
}

.bs-tooltip-bottom.truncate-tooltip .tooltip-arrow::before,
[data-popper-placement^="bottom"].truncate-tooltip .tooltip-arrow::before {
  content:"";
  position:absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-left: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-right: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-bottom: calc(var(--tt-arrow-size) + 1px) solid var(--tt-border-color);
}

/* ------- LEFT placement ------- */
.bs-tooltip-start.truncate-tooltip .tooltip-arrow::after,
[data-popper-placement^="left"].truncate-tooltip .tooltip-arrow::after {
  content:"";
  position:absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: var(--tt-arrow-size) solid transparent;
  border-bottom: var(--tt-arrow-size) solid transparent;
  border-left: var(--tt-arrow-size) solid var(--bs-tooltip-bg);
}

.bs-tooltip-start.truncate-tooltip .tooltip-arrow::before,
[data-popper-placement^="left"].truncate-tooltip .tooltip-arrow::before {
  content:"";
  position:absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-top: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-bottom: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-left: calc(var(--tt-arrow-size) + 1px) solid var(--tt-border-color);
}

/* ------- RIGHT placement ------- */
.bs-tooltip-end.truncate-tooltip .tooltip-arrow::after,
[data-popper-placement^="right"].truncate-tooltip .tooltip-arrow::after {
  content:"";
  position:absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: var(--tt-arrow-size) solid transparent;
  border-bottom: var(--tt-arrow-size) solid transparent;
  border-right: var(--tt-arrow-size) solid var(--bs-tooltip-bg);
}

.bs-tooltip-end.truncate-tooltip .tooltip-arrow::before,
[data-popper-placement^="right"].truncate-tooltip .tooltip-arrow::before {
  content:"";
  position:absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-top: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-bottom: calc(var(--tt-arrow-size) + 1px) solid transparent;
  border-right: calc(var(--tt-arrow-size) + 1px) solid var(--tt-border-color);
}

    .more-link.btn.btn-link:hover,
    .more-link.btn.btn-link:focus {
      color: #0a2f4b;
      text-decoration: underline;
      outline: none;
      box-shadow: none;             /* remove default focus ring since it’s link-styled */
    }


  /* Make “…more” look like a link (not a big button) */
  .more-link.btn.btn-link {
    padding: 0 !important;
    font-weight: 600 !important;
    vertical-align: baseline !important;
    color: #0c3b5e !important;
    font-size: 0.9rem !important;
    background: transparent !important;
    border: none !important;
  }

#citizen-service-section-title{
  font-size: 2rem;
    color: var(--ql-text);
  @media (min-width:700px) {
     padding-top: 2% !important;
    padding-bottom: 1%;
  }

  @media (max-width:500px) {
    padding-bottom: 1.25%;
    padding-top: 4% !important;
  }
  
}

/* Stylying for anayltical dashboard */

/* ---------- CSS Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    "Helvetica Neue",
    Arial,
    "Noto Sans",
    "Liberation Sans",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

:root {
  --bg: #f2f5f9;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --text: #111827;
  --muted: #6b7280;
  --primary-600: #0d3b66;
  --primary-500: #134a80;
  --accent-400: #f59e0b; /* yellow line */
  --info-400: #38bdf8; /* blue line */
  --border: #e5e7eb;
  --radius-lg: 14px;
  --radius-md: 12px;
  --shadow-1: 0 6px 22px rgba(17, 24, 39, 0.08);
  --container-max: 1280px;
}

.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.88)
  );
}

.container {
  max-width: var(--container-max);
  margin: 28px auto 48px;
  padding: 0 16px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0px;
  @media (min-width:700px) {
    padding-left: 1.5% !important;
    padding-right: 1.5% !important;
  }
  @media (max-width:500px) {
    padding-left:4% !important;
  }
}
.title {
  font-weight: 800;
  font-size: clamp(1.4rem, 0.9rem + 2vw, 2.2rem);
  letter-spacing: 0.3px;
  color: var(--primary-600);
}
.updated {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- Tabs ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: var(--surface);
  padding: 8px;
  overflow: auto hidden;
  margin-bottom: 18px;
  @media (max-width) {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.tabs [role="tab"] {
  appearance: none;
  border: 1px solid transparent;
  background: var(--surface-2);
  color: var(--primary-600);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.tabs [role="tab"]:hover {
  background: #eef2f7;
}
.tabs [role="tab"][aria-selected="true"] {
  background: rgb(182 181 181 0.55);
  color: #fff;
}

/* ---------- KPIs ---------- */
.kpi-grid {
  display: grid;
  /* grid-template-columns: repeat(6, minmax(0, 1fr)); */
  grid-auto-flow: column;
  grid-auto-columns: 1fr; 
  gap: 8px;
  grid-auto-rows: 1fr; 

  @media (max-width:500px) {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 1200px) {
  .kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kpi {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  height: 98px !important;                 /* or 600px, or 100% (if ancestors define height) */
  grid-template-rows: 64% 36%;
  /* place-items: center; */

}
.kpi .label {
  color: var(--muted);
  /* font-size: 0.92rem; */
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  display: flex;
  align-items:center;
  line-height: 19px;
}
.kpi .value {
  font-weight: 500;
  font-size: 1.35rem;
}

/* ---------- Charts & Content ---------- */
.content-row {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  /* grid-template-columns: 1.7fr 1.3fr; */
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .content-row {
    grid-template-columns: 1fr;
  }
}

.chart-card {
  padding: 14px 16px 12px;
}
.card-title {
  font-weight: 700;
  margin: 6px 0 10px;
}

.legend {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.key {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.dot-actual {
  background: var(--info-400);
}
.dot-target {
  background: var(--accent-400);
}

/* Make canvases responsive with a fixed aspect ratio area */
.chart-wrap {
  position: relative;
  width: 100%;
  height: 320px;
}
@media (max-width: 640px) {
  .chart-wrap {
    height: 280px;
  }
}

/* ---------- Table ---------- */
.table-card {
  padding: 14px 16px 12px;
}
.table-wrapper {
  overflow: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 560px;
  font-size: 0.95rem;
}
thead th {
  position: sticky;
  top: 0;
  background: #1f2937;
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
}
tbody td {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: #fff;
}
tbody tr:hover td {
  background: #f7fafc;
}

/* ---------- Panels ---------- */
.tabpanel {
  margin-top: 6px;
}
.tabpanel[hidden] {
  display: none !important;
}

.footnote {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
  text-align: right;
}

#new-analytical-dshbrd {
  /* min-width: fit-content; */
  background: transparent;
  padding-top: 20px; /*sharique changes*/
  padding-bottom: 20px;
  @media (min-width:700px) {
    min-width: fit-content;
  }
}

#dshbrd-btns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  @media (max-width: 500px) {
    grid-template-columns: 1fr;
  }
}

.dashboard-header .title {
  color: black;
  font-size: 2.5rem;
}

.tabs [role="tab"]#tab-bd {
  background: #d2e8fd;
  color: #000000;
  border-radius: 16px;
  @media (min-width:700px) {
        white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }
}

.tabs [role="tab"]#tab-bp {
  background: #ffe8b2;
  color: #000000;
  border-radius: 16px;
   @media (min-width:700px) {
        white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }
}

.tabs [role="tab"]#tab-tl {
  background: #cff2c9;
  color: #000000;
  border-radius: 16px;
   @media (min-width:700px) {
        white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }
}

.tabs [role="tab"]#tab-pt {
  background: #e0d2f0;
  color: #000000;
  border-radius: 16px;
   @media (min-width:700px) {
        white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }
}

.tabs [role="tab"]#tab-clu {
  background: #e0d2f0;
  color: #000000;
  border-radius: 16px;
   @media (min-width:700px) {
        white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }
}

.tabs [role="tab"][aria-selected="true"] {
    background-color: #0d4c81 !important;
    color: #fff !important;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
}

#eTender-section {
  padding: 0% 1%;
}

.tenders-title {
  color: #0d4c81;
  font-size: 2rem;
}

#pdfModalTitle{
  font-size: 1rem;
}

#panel-bd,
#panel-bp,
#panel-tl,
#panel-pt {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Tender Section Styling */

:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #0b5ed7;
  --primary-600: #0a58ca;
  --border: #e5e7eb;
  --table-head-bg: #2f2f2f;
  --table-head-text: #ffffff;
  --chip: #eef2ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
}

.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* Breadcrumb */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb li[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--muted);
}

/* Title Row */
.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.page-title {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: #0c3c60;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: #f3f4f6;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-600);
}

.btn-outline {
  background: #0b5ed712;
  color: #0b5ed7;
  border-color: #0b5ed7;
}
.btn-outline:hover {
  background: #0b5ed724;
}

/* Table */
.table-wrapper {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  /* Horizontal scroll for narrow screens */
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 880px; /* keep layout on narrow view; scroll when needed */
}

thead th {
  background: var(--table-head-bg);
  color: var(--table-head-text);
  text-align: left;
  padding: 12px;
  font-weight: 700;
  border-right: 1px solid #4b4b4b;
}
thead th:last-child {
  border-right: none;
}

tbody td {
  padding: 12px;
  border-top: 1px solid var(--border);
  vertical-align: top;
}
tbody tr:nth-child(even) td {
  background: #fafafa;
}

/* Tender No & Date structure */
.tender-no {
  font-weight: 700;
}
.tender-date {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Download column */
.actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.icon-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}
.icon-btn:hover {
  background: #f8fafc;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  flex-wrap: wrap;
}
.page-link {
  color: #0d4c81;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-link[aria-current="page"],
.page-link.active {
  background: #0d4c81;
  color: #fff;
  border-color: var(--primary);
}
.page-link:hover {
  background: #f8fafc;
}

/* Modal (dialog) styling */
dialog {
  width: min(1000px, 95vw);
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.35);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.modal-body {
  height: min(75vh, 800px);
}
.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #f3f4f6;
}
.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn.btn-outline {
    align-self: flex-end;
  }
}

.tenders-section {
  padding: 0%;
}

.tenders-section .container .title-row .page-title {
  min-height: 70px;
  @media (max-width: 500px) {
    align-self: center;
  }
}

.tenders-section .container .title-row a {
  @media (max-width: 500px) {
    align-self: normal;
  }
}

[data-label="Download Details"] .actions > .btn {
  /* @media (max-width:500px) { */
  width: -webkit-fill-available;
  /* } */
}

/* Positioning in header cell */
.th-filter {
  position: relative;
  white-space: nowrap;
}
.th-filter > span {
  margin-right: 0.5rem;
}

/* Funnel button */
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background: #fff;
  color: #364152;
  cursor: pointer;
  margin-left: 4px;
}
.filter-btn:hover {
  background: #f6f8fa;
}
.filter-btn[aria-pressed="true"],
.filter-btn.active {
  color: #0a4d8c;
  border-color: #0a4d8c;
  background: #e7f1fb;
}

/* Dropdown panel */
.filter-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 10;
  min-width: 240px;
  max-height: 280px;
  overflow: auto;
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(140, 149, 159, 0.2);
  padding: 8px 0;
}

/* Options */
.filter-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: #24292f;
}
.filter-option:hover,
.filter-option[aria-selected="true"] {
  background: #f6f8fa;
}
.filter-option .count-badge {
  color: #57606a;
  font-size: 12px;
}

/* "Clear filter" row */
.filter-clear {
  border-top: 1px solid #f0f3f6;
  margin-top: 6px;
  padding-top: 6px;
}
.filter-clear .filter-option {
  color: #a30a0a;
}

/* No-data row */
.table-empty {
  text-align: center;
  color: #6b7280;
}

/* Tender archive */

:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #0b5ed7;
  --primary-600: #0a58ca;
  --border: #e5e7eb;
  --row-bg-alt: #f8fafc;
  --chip: #e6f4ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
}

.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px;
}

/* Breadcrumb */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  margin: 0;
  padding: 10px 16px;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb li + li::before {
  content: "›";
  margin: 0 8px 0 4px;
  color: var(--muted);
}
.breadcrumb li[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

/* Title */
.page-title {
  margin: 16px 0 12px 0;
  font-size: 20px;
  color: #0c3c60;
  letter-spacing: 0.4px;
}

/* Archive list rows */
.archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.archive-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  /* border-top: 1px solid var(--border); */
}
.archive-row:nth-child(odd) {
  background: var(--row-bg-alt);
}
.archive-row:first-child {
  border-top: none;
}

/* Left side: icon + link */
.row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.row-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 2px solid #0c3c60;
  border-radius: 2px;
  position: relative;
}
.row-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #0c3c60;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.row-link {
  color: #0c3c60;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  max-width: 100%;
}

/* Hover / focus underline, active */
.row-link:hover,
.row-link:focus-visible {
  text-decoration: underline;
}
.row-link.active {
  color: var(--primary-600);
  text-decoration: underline;
}

/* Right side: actions */
.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f9fafb;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: #f3f4f6;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-600);
}

.icon-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}
.icon-btn:hover {
  background: #f8fafc;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  flex-wrap: wrap;
}
.page-link {
  color: #0d4c81;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-link[aria-current="page"],
.page-link.active {
  background: #0d4c81;
  color: #fff;
  border-color: var(--primary);
}
.page-link:hover {
  background: #f8fafc;
}

/* Modal (dialog) styling */
dialog {
  width: min(1000px, 95vw);
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.35);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.modal-body {
  height: min(75vh, 800px);
}
.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #f3f4f6;
}
.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 640px) {
  .archive-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .row-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

#tender-archive-title {
  display: contents;
  min-height: 50px;
  margin: 0px;
  padding: 0px;
}

/* News ticker */

.ticker {
  @media (min-width: 700px) {
  }
}

:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #0b5ed7;
  --accent-600: #0a58ca;
  --border: #e5e7eb;
  --ticker-height: 44px;
  --ticker-speed: 45s; /* Increase for slower, decrease for faster */
  --gap: 28px;
  --track-padding-x: 12px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
}

/* Utility: visually hidden but accessible */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Header demo only */
.site-header {
  background: #123b72;
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
}
/* --- Ticker --- */
.ticker-section {
  border-bottom: 1px solid var(--border);
  background: #f9fafb;
  padding: 0px;
  @media (min-width: 700px) {
    /* padding-bottom: 3rem; */
    padding-bottom: 1rem;
  }
}

.ticker {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 0px;
  min-height: var(--ticker-height);
}

/* Left badge */
.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f3d69;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 600;
}
.badge-icon {
  filter: grayscale(0) contrast(1.1);
}
.badge-text strong {
  color: #45dd6d;
}

/* Viewport + track */
.ticker-viewport {
  position: relative;
  overflow: hidden;
  height: var(--ticker-height);
  outline: none; /* we’ll add focus style */
  /* border-left: 1px solid var(--border);
  border-right: 1px solid var(--border); */
  background: #fff;
}
.ticker-viewport:focus-visible {
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.25) inset;
}

/* The moving track */
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  padding: 0 var(--track-padding-x);
  margin: 0;
  height: 100%;
  list-style: none;
  /* We animate the whole track leftwards continuously */
  animation: ticker-scroll var(--ticker-speed) linear infinite;
}

/* Pause animation on hover/focus of the viewport */
.ticker-viewport:hover .ticker-track,
.ticker-viewport:focus-within .ticker-track,
.ticker-viewport[aria-busy="true"] .ticker-track {
  animation-play-state: paused;
}

/* Each item */
.ticker-item {
  flex: 0 0 auto; /* width equals content width */
  white-space: nowrap;
  color: var(--text);
  font-size: 0.98rem;
}

#tickerViewport{
  background: #0f3d69 !important;
}

/* anchor styling */
.ticker-item a {
  display: flex;
  gap: 5px;
  /* color: var(--text); */
  color: white;
  text-decoration: none;
  border-bottom: 1px solid transparent; /* for a subtle underline on hover */
}
.ticker-item a:hover,
.ticker-item a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ticker-item a .icon {
  /* margin-top: 2%; */
  margin-right: 4%;
  color: var(--accent-600);
}

/* Controls */
.ticker-controls {
  display: inline-flex;
  gap: 6px;
}
.ticker-btn {
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.ticker-btn:hover {
  background: #f3f4f6;
}

/* Keyframes: translate track leftwards by 50% (we duplicate content to fill) */
@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  } /* because we’ll append a clone of the track content */
}

/* Respect reduced motion: stop animation by default */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}


/* Page content demo */
.container {
  max-width: 1200px !important;
  padding: 0px 16px !important;
  margin: 0 auto !important;
}

.row-published {
  color: grey;
  font-style: italic;
}

/* ------------------- */

#tenders-table-title {
  padding-top: 0%;
}

#tenders-archive-table-title {
  padding-top: 1.5%;
}

.btn-custom-primary {
  background-color: #0d4c81 !important;
  color: white !important;
}

.btn-custom-primary:hover {
  color: black !important;
}

/* Newsletter Stylying */

:root {
  --newsletter-primary: #0d4c81; /* title & button color */
  --newsletter-primary-600: #0b3f6b;
  --newsletter-text: #1f2937;
  --newsletter-muted: #6b7280;
  --newsletter-bg: #ffffff;
  --newsletter-card-bg: #ffffff;
  --newsletter-border: #e5e7eb;
  --newsletter-radius: 14px;
  --newsletter-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Page wrapper (for demo spacing) */
.newsletter-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: #f7f9fc;
  padding: 24px;
}

/* Section */
.newsletter-section {
  width: min(820px, 100%);
}

/* Card */
.newsletter-card {
  background: var(--newsletter-card-bg);
  border: 1px solid var(--newsletter-border);
  border-radius: var(--newsletter-radius);
  padding: clamp(18px, 3.8vw, 36px);
  box-shadow: var(--newsletter-shadow);
}

/* Headings & text */
.newsletter-title {
  margin: 0 0 10px 0;
  text-align: center;
  color: var(--newsletter-primary);
  letter-spacing: 0.6px;
  font-weight: 800;
  font-size: clamp(20px, 3.2vw, 32px);
}

.newsletter-description {
  margin: 0 0 18px 0;
  text-align: center;
  color: var(--newsletter-muted);
  font-size: clamp(14px, 1.8vw, 18px);
}

/* Form */
.newsletter-form {
  width: 100%;
}

.newsletter-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

/* Input */
.newsletter-input {
  width: 100%;
  height: 46px;
  padding: 10px 12px;
  font-size: 16px;
  color: var(--newsletter-text);
  background: var(--newsletter-bg);
  border: 1px solid var(--newsletter-border);
  border-radius: 10px;
  outline: none;
  transition:
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.newsletter-input::placeholder {
  color: #9aa3af;
}
.newsletter-input:focus {
  border-color: var(--newsletter-primary);
  box-shadow: 0 0 0 3px rgba(13, 76, 129, 0.15);
}

/* Button */
.newsletter-button {
  height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--newsletter-primary);
  background: var(--newsletter-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.05s ease;
}
.newsletter-button:hover {
  background: var(--newsletter-primary-600);
}
.newsletter-button:active {
  transform: translateY(1px);
}
.newsletter-button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Messages */
.newsletter-message {
  margin: 10px 2px 0;
  color: #b42318; /* error red */
  min-height: 1.2em;
  font-size: 14px;
}
.newsletter-success {
  margin: 10px 2px 0;
  color: #0f7b3e; /* success green */
  font-weight: 600;
  font-size: 14px;
}

/* A11y helper */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive: stack input and button on small screens */
@media (max-width: 560px) {
  .newsletter-field {
    grid-template-columns: 1fr;
  }
  .newsletter-button {
    width: 100%;
  }
}

/* Navbar Stylying */

:root {
  --nav-bg: #0d4c81;
  --nav-text: #ffffff;
  --nav-accent: #0d4c81;
  --nav-border: #d6d4d4;
  --dropdown-bg: #ffffff;
  --dropdown-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius: 10px;
}

/* Base nav */
.main-nav {
  background-color: var(--primary-color) !important;
  border-top: 1px solid var(--nav-border);
  padding: 10px 0;
  position: relative;
}

/* Toggle (hamburger) - shown on mobile/tablet */
.nav-toggle {
  background: none;
  border: none;
  color: var(--nav-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-left: 8px;
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

/* Turn into "X" when expanded */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Main list – mobile/tablet collapsed */
.main-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 0; /* collapsed */
  overflow: hidden;
  transition: max-height 0.3s ease;
  @media (min-width: 700px) {
    height: 2.5rem;
  }
}

/* Show when nav is open */
.main-nav.is-open .main-nav-list {
  max-height: 80vh; /* allow scrolling height */
}

/* List items / links */
.main-nav-list > li > a,
.nav-dropdown-trigger {
  display: block;
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 16px;
}

/* .main-nav-list > li + li{
  border-top: 1px solid rgba(255,255,255,.15);
} */

/* Submenu (mobile default: stacked & hidden until opened) */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.nav-caret {
  display: inline-block;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg) translateY(-1px);
}

.nav-dropdown {
  
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.06); /* subtle group bg on mobile */
}

.nav-dropdown[hidden] {
  display: none !important;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 16px 10px 28px; /* indent submenu */
  color: #e9f2fa;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Hover/focus states */
.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-trigger:focus-visible {
  outline: none;
  text-decoration: underline;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  text-decoration: underline;
}

/* ====== Desktop / Large screens ====== */
@media (min-width: 992px) {
  /* Hide hamburger */
  .nav-toggle {
    display: none;
  }

  .main-nav {
    padding: 0px 0;
  }

  .main-nav-list {
    max-height: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 20px; */
    gap:5px;
    white-space: nowrap;
    overflow: visible;
  }

  .main-nav-list > li {
    border: 0;
  }

  .main-nav-list > li > a,
  .nav-dropdown-trigger {
    padding: 10px 12px;
  }

  /* Dropdown as flyout on desktop */
  .nav-has-dropdown {
    position: relative;
  }

  .nav-dropdown {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translateX(-50%);
    /* min-width: 220px; */
    min-width: 220px;
    background: var(--dropdown-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--dropdown-shadow);
    padding: 8px 0;
    z-index: 1000;
  }

  .nav-dropdown-link {
    /* padding: 10px 14px; */
    padding: 2px 10px;
    white-space: normal ;
    word-wrap: break-word ;
    color: var(--nav-accent);
  }

  /* Show dropdown on hover/focus */
  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown:focus-within .nav-dropdown {
    display: block !important;
  }

  /* On desktop, keep it hidden by default unless hover/focus */
  .nav-dropdown[hidden] {
    display: none !important;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .main-nav-list {
    transition: none;
  }
  .nav-toggle-bar {
    transition: none;
  }
}

/* Orders & Circulars styling */

:root {
  --brand: #0d4c81; /* requested color */
  --brand-600: #0b3f6b;
  --text: #1f2937;
  --muted: #667085;
  --border: #e5e7eb;
  --bg: #ffffff;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: #f7f9fc;
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  line-height: 1.55;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  margin: -1px;
  padding: 0;
}

.govdocs-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 40px;
  padding-top: 1% !important;
}
.govdocs-title {
      margin: 8px 0 4px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-800);
    letter-spacing: 0.5px;
}

/* Tabs */
.govdocs-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
  overflow-x: auto;
}
.govdocs-tab {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px 10px 0 0;
  padding: 8px 14px;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.govdocs-tab.is-active {
  border-color: var(--border);
  border-bottom-color: #fff;
  background: #fff;
}

/* Panels */
.govdocs-panel {
  background: white !important;
  border: 1px solid var(--border);
  border-radius: 0 10px 10px 10px;
  padding: clamp(12px, 3vw, 22px);
  box-shadow: var(--shadow);
}

/* Lists */
.government-orders-list,
.circulars-list,
.notices-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Row */
.govdocs-row {
  display: flex;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.govdocs-row:last-child {
  border-bottom: none;
}
@media (max-width: 640px) {
  .govdocs-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.govdocs-titlelink {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.govdocs-titlelink:hover,
.govdocs-titlelink:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.govdocs-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 2px;
}

/* Actions (icons) */
.govdocs-actions {
  display: inline-flex;
  gap: 10px;
  /*flex-wrap: wrap;*/
  justify-content: flex-end;
}
.govdocs-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  /* border: 1px solid var(--border); */
  border: none;
  /* background: #f9fafb; */
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    transform 0.05s ease;
}
.govdocs-iconbtn:hover {
  /* background: #f3f4f6; */
  color:var(--primary-color) !important;
}
.govdocs-iconbtn:active {
  transform: translateY(1px);
}
.govdocs-iconbtn.primary {
  /* background: var(--brand);
  border-color: var(--brand);
  color: #fff; */
      background: transparent;
    border: none;
}
.govdocs-iconbtn.primary:hover {
  /* background: var(--brand-600); */
}

/* Pagination */
.government-orders-pagination,
.circulars-pagination,
.notices-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.govdocs-page {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.govdocs-page[aria-current="page"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Modal */
.govdocs-modal {
  width: min(1000px, 95vw);
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.govdocs-modal::backdrop {
  background: rgba(0, 0, 0, 0.35);
}
.govdocs-modal-header,
.govdocs-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.govdocs-modal-footer {
  border-top: 1px solid var(--border);
  border-bottom: none;
  justify-content: flex-end;
}
.govdocs-modal-heading {
  margin: 0;
  font-size: 1rem;
}
.govdocs-modal-body {
  height: min(75vh, 800px);
  background: #f3f4f6;
}
.govdocs-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#govdocs-section {
  padding-top: 0% !important;
}

/* Hide when not shown */
#govdocs-modal[hidden] {
  display: none;
}

/* Show a simple overlay if using fallback mode */
#govdocs-modal[data-open-fallback="true"] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
}

/* Main header sitename and logo styling */

#main-header-logo-sitename {
  padding-bottom: 0%;
  @media (max-width: 500px) {
    padding-bottom: 2%;
  }
}

/* Information Kiosk Styling */

.info-kiosk-view-more-btn{
  padding-left: 5%;
}

.info-kiosk-view-more-btn a{
    color: #0b5ed7;
    text-decoration: none;
}

#custom-info-kisok-tablist-1 {
  --bs-nav-link-padding-x: 0.45rem;
}

/* Container & title styling (GIGW-style clean, high-contrast) */

#custom-info-kisok-tabcontent-1 {
  @media (min-width: 700px) {
    height: 208px !important;
  }
}

.custom-info-kisok-card {
  border: 1px solid #e6e6e6;
}
.custom-info-kisok-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1d4f73; /* dark teal for contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.custom-info-kisok-title-line {
  height: 4px;
  width: 20%;
  min-width: 80px;
  background: linear-gradient(90deg, #b45f06, #f6b26b, #b45f06);
  border-radius: 2px;
}
.custom-info-kisok-title-text {
  text-transform: uppercase;
}

/* Tabs (top) */
.custom-info-kisok-tabs .nav-link {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px !important;
}
/* .custom-info-kisok-tabs .nav-link.active {
  background-color: #0d6efd;
  color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
} */

/* Ticker wrapper */
.custom-info-kisok-ticker-wrapper {
  position: relative;
  height: 180px; /* visible window */
  overflow: hidden;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 0.25rem;
}
.custom-info-kisok-ticker-track {
  will-change: transform;
}
.custom-info-kisok-ticker-list {
  padding: 0.5rem 1rem;
}
.custom-info-kisok-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.custom-info-kisok-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #8b0000;
  display: inline-block;
  margin-right: 0.25rem;
}
.custom-info-kisok-link {
  color: #0b5ed7;
  text-decoration: none;
}
.custom-info-kisok-link:focus,
.custom-info-kisok-link:hover {
  text-decoration: underline;
}

.custom-info-kisok-file {
  margin-left: 0.35rem;
}

/* NEW badge with gentle pulse (and transition in) */
.custom-info-kisok-badge-new {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #198754;
  border-radius: 0.25rem;
  animation: custom-info-kisok-pulse 2.5s ease-in-out infinite;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.custom-info-kisok-item:hover .custom-info-kisok-badge-new {
  transform: translateY(-1px);
  opacity: 0.95;
}
@keyframes custom-info-kisok-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(25, 135, 84, 0);
  }
}

/* Hover to pause the ticker */
.custom-info-kisok-ticker-wrapper:hover .custom-info-kisok-ticker-track {
  animation-play-state: paused !important;
}

/* Pause/Play icon */
.custom-info-kisok-ticker-toggle .custom-info-kisok-icon {
  font-weight: 700;
  color: #f39c12;
  font-size: 1.1rem;
}
.custom-info-kisok-ticker-toggle:focus-visible {
  outline: 3px solid #0d6efd;
  border-radius: 0.25rem;
}

/* Secondary tabset (gold pill-like as in screenshot 2) */
.custom-info-kisok-pills {
  gap: 0.5rem;
  border-bottom: 1px solid #c8b788;
  padding-left: 0.5rem;
}
.custom-info-kisok-pills .nav-link {
  background: #b38b1a;
  color: #fff;
  font-weight: 700;
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.custom-info-kisok-pills .nav-link.active {
  background: #866b14;
}
.custom-info-kisok-secondary-content {
  border-color: #c8b788 !important;
}

/* Simple list and accordion */
.custom-info-kisok-list a {
  color: #0b5ed7;
  text-decoration: none;
}
.custom-info-kisok-list a:hover,
.custom-info-kisok-list a:focus {
  text-decoration: underline;
}
.custom-info-kisok-accordion summary {
  cursor: pointer;
  list-style: none;
}
.custom-info-kisok-accordion summary::marker {
  content: "";
}
.custom-info-kisok-accordion summary::before {
  content: "▸";
  margin-right: 0.5rem;
  display: inline-block;
  transform: translateY(-1px);
}
.custom-info-kisok-accordion details[open] summary::before {
  content: "▾";
}

/* GIGW-leaning focus visibility & contrast */
.custom-info-kisok-section :focus-visible {
  outline: 3px solid #0d6efd;
  outline-offset: 2px;
}

/* Responsive rule: full width on small, half on large (handled by Bootstrap col classes).
   Add a small max-width to avoid overflowing very wide screens. */
@media (min-width: 992px) {
  .custom-info-kisok-card {
    max-width: 100%;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .custom-info-kisok-ticker-track,
  .custom-info-kisok-badge-new {
    animation: none !important;
  }
}

.custom-info-kisok-tabs .nav-link.active {
    background-color: #0d4c81 !important;
    color: #fff !important;
}

#custom-info-kisok-heading {
  font-size: 1.37rem;
  margin-bottom: 0px;
}

#notification_quicklinks_dv .row:nth-child(2) {
  @media (max-width: 500px) {
    min-width: -webkit-fill-available !important;
  }
}

.tab-pane {
  height: 13.2rem !important;
  @media (min-width: 700px) {
    height: 12.1rem;
  }
}

#info-kiosk-title {
  margin: 0px 0px 12px;
  font-size: 1.375rem;
  color: var(--ql-text);
}

#analytical-dshbrd-title {
  font-size: 1.375rem;
  color: var(--ql-text);
  @media (min-width:700px) {
    font-size: 1.5rem;
  }
}

#analytical-dshbrd-tb table thead tr>th,tbody{
  text-align: center !important;
}

#custom-info-kisok-section > div {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

#custom-info-kisok-section .container-fluid .justify-content-center > div {
  @media (max-width: 500px) {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.custom-info-kisok-card {
  background: #eeeef7;
}

.custom-info-kisok-ticker-wrapper {
  border: 1px solid transparent;
  background: #eeeef7;
}

/* Stylying to make the Information Kiosk & Quick Links align centre */
#custom-info-kisok-section > div,
.quick-links > div {
  display: flex;
  justify-content: center;
  @media (min-width: 700px) {
    display: flex !important;
    justify-content: center;
  }
}

/* Viewport window */
.custom-info-kisok-ticker-wrapper {
  position: relative;
  height: 180px; /* visible window; adjust if needed */
  overflow: hidden;
  background: #eeeef7; /* your theme */
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* Moving rail (contains two identical ULs) */
.custom-info-kisok-ticker-track {
  /* Duration is customizable per-pane via inline --kisok-duration */
  --kisok-duration: 14s;
  animation: kiosk-scroll-up var(--kisok-duration) linear infinite;
  will-change: transform;
}

/* Seamless loop: Move exactly one copy height (50% of track because it contains two identical lists) */
@keyframes kiosk-scroll-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/* Pause on hover for better UX */
.custom-info-kisok-ticker-wrapper:hover .custom-info-kisok-ticker-track {
  animation-play-state: paused !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .custom-info-kisok-ticker-track {
    animation: none !important;
  }
}

/* Optional: compact height on small screens */
@media (max-width: 576px) {
  .custom-info-kisok-ticker-wrapper {
    height: 160px;
  }
}

#custom-info-kisok-tab-bb,
#custom-info-kisok-tab-orders,
#custom-info-kisok-tab-notices,
#custom-info-kisok-tab-tenders,
#custom-info-kisok-tab-eservices {
  @media (min-width: 700px) {
    /* padding: unset; */
  }
}

/* Branding Footer Icons */

.explore_marqee,
.explore_marqee > div {
  padding: 0px;
}

/* Accessiblity Section */

.topmost-bar-left-section > * {
  font-size: 0.85rem;
}
 @media (max-width: 676px) {
  .topmost-bar-left-section > * {
  font-size: 0.65rem;
}
.top-header-wrapper .skip-cnt-new {
  font-size: 0.65rem!important;
}
.top-header-wrapper .icon1-new{
  font-size: 0.65rem!important;
 }
}

.accessibility-container {
  height: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 500px) {
    height: 2.6rem;
  }
}

.accessibility-container div:nth-child(2) {
  display: flex;
}

.accessibility-container > * {
  margin-top: 0.6%;
  margin-bottom: 0.6%;
  @media (min-width:700px) {
     margin-top: 0.4% !important;
  margin-bottom: 0.6%;
  }
}

.accessibility-container > div > * {
  cursor: pointer;
}

#about > div > div:nth-child(2) {
  padding-bottom: 1.5%;
}

#projectsa {
  @media (min-width:700px) {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  padding-top: 0px;
  padding-bottom: 0px;
   /* background: #ffff !important; */
}

#projectsa > div > h2 {
  margin-bottom: 0.4rem;
}

.cta-container {
  margin-bottom: 2%;
}

#about > div {
  padding-bottom: 0px;
  padding-top: 0px;
}

.slick-track {
  padding-bottom: 2% !important;
}

/* Footer Nav Link Style */
#ftr-nv-lnk-mdl-cnt {
  height: 270px !important;
}

.ftr-note-achor-tag {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  display: inline-block;
  cursor: pointer;
}

#docLinksList {
  background-color: #000;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

/* Orders,Circulars & Notices Search */

.govdocs-toolbar{
  display: flex;
  justify-content: end;
}

.govdocs-toolbar:hover{
 cursor: pointer;
}

#orders-search, #circulars-search, #notices-search{
  background-color: #ececec75;
  border: 1px solid black;
  width:16%;
  padding: 4px 8px 4px 22px;
  background:
  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5" fill="%23999" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.867-3.834zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>')
  no-repeat 5px center;
  background-size: 13px 13px;
}

#orders-search:focus, 
#circulars-search:focus, 
#notices-search:focus{
  outline: 1.5px solid black;
  border-color: black;
  padding-left:5px;
  padding: 4px 8px 4px 22px;
  background:
  url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="5" height="5" fill="%23999" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.867-3.834zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>')
  no-repeat 5px center;
  background-size: 13px 13px;
}

#circulars-count, 
#orders-count, 
#notices-count{
  padding-top: 0.25rem;
}

/* Footer Anchor Tag */

a[role="button"]:hover {
  text-decoration: underline !important;   
  text-decoration-color: #f89d2c !important;   /* underline color */
}

#faqs:hover,
#resources:hover,
#guidelines:hover,
#contactus:hover,
#newsletter:hover,
#helpdesk:hover{
   text-decoration: underline !important;   
  text-decoration-color: #f89d2c !important; 
  cursor: pointer;
}

#multiple-link-anchor:hover{
   text-decoration: underline !important;   
  text-decoration-color: #f89d2c !important; 
}

#exampleModal{
  top:7.5rem;
}

#tendersTable thead tr > * {
  text-align: center;
}

#contactusTable thead tr > * {
  text-align: center;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* tbody#contactusBody tr:nth-child(2n) th {
    background: rgb(250, 250, 250) ;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
} */

#contactusBody td{
  vertical-align: middle;
}

#contactusTable thead > * >  th {
  align-items: center;
}

[headers="h-email"] a:hover {
  text-decoration: underline !important;
  cursor: pointer;
}

#tenderdownloadbtn:hover, #archive-tender-btn:hover {
  color:black !important;
  text-decoration: none;
}

#tender-arch-btn:hover{
  text-decoration: none !important;
}

.about-content{
    padding-top: 0.8rem;
}

#achievements_quick_links{
  text-decoration: none !important;
}

/* Tender archive style */
/* Optional: simple square icon placeholder; replace with your actual icon/fonts */
.row-icon {
  width: 20px;
  height: 20px;
  border: 2px solid black; /* Bootstrap green-ish */
  border-radius: 3px;
  display: inline-block;
  margin-top: 0.25rem;
}

/* Ensure inner list spacing looks consistent */
.archive-list .archive-row {
  border-bottom: 1px solid #e9ecef;
  padding-top: 8px !important;
}

.archive-list .archive-row {
    border-bottom: unset;
}

/* home section title style */
#home-section-title{
  font-size:2rem;
  color: var(--ql-text);

}

/* =================== EServices Cards Alignment ===================== */
/* Make all cards the same height within a row */
.col-md-4 { display: flex; }                    /* so the card can stretch */
.customer-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* height: 100%;                                 ensure equal height across columns */
  height: 92%;
  border-radius: 8px;
  box-shadow: 4px 4px 7.8px 0px #00000040;
  background: #fff;
  border: 1px solid #ebebeb;
  border-bottom: 3px solid #0d4c81;
  transition: transform 0.3s ease;
}

/* Inner area as a column; button will be pushed to the bottom */
.customer-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  height: 100%;
}

/* Content stack (title, paragraph, button) */
.customer-content {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  height: 100%;
}

/* Make the text area take remaining space; button goes to bottom via margin-top:auto */
.customer-content p {
  color: #5a6872;
  margin: 0;
}

/* Important part: push the button to the bottom of the card */
.customer-content > button {
  margin-top: auto;                              /* 🔑 aligns all buttons across cards */
  align-self: flex-end;                          /* right-align like your screenshot */
}

/* Optional: keep headings readable and prevent overflow */
.customer-content h5 {
  margin: 0;
  line-height: 1.35;
  max-width: 60ch;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* A consistent square for all icons */
.quote-container {
  width: 88px;                 /* tweak as you like: 72–96px works well */
  height: 88px;
  flex: 0 0 auto;              /* don’t shrink in flex rows */
  display: flex;
  align-items: flex-start;      /* top align (matches your design) */
  justify-content: flex-start;
}

/* Normalize the <img> behavior inside the box */
.quote-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;          /* keep aspect ratio; fit inside the box */
  display: block;               /* remove baseline gap */
}

/* If Bootstrap .img-fluid is applied, it sets height:auto; this override is needed */
.quote-container img.img-fluid {
  height: 100% !important;
}

/* ==================================================== */
/* Make the inner area a horizontal flex row: icon left, text right */
.customer-inner {
  display: flex;
  flex-direction: row;           /* changed from column */
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  height: 100%;
}

/* Right column: stack title, paragraph, button; let it fill the space */
.customer-content {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1 1 auto;
  min-width: 0;                  /* prevents overflow in flex containers */
}

/* Button stays at bottom-right inside the text column */
.customer-content > button {
  margin-top: auto;
  align-self: flex-end;
  padding: 6px 11px;
  font-size: 13px;
}

/* Icon normalization (same visual size for all images) */
/* Match your icon box */
.quote-container {
  width: 120px;
  height: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.quote-container img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;   /* keeps 1:1 and fits the box */
  display: block;
}


/* If some imgs have .img-fluid, override its height:auto */
.quote-container img.img-fluid {
  height: 100% !important;
}

/* Analytical Dashboard Bar Graph */
/* Ensure the canvas can paint the reflection outside the chart area */
.chart-card .chart-wrap {
  /* position: relative; */
  overflow: visible;   /* important: let reflection be visible */
}

/* A bit more space at bottom so reflection isn't clipped by the card */
.chart-card .chart-wrap canvas {
  display: block;
}

.chart-card .chart-wrap canvas#bar-canvas {
        display: block;
    box-sizing: border-box;
    /* height: 320px; */
    height: 350px !important;
    /* width: 582px; */
    width: 700px !important;
    @media (max-width:500px) {
    display: block;
    box-sizing: border-box;
    height: 296px !important;
    width: 311px !important;
    }
}

.department-content{
  font-family: Poppins;
  font-weight: 400;
  font-size: 14.5px;
  text-align: justify;
}

a {
  text-align: justify;
}




/* =============== Meena Singh Changes ======================= */
 /*meena singh code changes start(26-02-26)*/
.ticker {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    background: #0c3a60;
}
/* section#about{
  background: #f9fafb !important;
  padding: 40px 0px;
} */
.ticker-section{
  border:none!important;
}
.about .about-content .lead{
  font-weight: 400 !important;
  font-size: 15px !important;
  color: #333333 !important;
  line-height: 23px;
}
.about .achievement-boxes .achievement-box {
    height: 92%!important;
    background: #ffffffc9!important;
    padding: 15px!important;
    border-radius: 15px!important;
    transition: transform 0.3s ease!important;
    overflow: hidden!important;
}
.about .achievement-boxes .achievement-box:hover {
    transform: scale(1.04) !important;
    transition: transform 0.3s ease !important;
}
.achievement-box.d-flex.align-items-center img{
  /* width: 50px; */
  width: 39%;
}
.about .cta-container .btn-primary {
    padding: 8px 14px !important;
    font-size: 13px;
}
#mainSlider .carousel-item {
background: linear-gradient(135deg, #0f4c8100 0%, #1e6fb98c 50%, #0d4c80 100%);
    color: #ffffff;
    border-radius: 0px !important;
}
.carousel-inner{
  border-radius: 4px !important;
}
.profile_img img {
    border-radius: 0% !important;
    margin: 0% 0% 0% 0%;
    width: 268px !important;
    /* height: 296px !important; */
    height:325px !important;
    object-fit: cover !important;
}
.thumbnail_slider .thumbnail-slider .thumb{
   width: 120px;
    height:100px;
    object-fit: fill;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    object-position: top;
}
@media(max-width:676px){
  .thumbnail_slider .thumbnail-slider .thumb{
    height: 80px;
    width: 80px;
  }
}
.thumbnail_slider .thumbnail-slider .thumb.active {
  opacity: 1;
  border:2px solid white;
}
main{
  background: #f9fafb !important;
}
/* .container {
  max-width: 1298px !important;
  padding: 0px !important;
} */
.notified_section{
    background: #ffffff !important;
    padding: 40px 0px;
}
section#custom-info-kisok-section{
  background: transparent!important;
}
section.quick-links{
  background: transparent!important;
}
.custom-info-kisok-card {
    background: #eeeef7;
    height: 100% !important;
    background: #ffffffc9 !important;
    padding: 15px !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease !important;
    overflow: hidden !important;
    min-height: 103%; /* Sharique changes */
}
.custom-info-kisok-ticker-wrapper {
  background: #fff !important;
}
.custom-info-kisok-link{
  color: #333333 !important;
}
.custom-info-kisok-dot {
    width: 0.34rem;
    height: 0.34rem;
    background: #0d4c81;
    /*@media (min-width:700px) {
      margin-bottom: 18% !important;
    }*/
}
.custom-info-kisok-tabs .nav-link {
    color: #1a1a1a;
    font-weight: 600;
    border: 1px solid #efeaea;
}
ul#custom-info-kisok-tablist-1 {
    border: none;
    gap:7px;  /* sharique changed */
   
}
section#panel-bd {
    height: 100% !important;
    background: #f9fafb !important;
    padding: 15px 15px 40px 15px !important;
    border-radius: 4px !important;
    transition: transform 0.3s ease !important;
    overflow: hidden !important;
    margin: 0px !important;
}

#analytical-dshbrd-tb table thead th {
    background: #0d4c81 !important;
    border-right: 1px solid #ffffff !important;
}
div#dshbrd-btns {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin-bottom: 0px !important;
    padding: 8px 15px;
}
.tabs [role="tab"]#tab-bp{
    background: #dddddd ;
    border-radius: 10px 10px 0px 0px!important;
}
.tabs [role="tab"]#tab-tl{
  background: #dddddd ;
  border-radius: 10px 10px 0px 0px!important;
}
.tabs [role="tab"]#tab-pt{
  background: #dddddd ;
  border-radius: 10px 10px 0px 0px!important;
}
.tabs [role="tab"]#tab-clu{
  background: #dddddd ;
  border-radius: 10px 10px 0px 0px!important;
}
.tabs [role="tab"]#tab-bd{
  background: #dddddd ;
  border-radius: 10px 10px 0px 0px!important;
}


/*meena singh code changes end(26-02-26)*/


/* #main-nav-list{
  @media (min-width:700px) {
    gap:24px;
  }
  
} */


.footer-links a {
    color: #fff !important;
    opacity: 1;
    text-decoration: none;
    font-size: 13px !important;
}


section#about {
    background: #f9fafb !important;
    padding: 40px 0px;
    @media (min-width:700px) {
      padding: 20px 0px;
    }
}

.team-member-wrapper{
  background: #f9fafb !important;
    padding: 20px 0px;
}

.notified_section {
    background: #ffffff !important;
    /* padding: 40px 0px; */
    padding: 0px; /* sharique changed */
    
}

#kpi-grid.kpi{
  background: #fff !important;
  border-radius: 12px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 110px !important; /* Ensures consistent card height */
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;

}

#kpigrid.kpi > div:nth-child(1){
  
font-size: 14px !important;
  font-weight: 500 !important;
  color: #475569 !important;
  line-height: 1.3 !important;
  min-height: 34px !important; /* FIX: Locks header height */
  display: flex !important;
  align-items: flex-start !important;

}

#kpigrid.kpi > div:nth-child(2){
  
font-size: 24px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
  margin-top: auto !important;

}

#footer > div {
  padding: 18px 16px 0px 16px !important;
  margin: 0px;
}



.footer-social > a:nth-child(2){
  color:white !important;
}

/* Contact Us table */

/* Base reset for consistent rendering */
.tbl {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d0d7de;
  background-color: #fff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  line-height: 1.5;
}

.tbl caption {
  text-align: left;
  padding: 0.75rem 0.75rem 0.5rem;
  font-weight: 600;
  color: #0f172a; /* slate-900 */
}

.tbl th,
.tbl td {
  padding: 0.625rem 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e5e7eb; /* gray-200 */
}

/* Head styles */
.tbl thead th {
  position: sticky;
  top: 0;                 /* Sticky header */
  background: #f8fafc;    /* slate-50 */
  color: #0f172a;         /* slate-900 */
  z-index: 1;
  text-align: left;
  border-top: none;
  border-bottom: 1px solid #d0d7de;
  white-space: nowrap;
}

/* Row header cells (first column) */
.tbl tbody th[scope="row"] {
  font-weight: 600;
  background: #ffffff;
}

/* Zebra striping */
.tbl tbody tr:nth-child(odd) {
  background: #fcfcfd;
}

/* Hover/focus for row */
.tbl tbody tr:hover {
  background: #f1f5f9; /* slate-100 */
}

/* Links */
.tbl a {
  color: #0ea5e9; /* sky-500 */
  text-decoration: none;
}
.tbl a:hover,
.tbl a:focus {
  text-decoration: underline;
}

/* Optional col sizing (adjust as needed) */
.col-name        { width: 22%; }
.col-designation { width: 18%; }
.col-contact     { width: 30%; }
.col-email       { width: 30%; }

/* Screen-reader only helper */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Responsive: stack cells on very small screens */
@media (max-width: 640px) {
  .tbl thead,
  .tbl tfoot,
  .tbl colgroup {
    display: none; /* Hide multi-row headers when stacking */
  }

  .tbl,
  .tbl tbody,
  .tbl tr,
  .tbl td,
  .tbl th[scope="row"] {
    display: block;
    width: 100%;
  }

  .tbl tr {
    border-top: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
    background: #fff;
  }

  .tbl th[scope="row"] {
    background: #f8fafc;
    font-size: 1rem;
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .tbl td {
    padding: 0.5rem 0.75rem;
    border: none;
    border-bottom: 1px dashed #e5e7eb;
  }

  /* Use data-label attribute to show the column label in stacked view */
  .tbl td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.78rem;
    color: #475569; /* slate-600 */
    margin-bottom: 0.15rem;
  }

  /* Last cell no divider */
  .tbl td:last-child {
    border-bottom: none;
  }
}

/* Printing: keep headers, avoid background colors for clarity */
@media print {
  .tbl thead th {
    position: static;
    background: #fff !important;
    color: #000 !important;
  }
  .tbl tbody tr:hover {
    background: transparent !important;
  }
}

.detailed {
  display: none;
}

/* Pie Chart Photo */

#pie-chart-photo img{
  width: 456px;
  height: auto;
}


/* Styling for big para */
.big-para{
  text-align: justify;
}

/* Styling for Mobile App Ad */

/* Layout */
.app-wrapper {
  max-width: 560px;           /* Similar narrow column like the screenshot */
  margin-left: 0;
  padding: 0px;
}

/* Inputs / button sizing and look */
.form-control-lg {
  border-radius: 0.5rem;      /* Slightly rounded like the reference */
}

/* Primary button color matches Bootstrap default; tweak if you need a custom brand */
.btn-lg {
  padding-inline: 1.125rem;
}

/* Store badges area */
.store-badges img {
  height: 36px;
  width: auto;
  display: block;
}

.badge-link {
  display: inline-flex;
  align-items: center;
}

/* Small polish */
.text-secondary {
  color: #6c757d !important;
}

@media (max-width: 576px) {
  .app-wrapper {
    max-width: 100%;
  }
  .btn-lg {
    white-space: nowrap;
  }
}

#shareBtn{
  background: #0d4c81;
  color: white;
  padding: 8px 14px !important;
  font-size: 13px;
}

#mobile-app-screenshot{
  display: flex;
  justify-content: center;
  align-items: center;
  @media (max-width:500px) {
    display: flex;
    justify-content: center;
  }
}

#mobile-app-screenshot img {
  width:65%;
}

#phone-app-right-panel{
  /* display: flex;
  justify-content: center; */
  align-items: center;
}

.form-check-input[type="radio"]:checked{
  background-color: #0d4c81 !important;
  border-color: #0d4c81 !important;
}

 
#whatNew-mobile-section > div:nth-child(1){
  display: flex;
  align-items: center;
}

#whatNew-mobile-section > div:nth-child(1) > div{
  @media (min-width:700px) {
    margin-top: 3%;
  }
}


.customer-content h6{
  font-size: 1.1rem;
}


.ticker-item {
  display: flex;
}

#speaker{
  margin: 0px 25px 0px 0px;;
}

#sbm-scheme-left, #amrut-scheme-left{
  height: 75vh;
  display: grid;
  align-items: stretch; 

}
@media(max-width:676px){

#sbm-scheme-left, #amrut-scheme-left{
  height: 100vh;
}
}

/* Setting height of department view page */

.department-view{
  /* max-width: 1200px; */
  height: 35vh;
  display: grid;
  align-items: stretch;

@media (max-width:499px) {
  padding: 0% 4%;
}
  
 @media (min-width: 500px) and (max-width: 1280px) {
  padding: 0% 5.5%;
}
  @media (min-width:1300px) {
    padding: 0% 15.5%;
  }

}

.citizen-service-img{
  width:100px !important;
  /* height: 85px !important; */
  height: auto !important;
}

.gis-img{
  /* height: 95px !important; */
      width: 100px !important;
    /* height: 85px !important; */
    height: auto !important;
}

.swm-img{
  /* height: 95px !important; */
  height: auto !important;
  width: 100px !important;
  @media (min-width:700px) {
    margin-top: 5% !important;
  }
}

.trade-img{
  width: 100px !important;
  height: 100px !important;
  @media (min-width:700px) {
    margin-top: 11%;
  }
  /* height: auto !important; */
}

.online-img{
  width: 100px !important;
    height: 100px !important;
}

.building-img{
  width: 100px !important;
    /* height: 92px !important; */
    height: auto !important;
    @media (min-width:700px) {
          margin-top: 10%;
    }
}

.noc-img{
  width: 100px !important;
  height: auto !important;
  @media (min-width:700px) {
    margin-top: 2.5%;
  }
}

.birth-img{
  
  width: 100px !important;
  height: auto !important;
  @media (min-width:700px) {
    margin-top: 16.5%;
  }
}


.door-img{
  width: 100px !important;
  height: auto !important;
  @media (min-width:700px) {
    margin-top: 11%;
  }
}

.rev-img{
      margin-left: 0% !important;
    width: 100px !important;
    height: auto !important;
  @media (min-width:700px) {
        margin-top: 7%;
  }
}

.grv-img{
   width:130px !important;
  height: auto !important;
  @media (min-width:700px) {
    margin-top: 1%;
  }
}


.footer-social > a:nth-child(1):hover{
  color: white !important;
}

.footer-social > a:nth-child(3):hover{
  color: white !important;
}

#for-expenditure-incurred{
  display: none;
}

#for-revenue-collection{
  display: none;
}

#for-revenue-collection > div {
  width: inherit;
}

#for-expenditure-incurred >  div {
  width: inherit;
}

#card-bg-exp, #card-bg-rev {
  height: 415px;
}

.public-gr-img {
  width: 118px !important;
  height: auto !important;
}

#pieChart{
  
    justify-content: center;
    display: flex;
    @media (min-width:700px) {
      margin-top: 6.5%;
    }
}

.finance-img{
  height: auto !important;
  width: 100px !important;
  margin-top: 4%;
}

.apexcharts-legend {
  @media (min-width:700px){
    right: -13px !important;
  }
}

.apexcharts-legend-text{
  @media (min-width:700px) {
    font-size: 15px !important;
  }
}

#org-setup-img{
    height: auto;
    width: 84%;
}

#functions-img{
  width: 104%;
  height: auto;
}

.order-no{
  @media (min-width:700px){
    margin-bottom: 0px;
  }
}

.topmost-bar-left-section{
  @media (max-width:500px) {
    gap:14px;
    display: flex;
    justify-content: center;
  }
}

#site-access{
   @media (max-width:500px) {
    gap:14px;
    display: flex;
    justify-content: center;
  }
}

.accessibility-container{
   @media (max-width:500px) {
    height:61px;
  }
}

.bg-light .container-fluid{
  @media (max-width:500px) {
    padding-right:0px !important;
  }
}



.apx-legend-position-bottom{
  display: none !important;
  @media (max-width:500px) {
    display: block !important;
  }
}

.apx-legend-position-right{
  display: block !important;
  @media (max-width:500px) {
     display: none !important;
  }
}

#for-line{
  @media (max-width:500px) {
    width: 382px;
  }
}

#SvgjsSvg2262{
  @media (max-width:500px) {
    width:100% !important;
  }
}

#site-access{
  @media (min-width:700px) {
    display: flex;
    justify-content: end;
  }
}

/* Masonry Gallery Style */
/* Masonry Gallery – Production CSS */
/* border-radius: 6px;
  font-size: 0.875rem;
  line-height: 1.2;
} */

/* When image has been loaded by JS */
.masonry-img.masonry-loaded {
  opacity: 1;
  filter: blur(0);
}

/* Lightbox overlay */
.masonry-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.masonry-lightbox.masonry-open {
  display: flex;
}

.masonry-lightbox-img {
  max-width: min(92vw, 1400px);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.masonry-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.masonry-lightbox-close:focus-visible {
  outline: 2px solid #60a5fa;
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .masonry-img,
  .masonry-item:hover .masonry-img {
    transition: none;
    transform: none;
  }
}

/* Print: single column for readability */
@media print {
  #masonry-gallery.masonry-gallery { column-count: 1 !important; }
  .masonry-caption { position: static; background: none; color: #000; }
}

:root {
  --masonry-bg: #ffffff;
  --masonry-text: #111827;
  --masonry-gap: 16px;
  --masonry-radius: 10px;
  --masonry-caption-bg: rgba(0,0,0,0.5);
  --masonry-caption-color: #fff;
  --masonry-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

/* Masonry container as CSS Grid */
#masonry-gallery.masonry-gallery {
  background: var(--masonry-bg);
  color: var(--masonry-text);

  /* Masonry with tiny row units + gap */
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns on wide screens */
  grid-auto-rows: 8px;                    /* base row unit for spanning */
  gap: var(--masonry-gap);
  grid-auto-flow: dense;                  /* try to backfill tiny spaces */

  padding: var(--masonry-gap);
}

/* Responsive columns */
@media (max-width: 1400px) {
  #masonry-gallery.masonry-gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
  #masonry-gallery.masonry-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  #masonry-gallery.masonry-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  #masonry-gallery.masonry-gallery { grid-template-columns: 1fr; }
}


/* Every card is a block that must avoid breaking across columns */
.masonry-item {
  display: block;                 /* grid item block */
  /* No margin-bottom here; grid gap handles spacing */
  text-decoration: none;
  color: inherit;
  border-radius: var(--masonry-radius);
  overflow: clip;
  background: #fff;
  box-shadow: var(--masonry-shadow);
  transform: translateZ(0);
  
}

/* We still want to avoid internal breaks in case the container changes */
.masonry-item,
.masonry-figure {
  break-inside: avoid;
}


.masonry-item:focus-visible {
  outline: 3px solid #3b82f6; /* Accessible focus */
  outline-offset: 2px;
}

/* Figure + image */
.masonry-figure {
  margin: 0;
  position: relative;
  display: block;
}

.masonry-img {
  display: block;
  width: 100%;
  height: auto;                        /* natural varying heights */
  background: #f2f2f2;
  transition: filter .3s ease, opacity .3s ease, transform .2s ease;
  /* opacity: 0;                          will fade in after lazy-load */
  /* filter: blur(4px); */
}

.masonry-item:hover .masonry-img {
  transform: scale(1.01);
}

/* Caption overlay (optional) */
.masonry-caption {
  position: absolute;
  /* left: 8px; */
  right: 8px;
  bottom: 8px;
  padding: 6px 10px;
  background: var(--masonry-caption-bg);
  /* color: var(--masonry-caption-color); */
  color: white;
  font-size: 14px;
  font-weight: 500;
  left: 0px;
  width: 100% !important;
  bottom: 3px;
  height: auto;
}

.masonry-caption h1{
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin-bottom: 0px;
}

#masonry-gallery{
  background:black !important;

}

#masonry-gallery > * {
  border-radius: 0px !important;
}

.masonry-img{
  
display: block;
  width: 100%;
  height: auto; 
}

.masonry-gallery{
column-count: 3;         /* adjust per breakpoint */
  column-gap: 16px;

}

.photo-gallery-card{
  display: flex;
  flex-direction: column;
    width: 100%;
    height: 92%;
    border-radius: 8px;
    box-shadow: 0px 4px 7.8px 0px #00000040;
    background: #fff;
    border: 1px solid #ebebeb;
    border-bottom: 3px solid #0d4c81;
    transition: transform 0.3s ease;
}
@media(max-width:676px){
  .photo-gallery-card{
  margin-bottom:20px ;
}
}

.photo-gallery-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);*/
  /*box-shadow: 0 0 40px rgba(13, 76, 129, 0.35);*/
  z-index: 5;
  height:245px;
}


#ph-gal-card{
  /* background: #0a4d8c; */
  border-radius: 7px !important;
  /*background-image: conic-gradient(#f28989, #6666ef, #a0eea0, #f4f493, #9883f0) !important;*/
  background: #E2F2FC;
  border: unset; 
    border-radius: unset;
  box-shadow: unset;
}

#ph-gal-crd-title{
  color: black;
  font-weight: 400;
  font-size: 1rem;
}

#ph-gal-crd-body{
  padding:6px 6px 0px 6px;
  height: 275px !important;
}

#ph-gal-crd-body img {
  height: 220px;
}

/* Content */

/* ============================
   custom-card-bootstrap.css
   Scoped Bootstrap overrides for the custom-card component
   ============================ */

/* Ensure the right deco column doesn’t collapse in flex containers */
.custom-card .custom-card-deco {
  flex: 0 0 auto; /* don’t grow/shrink */
}

/* Respect Bootstrap’s spacing scale but allow tighter gaps on mobile */
@media (max-width: 575.98px) {
  .custom-card {
    gap: 0.75rem; /* friendly with Bootstrap spacing rhythm */
  }
}

/* Make sure border radii align nicely with Bootstrap defaults */
.custom-card,
.custom-card-deco {
  border-radius: 0.5rem; /* matches .rounded by default */
}

/* ============================
   custom-card.css
   Component styles
   ============================ */

/* Theme tokens (you can change these) */
:root {
  --custom-card-bg: #9376c9;          /* purple-ish for the content block */
  --custom-card-deco-bg: #80b8ff;     /* light blue for the right bar */
  --custom-card-radius: 8px;
  --custom-card-shadow: 0 4px 14px rgba(17, 24, 39, 0.12);
  --custom-card-padding: 1.25rem;     /* inner padding on left block */
  --custom-card-gap: 1rem;            /* space between left and right blocks */
  --custom-card-min-height: 160px;    /* visual proportion similar to screenshot */
}

/* Wrapper card */
.custom-card {
  display: flex;
  align-items: stretch;
  background: transparent;           /* transparent wrapper—left block carries bg */
  gap: var(--custom-card-gap);
  min-height: var(--custom-card-min-height);
}

/* Left content block */
.custom-card-body {
  background: #f9fafb;
  color: #ffffff;
  border-radius: var(--custom-card-radius);
  box-shadow: var(--custom-card-shadow);
  padding: var(--custom-card-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right decorative bar */
.custom-card-deco {
  width: 68px;                        /* tweak to taste */
  background: #0d4c81;
  border-radius: var(--custom-card-radius);
  box-shadow: var(--custom-card-shadow);
}

/* Typography inside left block */
.custom-card-title {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.custom-card-text {
  font-size: 0.975rem;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

.list-group-item{
  text-align: justify;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .custom-card {
    --custom-card-gap: 0.75rem;
    --custom-card-padding: 1rem;
    --custom-card-min-height: 140px;
  }
  .custom-card-deco {
    width: 56px;
  }
}

@media (min-width: 1200px) {
  .custom-card {
    --custom-card-min-height: 180px;
  }
  .custom-card-deco {
    width: 76px;
  }
}

.custom-card-btn{
  margin-top: 1rem;
  @media (max-width:500px) {
    display: flex;
    justify-content: center;
  }
}

.custom-card-text{
  color: black;
}

.custom-card {
  /* Make the card itself able to grow if needed (e.g., full height of parent) */
  /* If you want the button to truly sit at the bottom of a fixed-height area, give this a height */
  /* Example: height: 100%; or min-height: 320px; as needed */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto; /* h2 | paragraph grows | button pinned */
  gap: 0.5rem; /* row gap; tweak as needed */
}

.custom-card-title {
  align-self: start;  /* explicit, but default for first row */
}

.custom-card-text {
  /* This row gets the spare vertical space. Nothing else needed. */
}

.custom-card-btn {
  align-self: end;    /* explicit, but default for last row with auto track */
}

/* Bullet points list */


 .list-group-item::before {
  content: "●"; /* Unicode for a solid bullet point */
  margin-right: 0.75rem; /* Space between the bullet and the text */
  color: var(--primary-color); /* Optional: customize the color of the bullet */
}

#dept-scheme-list > * {
  background: #f9fafb !important;
  border: unset;
}

.custom-card-body .row > div:nth-child(1){
  @media (min-width:700px) {
    padding-top: 7%;
  }
}

.major-content{
  display: grid;
  row-gap: 3%;
}

.contnt-main-hdr{
  font-size: 1.4rem !important;
  text-align: center;
}

.contnt-main-hdr-tagline {
  font-style: italic;
  color: #000;
  text-align: center;
  font-weight: 500;
} 


.custom-card-body .row > div:nth-child(1){
  padding-top: 6%; 
  display: grid;
  justify-content: center;

}

.navigation-path{
  padding: 0% 2.5%;
}

.custom-card-feature-name{
      font-weight: 500;
    color: black;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
}

.ph-gal-crd-body > div:nth-child(2){

}


#dummy-card::after{
  content: '' !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  background:red !important;
  top:50% !important;
  left:50% !important;
  translate: -50% -50% !important;
  z-index: -1 !important;
  padding:3px !important;
  border-radius: 10px !important;
}

.my-card-container {
  margin:0 auto !important;padding:2em !important;width:300px !important;
             background: #1c1f2b !important;
             text-align: center !important;
             border-radius: 10px !important;
             position: relative !important;
}

.my-card{
 
}

.my-card-container::after, .my-card-container::before {
   content: '' !important;
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
  background:conic-gradient(red,blue,green,yellow) !important;
  top:50% !important;
  left:50% !important;
  translate: -50% -50% !important;
  z-index: -1 !important;
  padding:5px !important;
  border-radius: 10px !important;
}

.my-card-container::before{
  filter:blur(1.5rem)
}

/* .my-card {
  width: 280px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.my-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.my-card-title {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.my-card-body {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
} */


.info-kiosk-strong-txt{
  color: #0d4c81;
}


/*10/03/2026*/

.top-header-wrapper .accessibility-new-cnt{
background: #0d4c81 !important;
color: rgb(255, 255, 255) !important;
margin-bottom: -20px;
}
.top-header-wrapper .skip-cnt-new{
  color: white;font-size: 0.85rem;
}
.top-header-wrapper .separator-new{
  font-size: 0.85rem;
}
.top-header-wrapper .icon-group-new{
  font-size: 0.85rem;
}
.top-header-wrapper .icon1-new{
  text-align: center; 
  color: white;
  font-size: 0.85rem;
}
.top-header-wrapper .language-dropdown-new{
  display: none; 
  font-size: 15px;
}

.top-header-wrapper .language-dropdown-new ul,
.top-header-wrapper .language-dropdown-new li {
    display: none;
    font-size: 15px;
}

.top-header-wrapper .center-text-new{
  text-align: center; font-size: 17px; padding-top: 0%;line-height: normal;
}
.top-header-wrapper .text-cnt1{
  font-weight: 600; font-size: 1.5rem !important;
}
.top-header-wrapper .text-cnt2{
font-weight: 600; font-size: 1.5rem !important;
}
.top-header-wrapper .text-cnt3{
  display: block; font-weight: 600;
}

.hero-wrapper-new .swiper-wrapper-new{
  transition-duration: 1500ms!important;
}
.hero-wrapper-new .swiper-slide-new1{
  min-height: 420px; width: 1257px; opacity: 0; transform: translate3d(0px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new2{
  min-height: 420px; width: 1257px; opacity: 0; transform: translate3d(-1257px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new3{
 min-height: 420px; width: 1257px; opacity: 0; transform: translate3d(-2514px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new4{
 min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new5{
  min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new6{
  min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new7{
 min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new8{
min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new9{
 min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}
.hero-wrapper-new .swiper-slide-new10{
  min-height: 420px; width: 1257px; opacity: 1; transform: translate3d(-3771px, 0px, 0px); transition-duration: 1500ms;
}

.about-wrapper-new{
  padding: 40px 0px!important;
}

.notified-wrapper .info-box-new{
  display: block !important;
}
.notified-wrapper .custom-info-kisok-new{
  --kisok-duration: 16s!important;
}
.custom-info-kisok-ticker-track-new{
  --kisok-duration: 18s!important;
}
.custom-info-kisok-ticker-tracks-new{
 --kisok-duration: 15s!important;
}

.analytical-dshbrd-new-wrapper .key-new{
  font-size: 0.9rem;font-weight: 700;color: black;
}
.analytical-dshbrd-new-wrapper .apexcharts-canvas-new{
  width: 513px; height: 304.7px;
}
.analytical-dshbrd-new-wrapper .apexcharts-svg-new{
  background: transparent;
}
.analytical-dshbrd-new-wrapper .apexcharts-legend-new{
  position: absolute; left: auto; top: 68px; right: 5px;
}
.analytical-dshbrd-new-wrapper .apexcharts-legend-series-new{
  margin: 2px 5px;
}
.analytical-dshbrd-new-wrapper .apexcharts-legend-marker-new{
  background: rgb(0, 143, 251) !important;
 color: rgb(0, 143, 251);
 height: 12px;
 width: 12px;
 left: 0px;
 top: 0px;
 border-width: 0px;
 border-color: rgb(255, 255, 255);
 border-radius: 12px;
}

.analytical-dshbrd-new-wrapper .apexcharts-legend-text-new{
  color: rgb(55, 61, 63);
   font-size: 12px!important;
   font-weight: 400;
   font-family: Helvetica, Arial, sans-serif;
}

.analytical-dshbrd-new-wrapper .apexcharts-legend-marker-new1{
  background: rgb(102, 245, 190) !important;
 color: rgb(102, 245, 190);
 height: 12px;
 width: 12px;
 left: 0px;
 top: 0px;
 border-width: 0px;
 border-color: rgb(255, 255, 255);
 border-radius: 12px;
}
.analytical-dshbrd-new-wrapper .apexcharts-legend-marker-new2{
background: rgb(255, 205, 102) !important;
color: rgb(255, 205, 102);
height: 12px;
width: 12px;
left: 0px;
top: 0px;
border-width: 0px;
border-color: rgb(255, 255, 255);
border-radius: 12px;
}
.analytical-dshbrd-new-wrapper .apexcharts-legend-marker-new3{
background: rgb(255, 145, 160) !important;
color: rgb(255, 145, 160);
height: 12px;
width: 12px;
left: 0px;
top: 0px;
border-width: 0px;
border-color: rgb(255, 255, 255);
border-radius: 12px;
}
.analytical-dshbrd-new-wrapper .apexcharts-legend-marker-new4{
   background: rgb(173, 152, 232) !important;
   color: rgb(173, 152, 232);
   height: 12px;
   width: 12px;
   left: 0px;
   top: 0px;
   border-width: 0px;
   border-color: rgb(255, 255, 255);
   border-radius: 12px;
}
.analytical-dshbrd-new-wrapper .apexcharts-legends-chrt-new{
  position: absolute; left: auto; top: 68px; right: 5px;
}
.apexcharts-legend {
display: flex;
overflow: auto;
padding: 0 10px;
}
.apexcharts-legend.apx-legend-position-bottom,
.apexcharts-legend.apx-legend-position-top {
flex-wrap: wrap;
}
.apexcharts-legend.apx-legend-position-right,
.apexcharts-legend.apx-legend-position-left {
flex-direction: column;
bottom: 0;
}
.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left,
.apexcharts-legend.apx-legend-position-top.apexcharts-align-left,
.apexcharts-legend.apx-legend-position-right,
.apexcharts-legend.apx-legend-position-left {
justify-content: flex-start;
}
.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center,
.apexcharts-legend.apx-legend-position-top.apexcharts-align-center {
justify-content: center;
}
.apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right,
.apexcharts-legend.apx-legend-position-top.apexcharts-align-right {
justify-content: flex-end;
}
.apexcharts-legend-series {
cursor: pointer;
line-height: normal;
}
.apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series,
.apexcharts-legend.apx-legend-position-top .apexcharts-legend-series {
display: flex;
align-items: center;
}
.apexcharts-legend-text {
position: relative;
font-size: 12.5px !important;
}
.apexcharts-legend-text *,
.apexcharts-legend-marker * {
pointer-events: none;
}
.apexcharts-legend-marker {
position: relative;
display: inline-block;
cursor: pointer;
margin-right: 3px;
border-style: solid;
}
.apexcharts-legend.apexcharts-align-right .apexcharts-legend-series,
.apexcharts-legend.apexcharts-align-left .apexcharts-legend-series {
display: inline-block;
}
.apexcharts-legend-series.apexcharts-no-click {
cursor: auto;
}
.apexcharts-legend .apexcharts-hidden-zero-series,
.apexcharts-legend .apexcharts-hidden-null-series {
display: none !important;
}
.apexcharts-inactive-legend {
opacity: 0.45;
}

.analytical-dshbrd-new-wrapper .apexcharts-pie-label-new{
  font-family: Helvetica, Arial, sans-serif;
}
.analytical-dshbrd-new-wrapper .apexcharts-tooltip-series-group-new{
  order: 1;
}
.analytical-dshbrd-new-wrapper .apexcharts-tooltips-marker-new{
  background-color: rgb(0, 143, 251);
}
.analytical-dshbrd-new-wrapper .apexcharts-tooltips-texts-new{
  font-family: Helvetica, Arial, sans-serif; font-size: 12px;
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-new{
  order: 2;
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-marker-new{
  background-color: rgb(0, 227, 150);
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-new1{
  order: 3;
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-marker-new1{
  background-color: rgb(254, 176, 25);
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-new2{
  order: 4;
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-marker-new2{
 background-color: rgb(255, 69, 96);
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-new3{
 order: 5;
}
.analytical-dshbrd-new-wrapper .apexcharts-tool-marker-new3{
 background-color: rgb(119, 93, 208);
}
.analytical-dshbrd-new-wrapper .tbl-card-new{
  margin-top:16px;
}

.our-scheme-wrapper-new{
  padding: 20px 0px!important;
}

.Whats-new-wrapper .heading-mbl{
  font-size: 1.2rem;
}
.Whats-new-wrapper .pgph-mbl{
  font-size: 0.85rem;
}
.Whats-new-wrapper .eml-container{
  padding: 0px 4px;
}
.Whats-new-wrapper .store-bdg-new{
  font-size: 0.85rem;
}

.services-wrapper .crd-row{
justify-content: center;
}
.team-member-wrapper-new{
padding: 20px 0px;background: #fff !important;
}

.teamsection .center-slider .slick-slide {
background-color: #a2a2a2;
color: #fff;
height: 200px;
margin: 0 0px 0 0;
display: flex;
align-items: center;
justify-content: center;
transform: scale(1.9);
transition: all 0.4s ease-in-out;
}
.teamsection .center-slider .slick-slide,
.teamsection
.center-slider
.slick-slide[aria-hidden="true"]:not(.slick-cloned)
~ .slick-cloned[aria-hidden="true"] {
transform: scale(0.9, 0.9);
transition: all 0.4s ease-in-out;
}
/* Active center slide (You can change anything here for cenetr slide)*/
.teamsection .center-slider .slick-center,
.teamsection
.center-slider
.slick-slide[aria-hidden="true"]:not([tabindex="-1"])
+ .slick-cloned[aria-hidden="true"] {
transform: scale(1.1);
background-color: #0d4c81;
}
.teamsection .center-slider .slick-current.slick-active {
transform: scale(1.2);
background-color: #0d4c81;
z-index: 99999;
position: relative;
}
.teamsection .slick-prev,
.teamsection .slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
}
.teamsection .slick-next,
.teamsection .slick-prev {
z-index: 5;
}
.teamsection .slick-next {
right: 15px;
}
.teamsection .slick-prev {
left: 15px;
}
.teamsection .slick-next:before,
.teamsection .slick-prev:before {
color: #000;
font-size: 26px;
}

.achievements-wrapper .achievement-section-id-new{
padding:0px !important;
}
.achievements-wrapper .achievements-cnt{
padding: 24px 16px !important;
margin: 0 auto !important;
}
.achievements-wrapper .timeline-br-cnt{
padding: 24px 16px !important;
margin: 0 auto !important;
}
.achievements-wrapper .timeline-img-new{
  height: 320px; object-fit: cover;
}

.explore-gallery-wrapper{
  background: #fff !important;
}
.explore-gallery-wrapper .card-body-new img{
  width:100%;
}
.explore-gallery-wrapper .card-title-new{
  text-align: center;margin: 3px 0px 0px 0px;
}
.gallery-tag {
columns: 4;
column-gap: 15px;
}
.gallery-tag img {
width: 100%;
margin-bottom: 15px;
border-radius: 10px;
cursor: zoom-in;
}
.masonry-img{opacity:1!important;}

.explore-marquee-wrapper .marquee-inner{
padding-bottom: 11px;
max-width: unset !important;
padding-right: 0px !important;
padding-left: 0px !important;
margin-left: 0px !important;
margin-right: 0px !important;
}
.announcement-wrapper{
display:flex;
align-items:center;
width:100%;
}

.announcement-box{
display:flex;
align-items:center;
gap:8px;
background:#6697c3;
color:#fff;
padding:14px 65px 13px 18px;
font-weight:600;
font-size:15px;
white-space:nowrap;
clip-path: polygon(0 0, 98% 0, 88% 50%, 78% 100%, 0 100%);
margin-right: -46px;
z-index: 9;
margin-top: -1px;

}

.announcement-box img{
width:30px;
height:30px;
/*filter:brightness(0) invert(1);*/
}

.announcement-ticker{
flex:1;
overflow:hidden;
}

/*.thmb-slider{
position: absolute;
right: 10px;
bottom: 145px;
border-top: 1px solid #b8b4b4;
padding-top: 20px;
width: 50%;
overflow: hidden;
}
.thmb-img-new{
height: 80px!important;
width: 80px!important;
}
/*****departmentanil***/
    .page-head h2 {
    margin: 8px 0 4px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0c3c78;
    letter-spacing: 0.5px;
}
.page-head hr {
    border: none;
        border-top: 3px solid #cfe2ff;
    margin: 10px 0 12px;
}
*/

.corner-border-card{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}


.corner-border-card::before,
.corner-border-card::after{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #0d4c81;
    transition: all 0.4s ease;
}


.corner-border-card::before{
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 5px;
}


.corner-border-card::after{
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 5px;
}


.corner-border-card:hover::before,
.corner-border-card:hover::after{
    width: 70px;
    height: 70px;
}


.gallery-details-wrapper{
  background:#fff;
}

.gallery-details-card{
  position:relative;
  overflow:hidden;
  border-radius:8px;
}

.gallery-details-card a{
  display:block;
}

.gallery-details-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .6s ease;
  display:block;
}

/* Dark overlay */
.gallery-details-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.25);
  opacity:0;
  transition:.4s ease;
  pointer-events:none; /* IMPORTANT FIX */
}

/* Shine animation */
.gallery-details-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;
  background:linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.4) 50%,
      rgba(255,255,255,0) 100%
  );
  transform:skewX(-25deg);
  pointer-events:none; /* IMPORTANT FIX */
}

.gallery-details-card:hover img{
  transform:scale(1.12);
}

.gallery-details-card:hover::after{
  opacity:1;
}

.gallery-details-card:hover::before{
  animation:shine 1s;
}

@keyframes shine{
  100%{
    left:125%;
  }
}

.btn-custom-primary:hover {
    color: #f89d2c !important;
}

.features .list-group-item {
    text-align: justify;
    padding: 0px;
}
.topmost-bar-left-section{margin-top: 0px !important;}

.newsletterArch {
    float: right;
    text-decoration: none;
    background: #0d4c81;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}
.documentTableSec{border: 1px solid #ccc;}
.actBtn{
      width: 150px;
    display: flex;
    gap: 4px;
}
.documentTableSec tbody td {
    padding: 12px;
    border-top: 1px solid var(--border);
    vertical-align: top;
    border-right: 1px solid #ccc;
}
.top_head_sec h2{font-size: 24px;}

.breadcrumb {max-width:1200px !important;}

.about-wrapper #mainSlider .carousel-item{
    /* background: linear-gradient(135deg, #0f4c8100 0%, #1e6fb98c 50%, #0d4c80 100%); */
    color: #ffffff;
      background: #a5d4fe!important;
    border-radius: 10px !important;
     }
   .carousel-item .profile_img {
     position: relative!important;
    top: 0%!important;
    height: 300px!important;
    width: 300px!important;
    padding: 18px!important;
    border-radius: 10px!important;
}

.carousel-item .profile_img img {
    margin: 0% 0% 0% 0%;
    width: 100% !important;
    height: 100% !important;
    /* height: 325px !important; */
    border-radius: 15px !important;
     border: 5px solid #fff!important;
    object-fit: cover !important;
    object-position: top;
}

#main-header-logo-sitename{
    padding-bottom: 0.4%;
    padding-top: 1.5% !important;
}
@media(max-width:676px){
  .carousel-item .profile_img {
    width: 100%!important;
  }
.carousel-item .profile_img img {
  margin: auto!important;
}
}
.about-wrapper .thumbnail_slider .thumbnail-slider .thumb {
    border-radius: 8px!important;
}
.about-wrapper .min-info h4{color: #0f3d69!important;}
.about-wrapper .min-info h5{color: #334d66!important;}
  .about-wrapper .min-info {
    height: auto!important;
    position: absolute!important;
    top: 35%!important;
    padding: 0% 2%;
}

@media(max-width:676px){
   .about-wrapper .min-info {
    top:65%!important;
    text-align: center;
}
}
.read-more-new{
  color: #0b5ed7!important;
}

.contact-wrapper-new thead th:last-child {
  border-right:1px solid #4b4b4b;
}
.contact-wrapper-new .contact-numb-new{
  border-bottom:1px solid #4b4b4b!important;
}
.paginate_button .page-link{
  background: #0d4c81 !important;
  color: #fff!important;
}
@media (max-width:991px) {
#policyContainer{margin-top:42px;}
    .newsletterArch {
        font-size: 14px;
        padding: 6px 8px;
        font-weight: 400;
        width: fit-content;
        /* float: right !important; */
        /* justify-content: flex-end; */
        margin-top: 20px;
    }
   .policy-section .top_head_sec h4 {
        font-size: 18px;
        /* display: ruby; */
        width: 100%;
        justify-content: space-around;
        /* display: flex; */
    }
    
#policyContainer .policy-item{margin-top: 5px;}
  main.my-custom-style {
      padding-left: 15px;
      padding-right: 15px;
      background-color: #f8f9fa;
  }
.tender-no {
    font-weight: 600;
    font-size: 14px;
}
.photo-gallery-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 92%;
    border-radius: 8px;
    box-shadow: 0px 4px 7.8px 0px #00000040;
    background: #fff;
    border: 1px solid #ebebeb;
    border-bottom: 3px solid #0d4c81;
    transition: transform 0.3s ease;
    margin-top: 4px;
}
#ph-gal-card {
    padding-bottom: 18px;
}
#ph-gal-crd-title {
    color: black;
    font-weight: 400;
    font-size: 14px !important;
}
#for-line{
  height: 100% !important;
      width: 100%!important;
}
.chart-wrap {
      height: 100% !important;
      width: 100%!important;
    }

  #main-header-logo-sitename {
    padding-bottom: 0.4%;
    padding-top: 1.5% !important;
}  
 #main-header-logo-sitename .col-12.col-md-2.text-center.mb-3.mb-md-0{
    width: 17% !important;
    padding: 0px;
 }   
.top-header-wrapper .center-text-new {
    text-align: center;
    font-size: 14px;
    padding-top: 8%;
    line-height: normal;
    width: 57%;
}
.top-header-wrapper .text-cnt1 {
    font-weight: 600;
    font-size: 14px !important;
    margin-top: 20px;
}
.top-header-wrapper .text-cnt2 {
    font-weight: 600;
    font-size: 14px !important;
    line-height: normal;
}
.top-header-wrapper .text-cnt3 {
    display: block;
    font-weight: 600;
    font-size: 14px !important;
}
#main-hdr-left-logo {
    height: 4rem;
}
 #main-header-logo-sitename .col-12.col-md-2.text-center.text-md-end{width: 20%;}
#main-hdr-right-logo {
    height: 2.5rem;
    width: 231px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
.main-emblem-dv {
    margin-top: 42%;
}
#amrut-scheme-left h3{
      font-size: 19px;
}



}

@media (max-width:767px) {
    #for-line {
      height: 100% !important;
      width: 100% !important;
  }
  .card-title {
      font-size: 14px !important;
  }
.chart-card .chart-wrap canvas#bar-canvas{
  height: 250px !important;
      width: 100% !important;
}
.analytical-dshbrd-new-wrapper .apexcharts-canvas-new {
    width: 326px !important;
   height: 250px !important;
}
#SvgjsSvg2262 {
  width: 100% !important;
}
#pieChart{
    position: relative;
    left: -25px !important;
}
    #SvgjsSvg2262 {
        width: 100% !important;
        position: relative;
        left: -25px;
    }
#card-bg-exp, #card-bg-rev {
    width: 87%;
}
.photo-gallery-card:hover {
    background: linear-gradient(85deg, #0d4c8100 24%, #0d4c81 100%);
    color: #fff;
    transform: scale(1.08);
    z-index: 5;
    height: 295px;
}
.swiper-pagination-bullet{
      width: 20px !important;
    height: 20px !important;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 2!important;
    opacity: 1!important;
    color: #0773a4 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.team-member-wrapper .slick-prev:hover {
    color: transparent;
    outline: none;
    background: #0d4c8100;
}
.team-member-wrapper .slick-next:hover {
    color: transparent;
    outline: none;
    background: #0d4c8100;
}
#citizen-service-section-title {
       padding-top:15% !important;
       padding-bottom: 0px !important;

}
  .app-wrapper {
      max-width: 100%;
      text-align: center!important;

  }
  #mainSlider .carousel-item {
      height: 419px !important;
  }

  .about-wrapper .min-info {
      top: 74% !important;
      text-align: center;
  }



}
