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


:root {
  --default-font: "Poppins", "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", "Ubuntu", sans-serif;
  --nav-font: "Poppins", "Lato", sans-serif;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background: linear-gradient(90deg, #96205E 0%, #6A1B48 100%);
  color: white;
  transition: all 0.5s;
  z-index: 999;
  position: fixed;
  width: 100%;
  background-color: var(--background-color);
}

.header .topbar {
    background: linear-gradient(90deg, #96205E 0%, #6A1B48 100%);

    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: 220px;
}

.header .logo img {
  max-height: auto;
  margin-right: 8px;
  width:100%;
}

.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: white;
    padding: 18px 15px;
    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: #F0D655;}

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

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

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

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

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

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

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

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

@media (max-width: 1400px) {
  .frameworkSwiper .top-card {
      padding: 22px 24px !important;
  }
  .frameworkSwiper .swiper-button-next {
    right: 6% !important;left: auto;
  }
.frameworkSwiper .swiper-button-prev {
    right: auto;
    left: 6% !important;
}
.policy_section .subsidy-tabs .nav-link {
    font-size: 15px !important;
}
.bdrline::before {
    left: -6px!important;
}
.about .cta-container .btn-primary {
    padding: 10px 15px !important;
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
background: linear-gradient(90deg, #611556 0%, #762337 100%);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}
.page-title {
    min-height: 300px;         
    display: flex;
    align-items: center;       
    justify-content: center;  
    text-align: center;
    padding: 40px 0;
}

.content-center {
  width:100%;
  padding-top:88px;
}
.pm-mitra-guidelines, .service-details{padding-top:188px!important;}
.page-title p{
  font-size: 18px;
    margin-bottom: 30px;
    color: white;
    position: relative;
}
.faqsbg{height:360px !important;padding-top:88px!important;}

.page-title h1 {
 font-size: 24px;
    font-weight: 700;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    /*box-shadow: 0px 4px 4px 0px #0000004D;*/
    line-height: 1.2;
    color: white;
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 141%;
    letter-spacing: 0%;
    z-index: 99;
    position: relative;
}

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 75px 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: 10px 26px;
    color: var(--contrast-color);
    transition: all 0.3s ease;
    border: 2px solid;
    border-image-source: linear-gradient(90deg, #611556 0%, #762337 100%);
    box-shadow: 0px 4px 4px 0px #0000004D;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    border: none;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 17px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  font-size:12px;
  transition: all 0.3s ease;
  background: white;
}

.hero .hero-buttons .btn-secondary:hover {
      background: transparent;
    color: white;
    border: 1px solid white;
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.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: 141%;

}

.about .about-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about .achievement-boxes .achievement-box {
  padding: 0.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.about .achievement-boxes .achievement-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about .achievement-boxes .achievement-box h3 {
      margin-bottom: 0.3rem;
    color: black;
    font-family: Poppins;
    font-weight: 600;
    font-size: 25px;
    line-height: 141%;
  }

.about .achievement-boxes .achievement-box p {
  margin-bottom: 0;
    font-size: 0.9rem;
    font-family: Poppins;
    font-weight: 500;
    line-height: 141%;
}

.about .certifications h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about .certifications img {
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.about .certifications img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.about .cta-container .btn-primary {
  background-color: #96205E;
  border-color: #96205E;
  box-shadow: 0px 4px 4px 0px #0000004D;
  color: var(--contrast-color);
  padding: 10px 26px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about .cta-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-image {
  position: relative;
}

.about .about-image .main-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about .about-image .image-overlay {
  position: absolute;
  bottom: -60px;
  right: -30px;
  width: 50%;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about .about-image .image-overlay img {
  border: 5px solid var(--background-color);
}

.about .about-image .experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .about-image .experience-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about .about-image .experience-badge p {
  font-size: 0.8rem;
  margin-bottom: 0;
  margin-top: 0.3rem;
}

@media (max-width: 991.98px) {
  .about .about-image {
    margin-top: 3rem;
  }

  .about .about-image .image-overlay {
    bottom: -40px;
    right: -20px;
  }

  .about .about-image .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    left: -20px;
  }

  .about .about-image .experience-badge span {
    font-size: 1.5rem;
  }

  .about .about-image .experience-badge p {
    font-size: 0.7rem;
  }
}

@media (max-width: 767.98px) {
  .about .achievement-boxes .achievement-box {
    padding: 1rem;
  }

  .about .achievement-boxes .achievement-box h3 {
    font-size: 1.8rem;
  }

  .about .achievement-boxes .achievement-box p {
    font-size: 0.8rem;
  }

  .about .about-image .image-overlay {
    bottom: -30px;
    right: 0;
    width: 40%;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
}

.services .service-card {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-card.featured {
  border: 2px solid var(--accent-color);
}

.services .service-card.featured .service-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-card .service-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 0 0 0 8px;
}

.services .service-card .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: all 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.services .service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-card p {
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.services .service-card .service-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.services .service-card .service-features span i {
  color: var(--accent-color);
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card .service-link:hover {
  gap: 0.75rem;
}

.services .service-image-block {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services .service-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .service-list-block {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.services .service-list-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-list-block p {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services .service-list-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services .service-list-item .service-list-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-list-item .service-list-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .service-list-item .service-list-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.services .service-list-item .service-list-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container {
  margin-top: 5rem;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 10px;
}

.services .cta-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .cta-container p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .cta-container .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services .service-list-block {
    margin-top: 2rem;
  }

  .services .service-card {
    padding: 2rem;
  }

  .services .cta-container {
    padding: 2rem;
  }

  .services .cta-container h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services .service-list-item {
    flex-direction: column;
    gap: 1rem;
  }

  .services .service-list-item .service-list-icon {
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .projects-grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;*/
}

@media (max-width: 992px) {
  .projects .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.projects .project-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  /*min-height: 280px;*/
}

.projects .project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-item:hover .project-visual img {
  transform: scale(1.08);
}

.projects .project-item:hover .project-link {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.projects .project-item:hover .project-link i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .projects .project-item {
    flex-direction: column;
    min-height: auto;
  }
}

.projects .project-content {
  flex: 1;
  padding: 30px;
  /*display: flex;*/
  flex-direction: column;
  justify-content: space-between;
      background: #F0D655;
}

@media (max-width: 768px) {
  .projects .project-content {
    padding: 25px;
  }
}

.projects .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.projects .project-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.projects .project-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects .project-status.completed {
  background: #22c55e;
  color: #ffffff;
}

.projects .project-status.in-progress {
  background: var(--accent-color);
  color: #ffffff;
}

.projects .project-status.planning {
  background: #f59e0b;
  color: #ffffff;
}

.projects .project-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .projects .project-title {
    font-size: 20px;
  }
}

.projects .project-details {
  margin-bottom: 0px;
}

.projects .project-info {
  margin-bottom: 20px;
}

.projects .project-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.projects .project-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .projects .project-specs {
    flex-direction: column;
    gap: 8px;
  }
}

.projects .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.projects .spec-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects .project-location i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.projects .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.projects .project-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.projects .project-visual {
  flex: 0 0 400px;
  position: relative;
  overflow: hidden;
}
.project-item{
  margin:0 auto;
}

@media (max-width: 768px) {
  .projects .project-visual {
    flex: none;
    height: 200px;
  }
}

.projects .project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projects .project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.projects .project-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

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

.testimonials .testimonial-slide {
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  min-height: 400px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-top: 4px solid var(--accent-color);
}

.testimonials .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonials .stars-rating {
  display: flex;
  gap: 0.5rem;
}

.testimonials .stars-rating i {
  color: #ffc107;
  font-size: 1.25rem;
}

.testimonials .quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .quote-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.testimonials .testimonial-body {
  margin: 2.5rem 0;
}

.testimonials .testimonial-body p {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--heading-color);
  margin: 0;
  position: relative;
}

.testimonials .testimonial-footer {
  margin-top: 2.5rem;
}

.testimonials .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .author-details {
  text-align: left;
}

.testimonials .author-details h4 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.testimonials .author-details .role {
  display: block;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonials .author-details .company {
  display: block;
  font-size: 0.9375rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.testimonials .swiper-navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonials .swiper-pagination {
  position: static !important;
  margin: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static !important;
  width: 50px;
  height: 50px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.testimonials .swiper-button-prev:after,
.testimonials .swiper-button-next:after {
  font-size: 1.25rem;
  color: var(--contrast-color);
  font-weight: bold;
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .testimonials .testimonial-slide {
    padding: 2.5rem 2rem;
    min-height: 350px;
  }

  .testimonials .testimonial-body p {
    font-size: 1.125rem;
  }

  .testimonials .author-avatar {
    width: 70px;
    height: 70px;
  }

  .testimonials .author-details h4 {
    font-size: 1.25rem;
  }

  .testimonials .quote-icon {
    width: 50px;
    height: 50px;
  }

  .testimonials .quote-icon i {
    font-size: 1.25rem;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 1.125rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials .testimonial-slide {
    padding: 2rem 1.5rem;
    min-height: 300px;
  }

  .testimonials .testimonial-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonials .testimonial-body {
    margin: 2rem 0;
  }

  .testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .testimonials .author-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .testimonials .author-details {
    text-align: center;
  }

  .testimonials .author-details h4 {
    font-size: 1.125rem;
  }

  .testimonials .author-details .role {
    font-size: 0.9375rem;
  }

  .testimonials .author-details .company {
    font-size: 0.875rem;
  }

  .testimonials .swiper-navigation-wrapper {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .testimonials .swiper-button-prev:after,
  .testimonials .swiper-button-next:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications {
  padding: 100px 0;
  background: #FDF9E9;
}

.certifications .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%;
}
.imagegridesec .project-image{height: 288px;} 
.service-details .portfolio-showcase .project-showcase-item .project-image {
  position: relative;
  height: 100%;
  min-height: 250px;
}

.service-details .portfolio-showcase .project-showcase-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info {
  text-align: center;
  color: var(--contrast-color);
  padding: 1.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn i {
  font-size: 1.2rem;
}

.service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info .view-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 20%);
  transform: scale(1.1);
}

.service-details .portfolio-showcase .project-showcase-item:hover .project-image img {
  transform: scale(1.05);
}

.service-details .portfolio-showcase .project-showcase-item:hover .project-image .project-overlay {
  opacity: 1;
}

@media (max-width: 992px) {
  .service-details .service-sidebar {
    position: static;
    margin-top: 3rem;
  }

  .service-details .service-main-content .content-section h1 {
    font-size: 2rem;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline::before {
    left: 30px;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
    padding-left: 100px;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
    width: 60px;
    height: 60px;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker .phase-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-details .service-sidebar .contact-action-card .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-details .service-main-content .hero-section img {
    height: 250px;
  }

  .service-details .service-main-content .hero-section .hero-overlay {
    padding: 1.5rem;
  }

  .service-details .service-main-content .capabilities-grid .row {
    --bs-gutter-y: 2rem;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline::before {
    display: none;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item {
    padding-left: 0;
    text-align: center;
  }

  .service-details .service-main-content .methodology-section .methodology-timeline .timeline-item .timeline-marker {
    position: relative;
    margin: 0 auto 1.5rem;
  }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .project-header {
  margin-bottom: 60px;
}

.project-details .project-header .project-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .project-header .project-banner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.project-details .project-header .project-banner .banner-badge {
  position: absolute;
  top: 25px;
  left: 25px;
}

.project-details .project-header .project-banner .banner-badge .status-indicator {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1e40af 30%));
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .project-header .project-summary {
  padding-left: 50px;
}

.project-details .project-header .project-summary .project-tags {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.project-details .project-header .project-summary .project-tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-details .project-header .project-summary .main-title {
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.project-details .project-header .project-summary .summary-text {
  font-size: 17px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 45px;
}

.project-details .project-header .project-summary .key-metrics .metric-row {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.project-details .project-header .project-summary .key-metrics .metric-row:last-child {
  margin-bottom: 0;
}

.project-details .project-header .project-summary .key-metrics .metric {
  flex: 1;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.project-details .project-header .project-summary .key-metrics .metric .metric-title {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.project-details .project-header .project-summary .key-metrics .metric .metric-data {
  display: block;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .project-details .project-header .project-summary {
    padding-left: 0;
    margin-top: 40px;
  }

  .project-details .project-header .project-banner img {
    height: 350px;
  }

  .project-details .project-header .main-title {
    font-size: 2.2rem;
  }

  .project-details .project-header .key-metrics .metric-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .project-details .project-header .project-tags {
    flex-wrap: wrap;
  }
}

.project-details .visual-showcase {
  margin-bottom: 80px;
}

.project-details .visual-showcase .showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .visual-showcase .showcase-grid .showcase-item.large {
  grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item.tall {
  grid-row: span 2;
}

.project-details .visual-showcase .showcase-grid .showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
  padding: 30px 20px 20px;
}

.project-details .visual-showcase .showcase-grid .showcase-item .item-overlay .overlay-label {
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .project-details .visual-showcase .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .project-details .visual-showcase .showcase-grid .showcase-item.large,
  .project-details .visual-showcase .showcase-grid .showcase-item.tall {
    grid-row: span 1;
  }
}

.project-details .detailed-breakdown {
  margin-bottom: 80px;
}

.project-details .detailed-breakdown .breakdown-content h3 {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list {
  margin-top: 40px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point:last-child {
  margin-bottom: 0;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-marker {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-marker i {
  color: var(--accent-color);
  font-size: 18px;
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-details h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .breakdown-content .achievement-list .achievement-point .achievement-details p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .detailed-breakdown .specifications-panel h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.project-details .detailed-breakdown .specifications-panel .spec-table {
  margin-bottom: 40px;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row:last-child {
  border-bottom: none;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row .spec-name {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  font-size: 14px;
}

.project-details .detailed-breakdown .specifications-panel .spec-table .spec-row .spec-detail {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header .progress-label {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-header .progress-percentage {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 16px;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-bar-container {
  height: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 4px;
  overflow: hidden;
}

.project-details .detailed-breakdown .specifications-panel .progress-indicator .progress-bar-container .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #10b981 40%));
  border-radius: 4px;
  transition: width 0.8s ease;
}

@media (max-width: 992px) {
  .project-details .detailed-breakdown .specifications-panel {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .project-details .detailed-breakdown .specifications-panel {
    padding: 30px 25px;
  }
}

.project-details .technical-gallery .gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.project-details .technical-gallery .gallery-header h3 {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.project-details .technical-gallery .gallery-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.project-details .technical-gallery .tech-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-details .technical-gallery .tech-item:hover {
  transform: translateY(-8px);
}

.project-details .technical-gallery .tech-item:hover .tech-caption {
  background: var(--accent-color);
}

.project-details .technical-gallery .tech-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-details .technical-gallery .tech-item .tech-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: color-mix(in srgb, var(--default-color), transparent 15%);
  color: var(--contrast-color);
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .project-details .technical-gallery .tech-item {
    margin-bottom: 20px;
  }

  .project-details .technical-gallery .tech-item img {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .quote-form-container {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.quote .quote-info {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  padding: 60px 40px;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  min-height: 100%;
}

@media (max-width: 992px) {
  .quote .quote-info {
    padding: 40px 30px;
  }
}

.quote .quote-info .quote-content {
  width: 100%;
}

.quote .quote-info h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.quote .quote-info>p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.quote .contact-items {
  margin-bottom: 30px;
}

.quote .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.quote .contact-item:last-child {
  margin-bottom: 0;
}

.quote .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.quote .contact-item .contact-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.quote .contact-item .contact-details h4 {
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.quote .contact-item .contact-details p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 14px;
  margin: 0;
}

.quote .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.quote .trust-badges .trust-badge {
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 10px 15px;
  border-radius: 25px;
}

.quote .trust-badges .trust-badge i {
  color: var(--contrast-color);
  font-size: 16px;
  margin-right: 8px;
}

.quote .trust-badges .trust-badge span {
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.quote .quote-form-wrapper {
  padding: 60px 40px;
}

@media (max-width: 992px) {
  .quote .quote-form-wrapper {
    padding: 40px 30px;
  }
}

.quote .form-header {
  margin-bottom: 30px;
}

.quote .form-header h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.quote .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin: 0;
}

.quote .php-email-form .form-group {
  margin-bottom: 20px;
}

.quote .php-email-form input[type=text],
.quote .php-email-form input[type=email],
.quote .php-email-form input[type=tel],
.quote .php-email-form select,
.quote .php-email-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.quote .php-email-form input[type=text]:focus,
.quote .php-email-form input[type=email]:focus,
.quote .php-email-form input[type=tel]:focus,
.quote .php-email-form select:focus,
.quote .php-email-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

.quote .php-email-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 50px;
  appearance: none;
}

.quote .php-email-form textarea {
  resize: vertical;
  min-height: 120px;
}

.quote .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
  .quote .quote-info {
    text-align: center;
  }

  .quote .quote-info .contact-items {
    max-width: 400px;
    margin: 30px auto;
  }

  .quote .quote-info .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quote .quote-form-container {
    border-radius: 10px;
  }

  .quote .quote-info {
    padding: 30px 20px;
  }

  .quote .quote-info h3 {
    font-size: 24px;
  }

  .quote .quote-form-wrapper {
    padding: 30px 20px;
  }

  .quote .form-header h4 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 40%));
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(120deg, var(--heading-color), color-mix(in srgb, var(--heading-color), var(--accent-color) 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #1a4372 30%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# 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;
  }
  .timehead{margin-top: 20px;}

}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.chip {
    display: inline-block;
    padding: .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;
}


.hero{background-color: transparent !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: #752238 !important;
    border: 9px solid #fff;
    color: #fff;
    padding: 3px;
    opacity: 1 !important;
}

.hero-bg-1 {
  background-image: url('../img/slide1.jpg');
  background-size: cover;
  background-position: center;
}

.hero-bg-2 {
  background-image: url('../img/slide2.png');
  background-size: cover;
  background-position: center;
}

.hero-bg-3 {
  background-image: url('../img/slide3.png');
  background-size: cover;
  background-position: center;
}

.swiper-slide section {
  position: relative;
  z-index: 2;
  position: absolute;
  top: 25%;
  left: 3.5%;
}

.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;
    top:-85px;
}
.achievement-boxes{margin-bottom: 32px;}
/* 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/bg-about.png);
    background-repeat:no-repeat;
    background-size: cover;
    background-position: bottom;
}
section#services{
    background-image: url(../img/bg-7parks.svg);
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 90px;
}
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;
}
 .video-btn{
  position: relative;
 }
.pulse-effect {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    position: absolute;
    top: 13%;
    z-index: 99;
    left: 35%;
    background: #6c1c47;
    line-height: 60px;
    text-align: center;
}
.pulse-effect i {
    left: 38%;
    top: 36%;
    color: #fff;
    font-size: 25px;
}
.circle1 {
      position: absolute;
      background-color: inherit;
      height: 100%;
      width: 100%;
      border-radius: 100%;
      opacity: 0.5;
      animation: pulse 3s ease-out infinite;
      background:#8e4f61;
      top: 0px;
}
      .circle1:nth-of-type(1) {
      animation-delay: -0.5s;
      }
      .circle1:nth-of-type(2) {
      animation-delay: -1s;
      }
      .circle1:nth-of-type(3) {
      animation-delay: -1.5s;
      }
      @keyframes pulse {
      100% {
      transform: scale(2.75);
      opacity: 0;
      }
      }


      /*.mySwipernew .swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important; /* Hide default arrows */
}*/
.mySwipernew .swiper-button-prev.custom-prev {
    background: #611556;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    left: 0px;
}
.mySwipernew .swiper-button-next{
    background: #611556;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    right: 0px;
}
 
.timeline { position: relative; margin: 40px 0 0 0; padding: 0 80px;  display: flex;
    justify-content: center;   /* CENTER THE WHOLE CONTENT */
    align-items: center;
    position: relative;
    margin: 100px auto;
    width: 80%;}
        .timeline-bar { position: absolute; top: 40px; left: 0; right: 0; height: 2px; background: #650d57; z-index: 1;}
        .timeline-dot { position: absolute;
    top: 32px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    z-index: 2;
    background: #fff;
    border: 2px solid #650d57;
    cursor: pointer; 
  }
        .timeline-dot.active { background: #650d57; border-color:#650d57;}
        .timeline-label { position: absolute; top: 0; width: 100px; text-align: center; font-weight: bold; font-size: 17px;}

        /* Updated positions for 6 years (2021 to 2026) */
/* ===== Timeline Points (5 points) ===== */
/* .tl1 { left: 10%; }
.tl2 { left: 30%; }
.tl3 { left: 50%; }
.tl4 { left: 67%; }
.tl5 { left: 86%; }
.tl6 { left: 99%; } */

/* ===== Labels positions ===== */
/* .tl-label1 { left: 10%; transform: translateX(-30%); }
.tl-label2 { left: 30%; transform: translateX(-30%); }
.tl-label3 { left: 50%; transform: translateX(-50%); }
.tl-label4 { left: 70%; transform: translateX(-70%); }
.tl-label5 { left: 90%; transform: translateX(-90%); }
.tl-label6 { left: 99%; transform: translateX(-99%); } */
.tl1 { left: 10%; }
.tl2 { left: 25%; }
.tl3 { left: 41%; }
.tl4 { left: 59%; }
.tl5 { left: 77%; }
.tl6 { left: 92%; }


.tl-label1 { left: 9%; transform: translateX(-30%); }
.tl-label2 { left: 24%; transform: translateX(-24%); }
.tl-label3 { left: 42%; transform: translateX(-42%); }
.tl-label4 { left: 61%; transform: translateX(-61%); }
.tl-label5 { left: 80.5%; transform: translateX(-81%); }
.tl-label6 { left: 97%; transform: translateX(-99%); }
  /*.card-custom { box-shadow: 0 6px 24px rgba(101,13,87,0.15); border-radius: 18px; padding: 32px;}*/
  .timeline-slider .swiper { padding-bottom:60px; }
  .timeline-slider .swiper-pagination-bullet-active { background:#650d57 !important; }
  .timeline-slider .swiper-button-prev {
  background: #611556;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0px;
}
.timeline-slider .swiper-button-next {
  background: #611556;
  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;}
   .timeline-slider .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{display: none;}
   .timeline-slider .swiper-slide::after{
    background: transparent !important;
}
/* Remove default border */
.custom-tabs {
    border-bottom: none;
}

/* Normal inactive tabs */
.custom-tabs .nav-link {
    border: none;
    background: transparent;
    color: #5a4d57;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    border-radius: 50px;
}

/* Dotted line under each tab */
.custom-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    border-bottom: 2px dotted #a07f9b;
}

/* Active tab styling */
.custom-tabs .nav-link.active {
    background: #650d57;
    color: #fff !important;
    border-radius: 50px;
}

/* Remove dotted under active */
.custom-tabs .nav-link.active::after {
    border: none;
}
.tabingsite{
      background: #F0D6551A;
    border: 1px solid #D4D4D4;
    padding: 20px;
}
.bgftr{
  background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}
section#team {
    background-image: url(../img/teamtre.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: transparent;
}
section#projects{
    background-image: url(../img/bg-about.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    /* background-color: transparent; */
}
section.certifications{
       background-image: url(../img/bg-7parks.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.parkprogressdate{
       background-image: url(../img/BGParkprogressdate.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.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.10);
    display: flex;
    align-items: center;
}
.news-img {
    width: 120px !important;
    height: 100px !important;
    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.10);
}

.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: 12px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;

}

.news-meta {
font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 10px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;

}

.read-more {
  font-weight: 600;
  color: #650d57;
  text-decoration: none;
  font-family: Poppins;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;

}

.read-more:hover {
    text-decoration: underline;
}
.instagramsection{
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.pm-footer {
 background: linear-gradient(90deg, #96205E 0%, #6A1B48 100%),
    url(../img/teamtre.svg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 30px 0 12px;
color: #fff;
font-family: 'Poppins', sans-serif;
}


.footer-logo {
  width: 100px;
}

.footer-text {
  max-width: 260px;
  line-height: 1.6;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.8;
}

/* Container */
.about-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

/* BACK IMAGE */
.about-main .main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* FRONT IMAGE CONTAINER */
.about-overlay {
     position: absolute;
    left: 57%;
    transform: translateX(-104%);
    width: 60%;
    top: 135px;
    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: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 4px;
    font-weight: 600;
        background: #96205E;
    
    border: 1px solid #611556;
    transition: all 0.3s 
ease;
}
.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 .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 .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 .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 .8s;
}
.abouts_titless {
    width: 70%;
    position: absolute;
    bottom: -58px;
    right: -25px;
    transition: transform .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 .8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: .2s; }
.fade-in:nth-child(2) { animation-delay: .4s; }
.fade-in:nth-child(3) { animation-delay: .6s; }
.fade-in:nth-child(4) { animation-delay: .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;

}
.newsmedia_box img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}

.service-main-content{
  height: 520px;
  overflow: auto;
  overflow-x: hidden;
  padding-right: 5px;
}
.highlight-card-scroll{
  height: 485px;
  overflow: auto;
  overflow-x: hidden;
  padding-right: 5px;
}
.service-main-content::-webkit-scrollbar, .highlight-card-scroll::-webkit-scrollbar {
  width: 10px;
  border-radius: 8px;
}

/* Track */
.service-main-content::-webkit-scrollbar-track, .highlight-card-scroll::-webkit-scrollbar-track  {
  background: #c9c8c8; 
  border-radius: 8px;
}
 
/* Handle */
.service-main-content::-webkit-scrollbar-thumb, .highlight-card-scroll::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 8px;
}

/* Handle on hover */
.service-main-content::-webkit-scrollbar-thumb:hover, .highlight-card-scroll::-webkit-scrollbar-thumb:hover {
  background: #555; 
  border-radius: 8px;
}
/********gallery sec**********/
.glimpses_progress_sec{
  height: 396px;
  overflow: auto;
  overflow-x: hidden;
  padding-right: 5px;
  margin-bottom: 20px;
}
.glimpses_progress_sec::-webkit-scrollbar {
  width: 10px;
  border-radius: 8px;
}

/* Track */
.glimpses_progress_sec::-webkit-scrollbar-track{
  background: #c9c8c8; 
  border-radius: 8px;
}
 
/* Handle */
.glimpses_progress_sec::-webkit-scrollbar-thumb{
  background: #888; 
  border-radius: 8px;
}

/* Handle on hover */
.glimpses_progress_sec::-webkit-scrollbar-thumb:hover {
  background: #555; 
  border-radius: 8px;
}


/* Responsive */
@media (max-width: 768px) {
  .service-box {
    flex-direction: column;
    text-align: center;
    border-radius: 18px;
    padding: 20px;
  }

  .service-icon {
    margin-top: 15px;
  }
.top_slider_whats_new{
  background: #45122f;
}
.whatsnew {
  width:100% !important;
  position: absolute;
  top: 7.7% !important;
  right: 0px !important;
}
.highlight-area {
  position: relative;
  margin-top: 340px !important;
}
section#projects .projects.section{padding-bottom:0px;}
.pulse-effect {top:85px;left:50%;}
.swiper-slide.hero-bg-3aa img {height: 55% !important;object-fit: cover;width: 100%;}
.education-wrapper {background: #ffffff !important;}
._2p3a{min-width: 90% !important;} 
.left_right, .right_left {display:none;}
.service-icon {width:55px;height:55px;right:-275px;bottom:72px;}
.service-icon {width: 55px;height: 55px;right: -26px;bottom: 102px;border: 5px solid white;float: right;}
.card_sec_relat{width:100%;}
.opportunities .filterdropdown {right:1% !important;top: 34px!important;}
.certifications {padding-bottom: 2px !important;}
.page-title h1 {font-size: 36px;}
.aboutusbg {height:575px !important;animation: initial!important;}
.newsmedia_box {width: 100%;height: 220px !important;}
.service-details .service-main-content .capabilities-grid .capability-card h4 {
  font-size: 16px;line-height: 22px;height: 44px;
}
.news-text h4 {line-height: normal;font-size: 12px;}
.pm-pills .nav-link{margin-bottom: 8px;}
.MP-dhar-bg{animation: inherit;}


}




.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:#000000;
    }
.highlight-area {
     background: #F7CB2A;

 /* 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;
    position: relative;
    margin-top: -43px;
    z-index: 9;
    color:#252424;
    }
    .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: -16px; }
    .marquee-box {
      overflow: hidden;
      height: 48px; /* Show just one paragraph's height */
      position: relative;
      background: transparent;
          font-size: 16px;
    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;}
      
    }
    .links-area {
     background: linear-gradient(90deg, #96205E 0%, #6A1B48 100%);
      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;
    }
    .quick-links-label {
      font-weight: bold;
      margin-right: 20px;
      font-size: 1.1em;
    }
    .quick-link {
      margin-right: 40px;
      font-size: 1em;
      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: #f0d655 !important;
}
.leftsidewith{width:50%;}
.Governmentlogo{
  width: 30px;
  margin-right: 10px;
}
.Ministrylogo{
  width: 2%;
  margin-right: 10px;
}
/* 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 .8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: .2s; }
.fade-in:nth-child(2) { animation-delay: .4s; }
.fade-in:nth-child(3) { animation-delay: .6s; }
.fade-in:nth-child(4) { animation-delay: .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 {
    line-height: 17px;
}
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:#6e1e43;
    padding: 8px 15px;
    border-radius: 15px;
}

    .investercontaint .info-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 12px;
        margin: 36px auto;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        height: 260px;
    }

    .investercontaint .card-title {
        background: #f4d44d;
        color: #000;
        font-weight: 500;
        text-align: center;
        padding:7px;
        border-radius: 8px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .investercontaint .card-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .investercontaint .card-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 4px 0;
      font-size: 14px;
      color: #111111;
      text-align: left;
      font-weight: 500;
    }

    .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(3, 1fr);
        gap: 18px;
    }

    .investercontaint .form-grid input,
    .investercontaint .form-grid select {
        width: 100%;
    padding: 18px 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: 4px;
        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;
}
.nav-search.searchicon{display: none;}
.side-btn span {
    opacity: 0;margin-left: 10px;transition: opacity 0.3s ease;
    padding: 19px 0px;
   }
.side-btn:hover {width: 218px;}
.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:1360px) {
  .leftsidewith {
    width: 35%;
}
}
@media (max-width:991px) {
  .leftsidewith {width:34%;}
  .utility-items .util-item {padding-right:0px;margin-right:0px;}
}
@media (max-width:767px) {
   .right-btn {right: 0px;}
   .whatsnew {
    background: #6e1e44f7 !important;
   }
   .customer-slider .slick-slide {
      height: 150px !important;
      transition: all 0.3s ease;
      display: flex !important;
      align-items: center;
      margin-bottom: 28px;
    }
    .customer-card{
      margin: 36px 0 15px 0px !important;
    }
    .education-wrapper .education-left-part {
      display: none !important;
    }
    .customer-slider-section .slick-list{
      height:532px !important;
    }
    .swiper-slide.hero-bg-3aa{height:680px !important;}
    .heroSwiper .swiper-pagination {
      position: absolute !important;
      inset: 0 auto 0 auto !important;
      right: 0px !important;
      left: auto !important;
      top: 60% !important;
    }
  .customer-slider .slick-dots{
    right:-22px;
  }
  .service-details .portfolio-showcase .project-showcase-item .project-image {
    margin-bottom: 10px;
  }
  
  .pwc-card {padding: 28px 10px;}
  .imagesectionnews {
    height: auto !important;
  }
  .whats_new {
    padding-top: 145px!important;
  }
  .latestnewsimg {
    height: auto !important;
  }
  .latestnewsimg img{
    height: auto !important;
  }
  .newssidebar {
    height: auto!important;
  }
  .img_gallery_mitradhar, .img-rightsidesec {
    height: auto;
    overflow: auto;
  }
  .newssidebar .flex-column {
    flex-direction: column !important;
    column-count: 2;
    display: block;
  }
  .newssidebar .nav-link.text-primary.fw-semibold{
    display: inline-block;
  }
  .newssidebar .flex-column {
    flex-direction: column !important;
    column-count: 2;display: block;
  }
  .contact-info-cards .icon {
    width:28px !important;height: 28px!important;
  }
  .contact-info-cards .icon i {
      color: #fff;font-size: 14px!important;
  }
  .contact .contact-wrapper {
    display: inline;
  }
  .info-box h4{font-size: 16px;}
  .info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%!important;
  }
  .textboxsec {
    width: 100%;
  }
  .info-box p {
    color: #701f41!important;
    font-size: 14px!important;
  }
  .info-grid {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    column-count: 2;
  }
  .aboutusbg.MP-dhar-bg h1{font-size: 30px;}
 .btn-primary, .btn-secondary {
    padding: 12px 12px;
    font-size: 16px;
 }
 .image-layout .image-box img {
    width: 100%;
    height: auto!important;
  }
  .image-layout .image-bottom .image-box {
    flex: 1;
    height: auto!important;
  }
  .projects.section .nav-item.flex-fill{margin-bottom:6px;}
  .image-box.bottomrightside{height: auto;}
 .image-layout .yellow-bottom {
    overflow: hidden;width: 135px!important;
    height: 100px !important;
    position: absolute;top: 285px;left: 14px;
  }
.page-title p{font-size:16px;}
.certifications{padding:45px 0;}
.image-layout .yellow-bottom-shape {
    height: 75px !important;
}
.fb-responsive {
  width: 100%;
  max-width: 100%;
}
.fb-responsive iframe {
  width: 100% !important;
  min-width: 100% !important;
  height: 500px;
  border: none;
}
.fb-responsive iframe ._2p3a{
 width:430px !important;
}
.whats_new.faqsec{padding-top: 60px !important;}



}

    .image-layout .yellow-bottom {
        overflow: hidden;
        width: 135px !important;
        height: 216px !important;
        position: absolute;
        top: 299px;
        left: 14px;
    }

@media (max-width:360px) {
  .image-layout .image-top {
    margin-bottom: 15px;
    height: 150px !important;
  }
  .image-layout .yellow-bottom {
    top: 222px;
  }

  
}



.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;
}
  .top_slider_whats_new{position: relative;}
  .whatsnew {
    background: #0000005a;
    padding: 8px 15px;
    border-radius: 15px;
    width: 440px;
    position: absolute;
    top:4.4%;
    right: 90px;
    z-index: 99;
  }
.swiper-slide.hero-bg-3aa{height:740px;}
.swiper-slide.hero-bg-3aa img{height:auto; object-fit: cover;width: 100%;margin-top: 8%;}
.card_box{text-align: left;}
.card_box .card{
  text-align:left;
  padding: 10px;
  height: 255px;
  margin-bottom: 25px;
}
.card_box .card-title{
  /* background: #691a4a; */
  color: #282828;
  width: fit-content;
  /* padding: 5px 10px; */
  border-radius: 5px;
}
.card_box .card .card-body{padding-top:55px;}
.card_box .imgicon {
   top: -23px;
    height: 41px;
    width: 66px;
    height: 66px;
    background: #7b1e2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -5px;
    bottom: 0px;
    border: 5px solid #fff;
}
.imgicon img{
      width: 35px;
    /* height: 71px;
    padding: 10px;
    background: #691b4b;
    border-radius: 50%;
    line-height: 40px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center; */
}

#onLoadModal .modal-header{background: linear-gradient(90deg, #611556 0%, #762337 100%);color: #fff;}
#onLoadModal .modal-header h5{color: #fff;}
#onLoadModal .modal-body{padding: 0px;}
.stateicon img{width:50%;}
.statetext h5{font-size: 14px;}
.stateicon{
  background: #ffffff;
  box-shadow: 0px 0px 4px 3px #ccc;
  padding: 5px;
  margin: 10px;
  margin-bottom: 25px;
  height: 120px;
}

/********new style whta ***********/

  .education-wrapper .customer-circle {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background: #681a4c;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 7.8px 0px #00000040;
    border: 7px solid #FFFFFF;
    position: relative;
    z-index: auto;
}
.customer-circle h2{color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    padding-top: 36px}

.education-wrapper .customer-circle::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 88%;
    background-image: url('../img/focus-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 298px;
    width: 380px;
    z-index: -9;
}
.quote-container {
    position: absolute;
    top: -10px;
    right: -7px;
    background: #f0d655;
    padding: 10px;
    border-radius: 40px;
    border: 4px solid #fff;
}
.quote-container img{
  width: 35px;
}

.customer-card:hover .customer-content h5, .customer-card:hover .customer-content p {
  color:#fff;
}
.imp_modelimg img{width:100%;    object-fit: cover;}
.education-wrapper h3 {
    font-weight: 400;
    font-size: 38px;
    color: #303030;
}
.explore-btn a {
    background: #204667;
    color: #FFFFFF;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 18px;
}
.customer-inner {
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.education-bottom-part p {
    font-weight: 300;
    font-size: 32px;
    color: #454545;
}
.education-bottom-part p {
    font-weight: 300;
    font-size: 32px;
    color: #454545;
}
#service-details.pm-mitrapark-detail{padding-top:80px !important;}
.img_gallery_mitradhar, .img-rightsidesec{
  height: 508px;
  overflow: auto;
}
.service-details .portfolio-showcase .project-showcase-item .project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}
.whats_new{padding-top: 188px;}
/***********new section wise*************** */
.education-wrapper{
background: url('../img/education-banner.jpg') no-repeat center/cover;
background-size: cover;

}
.education-wrapper h3{
font-weight: 400;
font-size: 38px;
color: #303030;
}


.education-wrapper .education-left-part{
z-index: 99;
}
.education-wrapper .customer-circle h6{
font-weight: 400;
font-size:28px;
color: #FFFFFF;
text-align: center;
}
.education-bottom-part p{
font-weight: 300;
font-size: 32px;
color: #454545;
}
.customer-slide {
display: flex !important;
}

.customer-card {
  position: relative;
  border-radius: 8px;
  padding: 20px 20px 10px;
  /* display: flex; */
  align-items: center;
  /* width: 550px; */
  /* margin: 6px 0 15px 54px; */
  height: 210px;
  margin-top: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #EBEBEB;
  background: #FFFFFF;
  border-bottom: 3px solid #681a4c;
  box-shadow: 0px 1px 7.8px 0px #00000040;
}
.customer-card:hover{
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  color:#fff;
}
.customer-inner {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.customer-content h5 {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #08325A;
}

.customer-content p {
  font-weight: 400;
  font-size: 16px;
  color: #575757DB;
  margin-bottom: 7px;
}

.customer-slider .slick-dots {
  position: absolute;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  width: 50px;
}

.customer-slider .slick-dots li button:before {
  font-size: 38px;
  color: #bbb;
  opacity: 1;
}

.customer-slider .slick-dots li.slick-active button:before {
  color: #681a4c;
}
.customer-slider-section,
.customer-slider { overflow: visible; }
.customer-slider .slick-slide { display:flex !important; align-items:center; }
.customer-slider .slick-center .customer-card {
transform: translateX(-52px); 
transition: transform 0.35s ease, box-shadow 0.35s ease;
background: #681a4c;
border-bottom: 0px;
box-shadow: 0px 4px 4px 0px #00000040;
}
.customer-slider .slick-center .customer-card h5{
color: #FFFFFF;
}
.customer-slider .slick-center .customer-card p{
color:#D0D0D0;
}

/* Default slide */
.events-wrapper .center-slider .slick-slide{
/* background-color: #b32532; */
color: #FFF;
height: 500px;
margin: 0 18px 0 0;
display: flex;
align-items: center;
justify-content: center;
/* transform: scale(0.9); */
transition: all 0.4s 
ease-in-out;
}
.events-wrapper .center-slider .slick-slide,
.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;
height: 500px;
}

/* Active center slide (You can change anything here for cenetr slide)*/
.events-wrapper .center-slider .slick-center,
.events-wrapper .center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
/* transform: scale(1.1); */
/* background-color: #000000; */
}
.events-wrapper .center-slider .slick-current.slick-active{
/* transform: scale(1.1); */
/* background-color: #000000; */
}

.events-wrapper .slick-next,  .events-wrapper .slick-prev{
z-index: 5;
}
.events-wrapper .slick-next{
right: 35px;
}
.events-wrapper .slick-prev{
left: 15px;
}
.events-wrapper .slick-next:before,  .events-wrapper .slick-prev:before{
  color: #000;
  font-size: 26px;
}

.Expertise-wrapper .swiper.mySwiper-1 {
overflow: visible;
position: relative;
}
.Expertise-wrapper .swiper-button-next {
left: auto;
right: -4% !important;
}
.Expertise-wrapper .swiper-button-prev {
right: auto;
left: -4% !important;
}

.Expertise-wrapper .swiper-wrapper{
overflow: hidden ;
position: relative;
}

.events-wrapper .slick-slide.slick-cloned.slick-active .event-card{
	position: relative;
}

.events-wrapper  .slick-slide.slick-cloned.slick-active .event-card::before{
	/*opacity: 0.6;*/
	background: linear-gradient(270deg, rgba(255, 255, 255, 0.60) -12.5%, #FFF 100%);
	content: '';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: 9;
	 border-radius: 18px;
}

.events-wrapper .slick-slide.slick-active .event-card{
	position: relative;
}

.events-wrapper .slick-slide.slick-active .event-card::before{
	/*opacity: 0.6;*/
	 background: linear-gradient(270deg, #fff -12.5%, rgba(255, 255, 255, 0.60) 100%);;
	content: '';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: 9;
	    border-radius: 18px;
}

.events-wrapper .slick-slide.slick-current.slick-active.slick-center .event-card{
	position: relative;
}

.events-wrapper .slick-slide.slick-current.slick-active.slick-center .event-card::before{
	background: none;
	content: '';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index: -9;
}


.slick-slide.slick-current.slick-active.slick-center{opacity: 1;}
.videos-event{width: 220px;}

video {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
border-radius: 8px;
}
.champ-card-middle h5{
color: #303030!important;
}
.champ-card-middle span {color: #575757!important;}

.champ-card-middle{
background: #fff !important;
}

.champion-card.champ-card-middle:hover {
background: #466E59 !important;
}
.champion-card.champ-card-middle:hover h5, .champion-card.champ-card-middle:hover span{
color: #fff !important;
}
.events-wrapper .slick-prev:before {
color: #00000000;
/* font-size: 40px; */
background-image: url('../img/arrow-lefts.png');
background-repeat: no-repeat;
width: 38px;
padding: 4px;
display: block;
}
.events-wrapper .slick-next:before {
color: #00000000;
/* font-size: 40px; */
background-image: url('../img/arrow-rights.png');
background-repeat: no-repeat;
width: 38px;
padding: 4px;
display: block;
}
.events-wrapper .slick-prev {
left: -15px;
}
.events-wrapper .slick-next {
right: 15px;
}
.marquee-swiper .swiper-wrapper {
transition-timing-function: linear !important; /* Makes autoplay linear */
}

.customer-slider {
  height: 520px;  
}

.customer-slider .slick-slide {
  height: 150px !important;
  /* opacity: 0.4; */
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
}

.customer-slider .slick-center {
  opacity: 1;
  /* transform: scale(1.05); */
}

.customer-slider .slick-center .card {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/*********image layout dhar three shape start ***********/
 .image-layout {
  position: relative;
  margin: auto;padding: 20px;
}

/* Common image box */

.image-layout .image-box img {
  width: 100%;
    height: 100%;
    display: block;
    border-radius: 2px;
    z-index: 9;
    pointer-events: revert;
    position: relative;
    object-fit: cover;
}

/* Top image */
.image-layout .image-top {
  margin-bottom: 15px;
  z-index: 9;
  position: relative;
  height: 212px;
}

/* Bottom images */
.image-layout .image-bottom {
  display: flex;
  gap: 15px;
}

.image-layout .image-bottom .image-box {
  flex: 1;
  height: 312px;
}
.image-box.bottomrightside{height:340px!important;position: relative;}

.image-layout .yellow-wrap {
    overflow: hidden;
    width: 254px;
    height: 180px;
    position: absolute;
    top: -30px;
    right: 14px;
    z-index: 0;
}

.image-layout .yellow-shape {
    width: 450px;
    height: 180px;
    background: #e6d25c;
    clip-path: polygon(0% 0%, 100% 45%, 100% 100%, 0% 66%);
}

.image-layout .yellow-bottom{
   overflow: hidden;
    width: 254px;
    height: 180px;
    position: absolute;
    bottom: -30px;
    left: 14px;
    z-index: 0;
}

.image-layout .yellow-bottom-shape {
    width: 450px;
    height: 174px;
    background: #e6d25c;
    clip-path: polygon(0% 0%, 100% 45%, 100% 105%, 0% 66%);
}

/*********image layout dhar three shape  end*********/

.inveserconn .icons_img img{
    margin: 10px;
    background: #6c757d26;
    padding: 5px;
    box-shadow: 0px 0px 2px 2px #bababa;
    width: 75%;
    float: left;
  }
  .inveserconn .card-text-sec{
    text-align: left;
    padding-left: 0px;
    height: 72px;
    padding: 0px;
    display: flex;
    align-items: center;
    padding-top: 6px;
  }
.iconsimg{
  width: 60px;
  height: 60px;
  background: #681a4c; 
  border-radius: 50%;
  padding: 10px;
  border: 2px solid #ffffff;
  margin: 5px;
}
.iconsimg img{
  width: 100%;
  height:100%;
}
.overviewimg{background: #ffffff;}
.iconsimg.rightsideimg{background: #65184b;} 
.schemeoverview{padding:15px;}
.pm-mitra-guidelines .nav.nav-pills .nav-link{
  background: #ccc;
    border-radius: 5px;
    color: #000;
}
.pm-mitra-guidelines .nav.nav-pills .nav-link.active{
 background: #681a4b;color:#fff;}
.pm-mitra-guidelines .nav.nav-pills{gap:12px;}

.viewall_events a{
  background: #650d57;
  color: #fff !important;
  padding: 5px 25px;
  border-radius: 10px;
}

.no-cursor {
    cursor: default;
}

/* Agar click bhi disable karna ho */
.no-cursor {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}


/*25-01-2026*/
.hero .hero-content h3 {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 141%;
}
.swiper.heroSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden .swiper-button-prev {

       border: 1px solid #FFFFFF;
    color: white;
    background: #FFFFFF7D !important;
    border-radius: 50%;
    width: 40px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    margin-top: 50px;
}
.swiper.heroSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden .swiper-button-prev:after{
  font-size: 20px;
}
.swiper.heroSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden .swiper-button-next {

       border: 1px solid #FFFFFF;
    color: white;
    background: #FFFFFF7D !important;
    border-radius: 50%;
    width: 40px;
    line-height: 40px;
    text-align: center;
    height: 40px;
    margin-top: 50px;
}
.swiper.heroSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden .swiper-button-next:after{
  font-size: 20px;
}
.quote-section {
  background: #f8f6ef;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.quote-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}


.quote-text p {
 margin-bottom: 0px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 23px;
    line-height: 38px;
    color: #232323;
}
.quote-icon {
  font-size: 48px;
  color: #8c1d40;
  font-weight: bold;
  position: absolute;
}
span.quote-icon.left img {
    margin-left: -24px;
    margin-top: -58px;
}
span.quote-icon.right{right: 0px !important;}
span.quote-icon.right img {
    margin-left: -24px;
    margin-top: -58px;
}
.quote-author {
    font-size: 15px;
    margin-top: 20px;
    color: #232323;
    font-weight: 700;
}

.quote-author strong {
  color: #96205E;

}
.quote-section{
  background-image: url('../img/quote-section.png');
      height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
}
.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding:3px 10px;
  border-radius: 4px;
  border: 2px solid #96205E;
  color: #96205E;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Glow effect */
.video-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  box-shadow: 0 0 15px #96205E;
  opacity: 0;
  transition: 0.3s;
}

/*.video-btn:hover::before {
  opacity: 1;
}

.video-btn:hover {
  background: rgba(255, 45, 143, 0.08);
}*/

/* Play icon circle */
.play-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:#96205E;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.8s infinite;
}

.play-icon i {
  color: #fff;
  font-size: 18px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 45, 143, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 45, 143, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 143, 0);
  }
}

.btn-text {
  position: relative;
  z-index: 1;
}

.info-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #F7CB2A 0%, #FFFFFF 100%);
  padding: 18px 30px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.info-left {
  max-width: 35%;
}

.info-left .small-text {
font-size: 12px;
    color: #393939;
    display: block;
    margin-bottom: 4px;
}

.info-left strong {
    font-size: 15px;
    color: #232323;
}

.divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.2);
}

.info-right {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 55%;
}

.info-right img {
  width: 48px;
  height: 48px;
}

.info-right p {
  margin: 0;
  font-size: 11px !important;
  color: #474747 !important;
  line-height: 1.5;
}
.info-strip {
  transition: all 0.3s ease;
}

.info-strip:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/*map*/
.maprightsidedata .heading{
       text-align: center;
    font-size: 21px;
    font-weight: 700;
    box-shadow: 0px 4px 4px 0px #00000014;
    background: #FFFFFF;
    border-radius: 8px;
    width: fit-content;
    padding: 6px 20px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.maprightsidedata .cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:17px;
}

.maprightsidedata .card{
    backdrop-filter:blur(10px);
    border-radius:8px;
    padding:25px;
    display:flex;
    gap:18px;
  box-shadow: 0px 4px 4px 0px #00000014;
    background: #FFFFFF61;
    border: none;
    transition:all 0.4s ease;
    cursor:pointer;
}

.maprightsidedata .card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,0.15);
}

.maprightsidedata .icon{
    width:60px;
    height:60px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    transition:all 0.4s ease;
}

.maprightsidedata .card:hover .icon{
    transform:translateX(8px) rotate(8deg) scale(1.1);
}
.maprightsidedata .card-content span.small-text{
   margin: 4px 0 0;
    color: #686868;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}
.maprightsidedata .card-content h3{
      margin: 0;
    color: #262424;
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    line-height: 141%;
    text-align: left;
}

.maprightsidedata .card-content p {
    margin: 4px 0 0;
    color: #686868;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

/* Color themes */
.maprightsidedata .pink{
     background: #F28291;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}
.maprightsidedata .orange{
  background: #F6921F;
  box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}
.maprightsidedata .green{
  background: #AFBF61;
  box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}
/*.maprightsidedata .blue{background:#42a5f5;}
.maprightsidedata .red{background:#ef5350;}
.maprightsidedata .purple{background:#ab47bc;}*/

.maprightsidedata .footer-cards{
    margin-top:17px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.maprightsidedata .price{
    flex:1;
    min-width:150px;
    color:#fff;
    padding:25px;
    border-radius:18px;
    font-size:22px;
    font-weight:700;
    text-align:center;
    transition:0.4s;
    font-family: Poppins;
font-weight: 600;
font-style: SemiBold;
font-size: 20px;
leading-trim: NONE;
line-height: 141%;
letter-spacing: 0%;

}

.maprightsidedata .price span{
    font-family: Poppins;
font-weight: 600;
font-style: SemiBold;
font-size: 18px;
leading-trim: NONE;
line-height: 141%;
letter-spacing: 0%;
text-align: center;

}

.maprightsidedata .price:hover{
    transform:translateY(-10px) scale(1.03);
}

/* Bottom button */
.maprightsidedata .read-more{
    margin-top:40px;
    text-align:center;
}

.maprightsidedata .read-more a{
    background:#9c1c4d;
    color:#fff;
    padding:14px 35px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.maprightsidedata .read-more a:hover{
    background:#7a143c;
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}
.read-more-btn a{
      background-color: #96205E;
    border-color: #96205E;
    box-shadow: 0px 4px 4px 0px #0000004D;
    color: var(--contrast-color);
    padding: 10px 26px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.read-more-btn {
    text-align: center;
    margin-top: 20px;
}
.value-chain-box {
     padding: 30px 40px;
    background: linear-gradient(89.43deg, #F6D453 -11.81%, #FFFFFF 104.28%);
    border-radius: 4px;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #373737;
    font-family: Poppins;
    font-weight: 500;
    font-size: 15px;
}

/* Arrow bullet */
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("../img/list-arrow.svg"); 
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

/* Hover effect */
.value-list li:hover {
  color: #7c2d12;
  transform: translateX(6px);
}

.value-list li:hover::before {
  color: #b91c1c;
  transform: scale(1.2);
}
/*infratabing*/
.infrastructure-section {
  background: linear-gradient(180deg, #ffffff, #ffffff);
}

/* LEFT TABS */
.infra-tabs {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #DADADA;
}

.infra-tabs .nav-link {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 12px;
  padding: 23px 20px;
    font-weight: 600;
  font-size: 18px;
  color: #202020;
  border-bottom: 1px solid #eee;
  border-radius: 8px;
}

.infra-tabs .nav-link img {
  width: 34px;
}

.infra-tabs .nav-link.active {
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  color: #fff;
}

/* RIGHT PANEL */
.infra-content {
      border-radius: 12px;
    background: linear-gradient(89.43deg, #FFFFFF -11.81%, rgba(255, 255, 255, 0) 104.28%);
    padding: 0px 0px 30px 0px;
}

.infra-header {
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0px;
    background: linear-gradient(89.43deg, #F6D453 -11.81%, rgba(255, 255, 255, 0) 104.28%);
    margin-bottom: 0px;
    text-align: center;
}

/* LIST */
.infra-list {
  list-style: none;
  padding: 0;
}

.infra-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.infra-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("../img/list-arrow.svg"); 
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

/*map end*/


.progress-wrapper {
  max-width: 1100px;
}

.progress-row {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 2fr;
  align-items: center;
  background: linear-gradient(89.56deg, #FFFFFF 16.18%, #FFE891 99.45%);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;

  transition: all 0.35s ease;
}

/* HOVER */
.progress-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* LEFT TAG */
.progress-left {
  position: relative;
  background-image: url('../img/bg-left-left.png');
      background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  color: #fff;
  padding:22px 11px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

/*.progress-left img {
  width: 34px;
}*/

/* Arrow Shape */
/*.progress-left::after {
     content: "";
    position: absolute;
    right: -29px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 38px solid transparent;
    border-left: 29px solid #96205E;
    z-index: 9;
}*/

/* MIDDLE */
.progress-mid {
  padding: 0 24px;
  font-weight: 600;
  color: #222;
  border-right: 1px solid rgba(0,0,0,0.1);
}

/* RIGHT */
.progress-right {
  padding: 16px 24px;
  font-weight: 600;
  color: #3a2a00;
  background: rgba(255,255,255,0.35);
  border-radius: 6px;
  margin: 10px;
  transition: all 0.3s ease;
}

.progress-row:hover .progress-right {
  background: #fff;
}

/* SUCCESS TAG */
.progress-right.success {
  background: #eaffc7;
  color: #2e7d32;
  font-weight: 700;
}

.custom-scroll {
  max-height: 70vh;
  min-height: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 35px;
  background: white;
  padding-right: 10px;
  box-shadow: none;
}
.custom-scroll::-webkit-scrollbar {
  background-color:#EFE9D0;
  width: 7px;
  border-radius: 50px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #8D1F59 !important;
  width: 7px;
  border-radius: 50px;
}
.vision-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 34px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  height: 400px;
  border-radius: 8px 8px 0px 0px;
  transition: transform 0.2s ease-out;
}
.vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    background: linear-gradient(154.34deg, #96205E 1.72%, #6A1B48 108.69%);
    border: none;
}
.vision-card:hover h4{color: white!important;}
.vision-card:hover  p{color: white!important;}
.vision-card:hover {
  transform: scale(1.1);
    transition: transform .2s;
    border-bottom: 5px solid #6b1c48;
}

/* Bottom Accent */
.vision-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #6a1236, #8c1d4f);
  border-radius: 0 0 16px 16px;
}

/* Hover */
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Icon */
.vision-icon img {
  width: 64px;
  margin-bottom: 18px;
}

/* Heading */
.vision-card h4 {
  color: #0b3c6d;
 font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 26px;
}

/* Text */
.vision-card p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 13px;
}
.Stakeholder{
  background-image: url(../img/Stakeholder.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.Stakeholder .hertw, .hdfyt{
  color: white !important;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  /*background: #fff;*/
  padding: 18px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
}

.logo-item img {
  height: 100%;
  width: auto;
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* KEYFRAMES */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.blue {
    background: #8DAEF3 url("../img/blue.png") no-repeat center / cover;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.peach {
  background: #F9E3D8 url("../img/peach.png") no-repeat center / cover;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.orange { 
  background: #FFAD41 url("../img/orange.png") no-repeat center / cover;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.coral {
  background: #FEB1A1 url("../img/coral.png") no-repeat center / cover;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.navy {
  background: #2b4fa7b3  url("../img/navy.png") no-repeat center / cover;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.red { 
  background: #FF5E32 url("../img/red.png") no-repeat center / cover;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.purple { 
  background:#CA98D7 url("../img/purple.png") no-repeat center / cover;
  background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.state-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
}

.state-btn {
  min-width: 220px;
  padding: 18px 24px;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  color: #333333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.35s ease;
}

/* Hover Lift */
.state-btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* WAVE EFFECT */
.state-btn::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  top: -60%;
  left: -60%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  animation: wave 6s linear infinite;
  opacity: 0.6;
}

/* Wave motion */
@keyframes wave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.call-to-action {
    position: relative;
    /*background: #FDF9E9;*/
    background-image: url(../img/bg-7parks.svg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.queries{
  position: relative;
    background-image: url(../img/queries.svg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.govt-badge.mb-4.aos-init.aos-animate {
    background: linear-gradient(299.6deg, #F6D453 10.52%, #FFFFFF 122.26%);
    color: #3D3D3D;
    font-size: 24px;
    font-weight: 600;
    padding: 13px;
}
.icon-circle {
    background: #96205E;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    line-height: 43px;
    text-align: center;
    color: white;
}
.form-card.aos-init.aos-animate {
    padding: 30px;
    background: linear-gradient(302.41deg, #F6D453 3.48%, #FFFFFF 161.67%);
}
.footer-pare{
  color: #676767;
  font-size: 12px;

}
.adgsard{
      color: #3D3D3D;
    font-size: 24px;
    font-weight: 600;
    padding: 13px;
}
.gtdratrw{
  border: 1px solid #BFAC4E;
    font-size: 10px;
    padding: 13px;
    margin-top: 8px;
    margin-bottom: 10px;

}
.queries label{
  color: #611556;
    font-size: 12px;
}
  .blink-text{
  font-size:18px;
  font-weight:600;
  color:#F7CB2A;              /* Elegant maroon */
  letter-spacing:.5px;
  animation:blinkText 1.5s infinite;
}

/* Blink animation */
@keyframes blinkText{
  0%,100%{
    opacity:2;
  }
  50%{
    opacity:.6;
  }
}

section#projects video{
    border: none !important;
}

/*********new style**********/


.certifications .pm-mitra-col {
  padding: 25px 20px;
  position: relative;
}

/* Vertical divider lines (desktop only) */
@media (min-width: 768px) {
  .certifications .pm-mitra-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #c1c1c1;
  }
}

.certifications .pm-mitra-col img {
  max-height: 55px;
}



.certifications .subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
}

/* Tabs Slider */
.certifications .tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.certifications .slider-tabs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  flex: 1;
}

.certifications .slider-tabs::-webkit-scrollbar {
  display: none;
}

.certifications .tab {
  flex: 0 0 auto;
  padding: 15px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: #e0e0e0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.certifications .tab:hover {
  transform: translateY(-3px);
}

.certifications .tab.active {
  background: #98255F;
  color: #fff;
  box-shadow: 0 10px 25px rgba(152,37,95,0.35);
}

/* Arrow Buttons */
.certifications .nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #98255F;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certifications .nav-btn:hover {
  background: #7b1f4e;
}

/* Tab Content */
/* .certifications .tab-content {
  margin-top: 35px;
} */

.certifications .content-box {
  display: none;
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  animation: fadeUp 0.5s ease;
}

.certifications .content-box.active {
  display: block;
}

.certifications .content-box h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #98255F;
}

.certifications .content-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .certifications .pm-mitra-section h2 {
    font-size: 26px;
  }
  .certifications .nav-btn {
    display: none;
  }
  .certifications .content-box {
    padding: 25px;
  }
}


.certifications .pm-mitra-section .pm-mitra-row{
  background: #f3efd38a;
  margin-top: 15px;
}
 .certifications .swiper.frameworkSwiper {
    margin-left: auto;
    margin-right: auto;
    position: initial;
    margin-top: 25px;
 }  
  .frameworkSwiper .swiper-button-next {
    right: 2%;
    left: auto;
}      

 .frameworkSwiper .swiper-button-prev {
    right: auto;
    left: 2%;
    top: 52%;
}  
 .frameworkSwiper .swiper-button-next {
      top: 46%;
   }

.frameworkSwiper .swiper-button-next:after {
    font-size: 15px;
    color: #fff;
    background: #6c1b49;
    padding: 9px 8px;
    border-radius: 50%;
    height: 28px;
    width: 44px;
    line-height: 12px;
    text-align: center;
    display: block;
}
.frameworkSwiper .swiper-button-prev:after {
    font-size: 14px;
    color: #fff;
    background: #6c1b49;
    padding: 9px 7px;
    border-radius: 50%;
    height: 28px;
    width: 26px;
    line-height: 11px;
    text-align: center;
    display: block;
}

  .frameworkSwiper .top-card {
    padding: 22px 34px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    height: 113px;
    display: flex;
    /* align-items: center; */
    justify-content: start;

   }
   .tabssecicon img{width: 20%;}
   .frameworkSwiper .top-card p{font-size:12px;color:#000;}

   /* Background Colors */
   /* .bg1 { background: #78A0F3; }
   .bg2 { background: #98255F; }
   .bg3 { background: #F6921F; }
   .bg4 { background: #AFBF61; }
   .bg5 { background: #717CBC; } */
   .bg1 { background: #fff; }
   .bg2 { background: #fff; }
   .bg3 { background: #fff; }
   .bg4 { background: #fff; }
   .bg5 { background: #fff; }

.frameworkSwiper .top-card{
  transition: all 0.4s ease;
  overflow: hidden;
  transition: transform 0.2s ease-out;
}
.frameworkSwiper .top-card:hover {
    /* transform: translateY(-12px); */
  transform: scale(1);
    /* transition: transform .2s; */
    transition: transform 0.3s ease;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-top: 5px solid #590c37;
    background: #8b1f59;
}
.frameworkSwiper .top-card:hover p{color:#fff;}
/* ACTIVE TAB STYLE */
.swiper-slide.active-tab .top-card {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #590c37;
    background: #8b1f59;
}
.swiper-slide.active-tab .top-card p{color:#fff;}

.certifications .tab-content-area {
  background: linear-gradient(90deg, #f6d365d4 0%, #fceabba8 100%);
   padding: 30px;
   border-radius: 0px 0px 8px 8px;
   margin-top: 0px;
   position: relative;
  }
.certifications .impact-illustration{
  position: absolute;
  right: 0;
  bottom: 0;
}
   .certifications .tab-pane {
   display: none;
   }

  .certifications .tab-pane.active {
   display: block;
   }

.certifications .tabcontentbox .info-card {
  border-radius: 8px;
  height: 100%;
}

.certifications .tabcontentbox .section-title {
  font-weight: 700;
  margin-bottom: 0px;
  color: #222;
   padding-bottom: 12px;
   border-bottom: 1px solid #6155558f;
}

.certifications .tabcontentbox .arrow-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  padding-top:20px;
}

.certifications .tabcontentbox .arrow-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.certifications .tabcontentbox .arrow-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 2px;
  color: #7a2d00;
  font-size: 16px;
}
.certifications .bordercolum::after {
   content: "";
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    width: 1px;
    background: #6155558f;
}

.instagramsection::-webkit-scrollbar {
  width: 10px;
  border-radius:10px;
}
.instagramsection::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius:10px;
}
.instagramsection::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius:10px;
}
.instagramsection::-webkit-scrollbar-thumb:hover {
  background: #555; 
  border-radius:10px;
}
#debug-icon{display: none;}
