
@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: #F0D655;
  }

  .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:60px;
    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:20px;
  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: 16px;
    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: 0px 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;
  }
 
  .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: 33%;
  left: 6.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/background.jpeg); */
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 30px;
}

.indiaglobagtexttile {
    /* background-image: url(../img/background.jpeg);  */
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 0px;
}
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/background.jpeg);  */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    /* background-color: transparent; */
}
section.certifications{
       /* background-image: url(../img/background.jpeg); */
    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;
    flex-shrink: 0;
}

/* rest same */
/* Tabs Styles */
.news-tabs {
    display: flex;
    gap: 40px;
    border-bottom: none;
    justify-content: space-between;
}

.news-tabs .nav-link {
    background: transparent;
    border: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 8px 18px;
    border-radius: 4px;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: default;
}

.news-tabs .nav-link.active {
    background: #96205E;
    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-text h4 {
    margin-bottom: 5px;
    margin-top: 11px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 141%;
    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;
}

.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;
padding-bottom: 15px !important;
}


.footer-logo {
  width: 100px;
}

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

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
}
.footborderleft{
  border-right: 1px solid #ffffff61;
  height: 100%;
  margin: 0 20px;
}
.footer-title {
  font-size:20px;
  margin-bottom: 15px;
  color: white;
  /* border-bottom: 2px solid #ffffffd9; */
    border-bottom: 2px solid;
       border-image: linear-gradient(to right, #ead08dab, #c85b98) 1;
    width: fit-content;
}

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

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

.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: 14px;
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: contain !important;
    width: 100%;
    height: 100%;
    object-position: top;
}
.news-date{
  display: flex;
    justify-content: space-between;
}
.news-date p{
 float: left;
}
.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;
}

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;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: #F8D0D6;

 /* background: linear-gradient(to right,  #6b2358, #882e58); */
      min-width: 300px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 5px;
    padding: 1px 20px 0px 22px;
    box-sizing: border-box; 
    height: 107.5px;
    position: relative;
    margin-top: -43px;
    z-index: 9;
    color:#252424;
    }
.marquee-inner .bi-dot::before {
    content: "\f309";
    font-size: 30px;
    color: #7b1c50;
    width: 21px;
    position: relative;
    top: 5px;
}


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

    }
    .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;
      cursor: pointer;
    }
    .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 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:%;}
.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: 30px;
    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: 26px;
    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;
    margin-bottom: 20px;
   /* float: right;
    margin-right: 32px;
    margin-top: 40px;*/
}
.col-lg-7.p-5.mbileviewsec{padding-top:0px !important;}

.quote-author strong {
  color: #96205E;
  font-size:19px;

}
.allsepratebg{
  background-image: url('../img/background.jpeg');
  height: 100%;
      background-attachment: fixed;
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
}



.quote-section{
   /* background-image: url('../img/background.jpeg'); 
      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:16px;
    display:flex;
    gap:18px;
    box-shadow: 0px 4px 4px 0px #00000014;
    background: #ffffff99;
    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: #861e56;
    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-color: #f8d0d65c;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}
.maprightsidedata .orange{
  background-color: #f8d0d65c;
  box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}
.maprightsidedata .green{
  background-color: #f8d0d65c;
  box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 8px;
}
.map-project-cost, .map-power-cost, .map-water-cost{
    font-weight: 700 !important;
    font-size: 30px!important;
    color:#861e56!important;
}
.maprightsidedata .price span{
  color:#2e2a2c;
}
/*.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: #131313;
    padding: 10px;
    border-radius: 7px;
    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: 125%;
    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;
}
.infra-list.value-list{
background: linear-gradient(89.43deg, #FFFFFF -11.81%, rgba(255, 255, 255, 0) 104.28%);
height:270px;
    overflow: auto;
}
.autoscrolling{
      height: 445px;
    overflow: auto;
}

.infra-list.value-list::-webkit-scrollbar, .autoscrolling::-webkit-scrollbar {
  width: 8px;
}

.infra-list.value-list::-webkit-scrollbar-track, .autoscrolling::-webkit-scrollbar-track {
  background: #e6c6c6;
  border-radius: 8px; 
}
 
.infra-list.value-list::-webkit-scrollbar-thumb, .autoscrolling::-webkit-scrollbar-thumb {
  background: #851e55; 
    border-radius: 8px; 
}

.infra-list.value-list::-webkit-scrollbar-thumb:hover, .autoscrolling::-webkit-scrollbar-thumb:hover {
  background: #851e55; 
    border-radius: 8px; 
}

.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: 18px;
    text-align: left;
}

/* 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;
}
.infra-tabs .nav-link:hover{
    background: linear-gradient(90deg, #611556 0%, #762337 100%);
    color: #fff;
}
.infra-tabs .nav-link:hover img{
  /*transform: rotate(360deg);*/
  transition: transform 0.6s ease-in-out;
}


/* 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:15px 14px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0px;
        background-color:#F8D0D670;
    /* background: linear-gradient(89.43deg, #F6D453 -11.81%, rgba(255, 255, 255, 0) 104.28%); */
    margin-bottom: 0px;
    text-align: center;
}

.abt-wrapper p {
    font-size: 14px;
    color: #171717;
}
/* LIST */
.facilities_section .tab-content ul {
  list-style: none;
  padding: 0;
}

.facilities_section .tab-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
}
.facilities_section .tab-content ul li p{
     margin-bottom: 0px !important;
}

.facilities_section .tab-content ul 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;
}
.facilities_section .tab-content{
  height: 400px;
  overflow: auto;
  overflow-x: hidden;
}

.facilities_section .tab-content::-webkit-scrollbar {
  width: 10px;
  border-radius: 8px;
}

/* Track */
.facilities_section .tab-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

/* Handle */
.facilities_section .tab-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}

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

/*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/background.jpeg) !important; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.queries{
  position: relative;
    /* background-image: url(../img/background.jpeg) !important; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.govt-badge.mb-4.aos-init.aos-animate {
    background: linear-gradient(299.6deg, #fce6ef87 10.52%, #fce6ef87 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, #f991c92b 3.48%, #ffffff70 161.67%);
}
.footer-pare{
  color: #676767;
  font-size: 12px;

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

}
.queries label{
  color: #611556;
    font-size: 14px;
}
.swal2-styled.swal2-confirm {
  background-color: #96205E !important;
}
.blink-text{
  font-size:16px;
  font-weight:600;
  color:#F7CB2A;              /* Elegant maroon */
  letter-spacing:.5px;
  animation:blinkText 1.5s infinite;
}
.btn.btn-primary:hover{
  background: #6e1539;
    color: #f0d655;
}

/* 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;}
.subsidy-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  /* gap: 10px; */
  padding-bottom: 5px;
}
.nav.flex-column.nav-pills.vertical-tabs{
    flex-direction: column !important;
    height: 380px;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: nowrap;
    /* display: flex; */
    flex-wrap: nowrap;
}

/*********State Details page**********/
        .park_details_page .certifications {
            padding: 70px 0;
            /* background: #FDF9E9; */
            }
        
          .park_details_page .parkdetailsbg {
              position: relative;
              height: 620px;
              padding-top: 88px;
              overflow: hidden;
          }

          .park_details_page .bg-img {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              object-fit: cover;
              object-position: bottom;
              z-index: -1;
            }

          .park_details_page section.getintouch {
              background-image: url("/frontend/assets/img/bg-about.png");
              background-repeat: no-repeat;
              background-size: cover;
              background-position: bottom;
              background-color: transparent;
          }
         .park_details_page .page-title h1{text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);box-shadow: 0px 0px 0px 0px #00000000;}
          .park_details_page.form-floating>label {
            position: initial;
          }

          /* ================= TOP CARD FLEX ================= */
.park_details_page .feature-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    position: relative;
    top: -85px;
    left: 0;
    right: 0;
    margin: auto;
    height:0px;
    z-index: 9;
}

.park_details_page .feature-card-wrapper .feature-card {
    background: #fff8e6;
    border-radius: 14px;
    padding: 22px 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #eee;
    flex: 0 0 calc(10.66% - 16px); /* Desktop: 6 per row */
    max-width: calc(19.66% - 16px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.park_details_page .feature-card-wrapper .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.park_details_page .feature-card-wrapper .feature-card i {
    font-size: 32px;
    color: #7b1b4a;
    margin-bottom: 10px;
}

.park_details_page .feature-card-wrapper .feature-card h6 {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}


.park_details_page #facilities .infra-list li::before{
    content: "";
    position: absolute;
    left: 10px;
    top: 24px;
    width: 8px;
    height: 8px;
    background: #841e55;
    border-radius: 50%;
    border: 50%;
    /* background-image: url(../img/list-arrow.svg); */
    /* background-size: contain; */
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.park_details_page #facilities .infra-list li:hover::before{
  background: #971d5f;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .park_details_page .feature-card-wrapper .feature-card {
        flex: 0 0 calc(25% - 16px); /* 4 per row */
        max-width: calc(25% - 16px);
    }
}

@media (max-width: 576px) {
   .park_details_page .feature-card-wrapper .feature-card {
        flex: 0 0 calc(50% - 16px); /* 2 per row */
        max-width: calc(50% - 16px);
    }
}

/* ================= CONTENT SECTIONS ================= */
.park_details_page .section-box {
    padding: 40px;
    border-radius: 16px;
    background: #ffffff;
    margin-bottom: 40px;
    border-left: 6px solid #7b1b4a;
}

.park_details_page .section-box h4 {
    color: #7b1b4a;
    margin-bottom: 15px;
    font-weight: 700;
}

.park_details_page .about-title{
    text-align:center;
    font-weight:700;
    margin-bottom:35px;
}

/* ===== INFO CARD ===== */
.park_details_page .info-card{
    border:1px solid #e2cfe9;
    border-radius:10px;
    overflow:hidden;
    height:100%;
}

/* Header strip */
.park_details_page .info-card-header{
    /* background: linear-gradient(89.43deg, #F6D453 -11.81%, rgba(255, 255, 255, 0) 104.28%); */
    background-color: #f5d1dd6e;
    padding:10px 14px;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    color:#6c1d45;
    font-size:22px;
    justify-content:center;
}
.park_details_page .info-card:hover .info-card-header{
    background: linear-gradient(90deg, #95205e 0%, #6a1b48 100%);
    color: #ffffff;
}
.park_details_page .info-card:hover .info-card-header img{
  /* filter: brightness(0) invert(1) opacity(0.9); */
}
.park_details_page .info-card:hover .card_bdr {
    border-left: 3px solid #6d1d43;
    height: 100%;
    background: #ffffff7d;
}
.park_details_page .features-card:hover .card_bdr{
    border-left: 3px solid #6d1d43;
    height: 100%;
      background: #ffffff96;
}
.park_details_page .features-card:hover .info-card-header{
    background: linear-gradient(90deg, #611556 0%, #762337 100%);
    color: #ffffff;
}
.park_details_page .features-card:hover .info-card-header img{
   filter: brightness(0) invert(1) opacity(0.9);
}

/* Body */
.park_details_page .info-card-body{
    padding:14px 18px;
    font-size:16px;
    color:#333;
}

.park_details_page .info-card-body ul{
    padding-left:18px;
    margin:0;
}
.park_details_page .info-card-body li{
    margin-bottom:6px;
}

/* ===== FEATURES CARD ===== */
.park_details_page .features-card{
    /*background:#f2e9f7;*/
    border:1px solid #e2cfe9;
    border-radius:10px;
    overflow:hidden;
    margin-top:16px;
}

.park_details_page .features-body{
    padding:14px 18px;
}

.park_details_page .features-list{
    display:flex;
    flex-wrap:wrap;
}
.park_details_page .features-list span{
    width:33.33%;
    font-size:16px;
    margin-bottom:6px;
    text-indent: -12px;
    padding-left: 8px;
}

/* ===== MEDIA CARD ===== */
.park_details_page .media-card{
    background:#fff;
    border-radius:12px;
    padding:8px;
    border:1px solid #ddd;
    position:relative;
}
.park_details_page .info-card,
.park_details_page.features-card {
    transition: all 0.35s ease;
    position: relative;
}

.park_details_page .info-card:hover,
.park_details_page .features-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(107, 44, 111, 0.18);
    border-color: #c9a8d6;
}
.park_details_page .media-card img{
    width:100%;
    border-radius:10px;
}

/* Play button */
.park_details_page .play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:58px;
    height:58px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.park_details_page .play-btn i{
    font-size:26px;
    color:#6b2c6f;
}
.park_details_page .feature_img_icon{margin-bottom:10px;}
.park_details_page .feature_img_icon img{width:38%;}
.park_details_page .card_bdr{border-left: 3px solid #6d1d43;height:100%;background:#ffffff91;}         

.park_details_page .connectivity-grid {
    text-align: center;
    background: #ffffff8c;
    padding: 20px 85px 5px 85px;
    border-radius:10px;
}
.park_details_page .connectivity-grid .row{justify-content: center;}
.park_details_page .connectivity-section .connect-card {
    background: #ffffff00;
    /* padding: 40px 20px 25px; */
    border-radius: 14px;
    box-shadow: 0 75px 25px rgb(0 0 0 / 3%);
    position: relative;
    display: inline-block;
    justify-content: center;
    text-align: center;
    margin-bottom: 35px;
    transition: transform 0.2s ease-out;
    height: 220px;
    overflow: auto;
}
.park_details_page .bdrline {
  position: relative; 
}

.park_details_page .bdrline::before {
      content: "";
    position: absolute;
    left: -12px;
    top: 20px;
    width: 1px;
    height: 160px;
    background-color: #837d7d;
}
.park_details_page .connectivity-section .icon-wrap {
  width: 150px;
  height: 95px;
  /* background: #f2d85c; */
  border-radius: 140px 140px 0 0;
  margin: 0 auto 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.connectivitybg1{background:#FCEAEC;}
.connectivitybg2{background:#FCEAEC;}
.connectivitybg3{background:#FCEAEC;}
.connectivitybg4{background:#FCEAEC;}
.connectivitybg5{background:#FCEAEC;}
.mitra-glimpse .image-card:hover img {
    transform: scale(1.08);
}
.toppmimg img {
    transition: transform 0.4s ease;
    overflow: hidden;
    transform: scaleX(-1);
}
/*.toppmimg:hover img{transform: scale(1.04) !important; transition: transform 0.3s ease !important;}*/
.park_details_page .connectivity-section .icon-wrap img {
  width: 64px;
  height: auto;
  margin-bottom: 10px;
}

.park_details_page .connectivity-section .connect-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #6b1b6b;
  margin-bottom: 6px;
}

.park_details_page .connectivity-section .connect-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}





/********progress section****** */

 .park_details_page .park-about-wrapper{
    /* background-image: url("/frontend/assets/img/park_detail/About_pm_mitra_virudhunagar_bg.jpeg"); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-color: transparent;
    height: auto;
    position: relative;
    /* padding-top:88px; */
}

.park_details_page .connectivity_section{
  /* background-image: url("/frontend/assets/img/park_detail/Connectivity_bg.jpeg"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
  height: auto;
  position: relative;
  /* padding-top:88px; */
}

/* .progress_section{
  background-image: url("/frontend/assets/img/park_detail/Infrastructure_Status_Overview_bg.jpg");
   background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
  height: auto;
  position: relative;
} */

.park_details_page .edge_section{
  /* background-image: url("/frontend/assets/img/park_detail/the_pm_mitra_virudhunagar_edge_bg.jpeg"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
  height: auto;
  position: relative;
  /* padding-top:88px; */
}



 .park_details_page .progress_section {
      /* background-image: url("/frontend/assets/img/park_detail/Infrastructure_Status_Overview_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
  }

   .park_details_page .facilities_section {
      /* background-image: url("/frontend/assets/img/park_detail/Facilities_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
  }
  .park_details_page .policy_section {
      /* background-image: url("/frontend/assets/img/park_detail/Conducive_policy.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
  }
  .park_details_page .layout_section {
      /* background-image: url("/frontend/assets/img/park_detail/layout_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
  }
  .park_details_page .downloads_section {
      /* background-image: url("/frontend/assets/img/park_detail/Downloads_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
  }
   .park_details_page .meetus_section {
      /* background-image: url("/frontend/assets/img/park_detail/Meet_us_at_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
  }

.park_details_page .connectus_section {
      /* background-image: url("/frontend/assets/img/park_detail/connect_with_us.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      padding:0px;
      margin:0px;
  }

.park_details_page .progress_section .status-card {
     background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-out;
  
}

.park_details_page .progress_section .status-card .card-img {
  position: relative;
}

.park_details_page .progress_section .status-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: brightness(0.8);
  border-radius: 8px;
}

.park_details_page .progress_section .status-card:hover{
    /* background: #681a4b;
    color: #fff; */
    transform: scale(1.02);
    transition: transform .2s;
}
.state_namewise p{font-size: 13px;}

.park_details_page .progress_section .status-card h5 {
  position: relative;
  bottom: 0;
  margin: 0;
  padding-left: 20px;
  width: 100%;
  font-size: 15px;
  color: black;
  text-align: left;
}

.park_details_page .progress_section .status-card .card-body {
  /* padding: 12px 0px 0px 0px; */
    position: relative;
    
}

.park_details_page .progress_section .status-card p {
    font-size: 16px;
    height: 117px;
    overflow: auto;
    padding-left: 20px !important;
    padding-bottom: 35px;
    text-align: left;
}

.park_details_page .progress_section .status-card .badge {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    position: absolute;
    bottom: 0px;
    border-radius: 0px;
    word-wrap: break-word;
    white-space: inherit;
}
.park_details_page .bg-success{
  background: #95D769 !important;
  color: #000;
}
.park_details_page .bg-warning{
  background: #FCECCB !important;
  color: #000;
}
.park_details_page .bg-secondary{
  background: #E5E5E5 !important;
  color: #000;
}


.park_details_page .status-card .card-img h5{
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 18px;
    padding: 0px 5px;
}

/**********Virudhunagar ************ */


/* Left feature cards */
.park_details_page .edge_section .feature-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.2s ease-out;
  height: 180px !important;
  overflow: auto;
}

.park_details_page .edge_section .feature-box .feature_icon {
  width: 40px;
  height: 40px;
  background: #f1f4ff;
  color: #2f4ec6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 18px;
}
.park_details_page .edge_section .feature-box .feature_icon img{border-radius:10px;}

.park_details_page .edge_section .feature-box h5 {
  font-weight: 600;
  color: #4a126b;
  font-size:18px;
}
.park_details_page .facilities_section .vertical-tabs .nav-link:hover{
    background: linear-gradient(135deg, #6a1b4d, #8e245f);
    color: #fff;
}
.park_details_page .connectivity-section .connect-card:hover{
    background: #ffffff00;
    /* padding: 40px 20px 25px; */
    border-radius: 14px;
    box-shadow: 0 75px 25px rgb(0 0 0 / 3%);
    position: relative;
    display: inline-block;
    justify-content: center;
    text-align: center;
    margin-bottom: 35px;
    transform: scale(1.1);
    /* transition: transform .2s; */
    transition: transform 0.3s ease;
    height: 220px;
    overflow: auto;
}
.park_details_page .connectivity-grid:hover {
    text-align: center;
    background: #ffffff9e;
}
.park_details_page .connectivity-section .connect-card:hover .icon-wrap {
    width: 150px;
    height: 95px;
    background: #8b1e58;
}
.park_details_page .connectivity-section .connect-card:hover h3 {
    color: #102a49;
}
.park_details_page .facilities_section .infra-list li:hover {
    /* background: #fff7cc; */
    padding: 14px 28px;
    margin-bottom: 12px;
    /* border-left: 6px solid #fff7cc; */
    border-radius: 6px;
    background: linear-gradient(135deg, #ffffff, #ffffff66);
    font-weight: 500;
     color: #7c1d51;
}
/* Right info card */
.park_details_page.edge_section .info-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-out;
}

.park_details_page .edge_section .icon-lg {
  width: 50px;
  height: 50px;
  background: #eef4ff;
  color: #2f4ec6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.park_details_page .edge_section .info-box h4 {
  color: #4a126b;
  font-weight: 600;
  font-size:18px;
}

.park_details_page .edge_section .info-list {
  padding-left: 20px;
}

.park_details_page .edge_section .info-list li {
  margin-bottom: 15px;
  color: #333;
}
.park_details_page .img-map-sec img{width:100%;}
/*********facialities******* */

.park_details_page .facilities_section .vertical-tabs .nav-link {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 0px;
    color: #333;
    text-align: left;
    font-weight: 600;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
}

.park_details_page .facilities_section .vertical-tabs .nav-link.active {
  background: linear-gradient(135deg, #6a1b4d, #8e245f);
  color: #fff;
}

.park_details_page .facilities_section .infra-list {
  list-style: none;
  padding: 0;
}

.park_details_page .facilities_section .infra-list li {
  /* background: #fff7cc; */
  background: linear-gradient(135deg, #ffffff, #f9f9f978);
  padding: 14px 28px;
  margin-bottom: 12px;
  border-left: 6px solid #6a1b4d;
  border-radius: 6px;
  font-weight: 500;
}
.park_details_page .facilities_icon img{width:80%;}
.park_details_page .facilities_icon {margin-right:5px;}

/************policy sec*************** */

.park_details_page .policy_section .subsidy-tabs .nav-link {
    background: #f5f5f5;
    color: #403e3e;
    font-weight: 600;
    margin-right: 0px;
    border-radius: 5px 5px 0px 0px;
    border: 1px solid #949191;
}

.park_details_page .policy_section .subsidy-tabs .nav-link.active, .park_details_page .policy_section .subsidy-tabs .nav-link:hover {
    background: #6a1b4d;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
}

.park_details_page .policy_section.subsidy-content {
  border: 3px solid #1e73be;
  padding: 25px;
  border-radius: 6px;
  background: rgba(255,255,255,0.85);
}


.park_details_page .policy_section .subsidy-list li {
  padding-left: 22px;
  /* margin-bottom: 12px; */
  position: relative;
  border-bottom: 1px solid #8180804d;
  padding: 10px 0px;

}
.park_details_page .downloads_section .icon-box{height:60px;}
.park_details_page .icon-box.downloadicon img{height:35px;}
.park_details_page .icon-box.downloadicon h6{font-size: 14px;}

.park_details_page .policy_section .subsidy-content{
        background-image: linear-gradient(to right, #ffffff, #ffffff6b);
    padding: 20px 10px;
    border-left: 4px solid #6a1b4d;
}
.park_details_page .policy_section .subsidy-content:hover{
        background-image: linear-gradient(to right, #ffffff, #ffffff6b);
    padding: 20px 10px;
    border-left: 4px solid #6a1b4d;
}
/*********************/

.park_details_page .downloads_section .policy-card {
    position: relative;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.park_details_page .downloads_section .policy-card:hover{
    transition: all 0.5s;
    transform: scale(1.1);
    /* transition: transform .2s; */
    transition: 0.5s;
}

.park_details_page .downloads_section .card-img {
    text-align: center;
    margin-bottom: 10px;
}

.park_details_page .downloads_section .card-img img {
    padding: 10px;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 1px solid #00000021;
    border-radius: 4px;
}

.park_details_page .downloads_section .card-title {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}

.park_details_page .downloads_section .download-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    padding: 5px 10px;
    background: #96205e;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.park_details_page .downloads_section .icon-box {
  font-size: 34px;
  color: #1e73be;
  margin-bottom: 10px;
  display:flex;
}

.park_details_page .downloads_section .policy-card h6 {
     font-weight: 600;
    margin-left: 10px;
    padding-top:10px;
    text-align: left;

}

.park_details_page .downloads_section .policy-link {
  font-size: 11px;
  word-break: break-word;
  color: #1e73be;
  text-decoration: none;
}

.park_details_page .downloads_section .policy-link:hover {
  text-decoration: underline;
}

.park_details_page .downloads_section .download-icon {
  position: absolute;
  bottom: 5px;
  right: 12px;
  font-size: 18px;
  color: #6a1b4d;
  cursor: pointer;
}
.park_details_page .policy_img_sec img{width:100%}
/************meet us*************** */
.park_details_page.meetus_section .feature-card {
    padding: 22px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border-bottom: 5px solid #6b1c48;
    transition: transform 0.2s ease-out;
}
.park_details_page .meetus_section .feature-card:hover{
    transform: scale(1.1);
    transition: transform .2s;
    border-bottom: 5px solid #6b1c48;
}
.park_details_page .meetus_section .feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.park_details_page .meetus_section .feature-header i {
  font-size: 34px;
  color: #333;
}
/* .meetus_section .feature-header img{width:20%} */

.park_details_page .meetus_section .feature-card h5 {
  font-weight: 600;
  margin: 0;
}

.park_details_page .meetus_section .feature-card p {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
}
/************connect  with us******************* */


.park_details_page .connectus_section .mitra-content {
  /* background: rgba(255,255,255,0.9); */
  padding: 0px;
  border-radius: 8px;
}
.park_details_page .mitra-content img{width:100%}
.park_details_page .connectus_section .mitra-list {
  padding-left: 18px;
  font-size: 14px;
}

.park_details_page .connectus_section .links-card {
   /* background: #fff;  */
    margin-top: 35px;
    border-radius: 14px 15px 0px 0px;
    border: 1px solid #ccccccfa;
    border-width: 1px 1px 0px 1px;
    border-style: solid;
    border-color: #cccccc85;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff00);
    height: 109%;
    padding-bottom: 60px;
}
.park_details_page .links_box{
 padding:20px 25px;
}

.park_details_page .connectus_section .link-btn {
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
}

.park_details_page .connectus_section .link-btn.primary {
  background: #6a1b4d;
  color: #fff;
  border: 1px solid #6a1b4d;
}

.park_details_page .connectus_section .link-btn.secondary {
  background: #f1f1f1;
  color: #333;
  border: 1px solid #6a1b4d;
}

.park_details_page .connectus_section .link-btn:hover {
  opacity: 0.9;
}
.park_details_page .linkscardntn{
    background-color: #f8d0d66e;
    padding: 15px;
    border-radius: 15px 15px 0px 0px;
    font-size:32px;
}
/******contact form********* */
.edge_section .info-box{
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-out;
    height: 180px !important;
    overflow: auto;
}
.park_details_page .contact-section {
      /* background-image: url("/frontend/assets/img/park_detail/Infrastructure_Status_Overview_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
      padding: 50px 100px;
  }

.park_details_page .contact-section .govt-badge{
        background-color: #f8d0d65c;
    padding: 12px 85px 12px 12px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 25px;
}
.park_details_page .contact-section.contact-box p{
    margin-bottom:6px;
    font-size:16px;
}
.park_details_page.contact-section .icon-circle{
    width:38px;
    height:38px;
    background:#7a1b4b;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.park_details_page .contact-section.contact-line{
    border-bottom:1px solid #ccc;
    margin:25px 0;
}
.park_details_page .contact-section .form-card{
        background-color: #f8d0d65c;
    border-radius:4px;
    padding:40px;
}
.park_details_page .contact-section.form-card h4{
    font-weight:700;
}
.park_details_page .contact-section .form-card p{
    color:#555;
    font-size:12px;
}
.park_details_page .contact-section .form-card .form-label{
    font-size: 14px;
    color: #7d1d51;
    margin-bottom: 2px !important;
    margin-top:10px;
}
.park_details_page .contact-section .form-card input::placeholder, .park_details_page .contact-section .form-card textarea::placeholder{
    font-size: 14px;
}
.park_details_page .contact-section.form-control{
    border-radius:8px;
    padding:12px 15px;
}
.park_details_page .contact-section .submit-btn{
    background:#7a1b4b;
    color:#fff;
    padding:14px;
    border-radius:12px;
    font-size:18px;
    border:none;
}
.park_details_page .contact-section .submit-btn:hover{
    background:#64163e;
}
.park_details_page .contact-line {
  width: 75%;
    height: 0px;
    /* width: 30px; */
    background: #66184d41;
    height: 1px;
    opacity: 1;
    border-radius: 10px;
}
.park_details_page .contact-box h5{font-size:18px;margin-bottom:10px;}
.park_details_page #container {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: auto;
}
.park_details_page .landsecicon{
  display: flex;
  gap: 10px;
  line-height: 54px;
  align-items: center;
}
.park_details_page .edge_section .feature-box:hover, .park_details_page .edge_section .info-box:hover {
    /* transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); */
    /* background: linear-gradient(90deg, #611556 0%, #762337bd 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    color:#fff; */
    transform: scale(1.1);
    transition: transform .2s;
}
.park_details_page .img-map-sec img, .park_details_page .policy_img_sec img, .park_details_page .mitra-content img{
  transition: transform 0.2s ease-out;
}
.park_details_page .img-map-sec:hover img, .park_details_page .policy_img_sec:hover img, .park_details_page .mitra-content:hover img{
   transform: scale(1.1);
    transition: transform .2s;
}

.park_details_page .edge_section .info-box:hover .feature_icon img{
   border-radius:10px;
}
/* .edge_section .feature-box:hover h5, .edge_section .info-box:hover h4, .edge_section .info-box:hover .info-list li{color:#fff;} */
.park_details_page .meetus_section .feature-card:hover::after {
    width: 100%;
    height: 100%;
}
.park_details_page .meetus_section .feature-card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
       background: linear-gradient(90deg, #f8e1e999 0%, #ffe5ee6e 100%);
    color: white;
    transition: all 0.5s;
}
.park_details_page .meetus_section .feature-card:hover::after .feature-header{
  z-index: 99;
}
/**************youtube icon************ */
.park_details_page .video-play-button {
	position: absolute;
    z-index: 10;
    bottom: 30%;
    right: 15%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 25px;
    height: 28px;
    /* background: #eb2055; */
    border-radius: 50%;
    padding: 1px 20px 18px 20px;
    z-index: 9999;
    cursor: pointer;
  }
  
  .park_details_page .play-btn:before {
	  content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #fffffff5;
    border-radius: 50%;
    animation: pulse-border 1100ms ease-out infinite;
  }
  
  .park_details_page .play-btn:after {
	  content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 48px;
    height: 48px;
    background: #5b3d3ebf;
    border-radius: 50%;
    transition: all 200ms;
  }
  
  .park_details_page .play-btn span {
	  display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 18px solid #e1dddd;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 0px;
    left: -11px;
  }
  
  @keyframes pulse-border {
	0% {
	  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
	  opacity: 1;
	}
	100% {
	  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
	  opacity: 0;
	}
  }
.park_details_page .youtubeicon{
	position: relative;
    top: 11px;
    color: #ef2424;
    left: 5px;
}


.park_details_page .downloads_section .policy-card:hover .download-icon {
    position: absolute;
    bottom: 5px;
    right: 12px;
    font-size: 18px;
    color: #6a1b4d;
    cursor: pointer;
    background: #fae6ed;
    border-radius: 50%;
    padding: 4px;
}

.tab-content .read-more{
  cursor: initial;
}


.status-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-card .card-body {
    /* flex: 1;
    display: flex; */
    flex-direction: column;
    justify-content: space-between;
}
.infraSwiper .swiper-wrapper{padding-bottom: 57px;}
.infraSwiper .swiper-pagination-bullet{
  width: 15px;height: 15px;
}

.infraSwiper .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, #96205e);
}
.topcontentmedia{height: 195px;}

/**********india global texttiel*********/


/* TOP CARDS */
.indiaglobagtexttile .info-card {
  background: linear-gradient(135deg, #f7dbe5a6, #f1c3d06e) !important;
    border-radius: 7px;
    padding: 25px;
    height: 100%;
    color: #7a1c45;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    height: 180px !important;
}
.indiaglobagtexttile .info-card.policy-card{
  flex-direction: column;
}
.indiaglobagtexttile .info-card sup {
    top: -2.5em;
    font-size: 14px;
    font-weight: 500;
}

.indiaglobagtexttile .big-number {
  font-size: 55px;
  font-weight: 700;
  color: #8b1c4a;
  margin-bottom: 10px;
  margin-right: 12px;
}

.indiaglobagtexttile .info-card p {
  margin: 0;
  font-weight: 500;
}

.indiaglobagtexttile .policy-card {
  text-align: left;
}
.indiaglobagtexttile .policy-card span{
  font-size: 13px;
}

.indiaglobagtexttile .policy-card h3 {
  font-weight: 700;
  color: #8b1c4a;
  margin-bottom: 8px;
  font-size: 30px;
}

/* BOTTOM STATS */
.indiaglobagtexttile .stat-box h2 {
  font-size: 50px;
  font-weight: 700;
  color: #8b1c4a;
  margin-bottom: 10px;
}
.indiaglobagtexttile .stat-box{text-align: center;margin-top: 25px;}
.indiaglobagtexttile .stat-box h2 span {
  font-size: 26px;
  font-weight: 600;
}

.indiaglobagtexttile .stat-box p {
    font-size: 16px;
    color: #7a1c45;
    max-width: 250px;
    margin: auto;
    font-weight: 500;
}

.indiaglobagtexttile .stat-box small {
    font-size: 16px;
    color: #7a1c45;
    max-width: 250px;
    margin: auto;
    font-weight: 500;
}
.card_infosec{
    background: #ffffff94;
    padding: 15px;
    border-radius: 15px;
    height: 381px;
    transition: transform 0.3s ease;
    overflow: hidden;
}
.card_infosec:hover{
    transform: scale(1.04) !important; 
    transition: transform 0.3s ease !important;
}

.whatsispmmitrasec p {
    margin-bottom: 0px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    color: #232323;
}
/*******maprightside default ***********/

.bg_mapright{
  background-color: #f8d0d65c;
  border-radius: 4px;
      /* margin: 60px 0px; */
}
.info-box.developedby h5{
 text-align: justify;
    padding-left: 6px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 141%;
    letter-spacing: 0%;
    COLOR: #474747;
    color: #8b1c4a;
}
.info-box.developedby .highlight-number{font-size: 28px;}
.maprightside_default .park-info-section {
  /* background: #f6efe7; */
  font-family: 'Poppins', sans-serif;
  color: #6a1b3f;
}

.maprightside_default .info-box {
  /* background: linear-gradient(135deg, #f8dce6, #f3cbd8); */
  border-radius: 14px;
  padding: 5px 15px;
}
.maprightside_default .info-box p {
    text-align: justify;
    padding-left: 6px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 141%;
    letter-spacing: 0%;
    COLOR: #474747;
}
.maprightside_default .highlight-number {
  font-size: 40px;
  font-weight: 700;
  color: #98255F;
  margin-bottom: 10px;
  text-align: left;
font-style: SemiBold;
font-size: 50px;
leading-trim: NONE;
line-height: 141%;
letter-spacing: 0%;

}
.highlight-number.seven{
    font-size: 60px;
    position: relative;
    top: -5px;
}

.maprightside_default .percent {
  font-size: 36px;
  font-weight: 700;
  color: #8b1c4a;
font-style: SemiBold;
font-size: 50px;
leading-trim: NONE;
line-height: 101%;
letter-spacing: 0%;

}

.maprightside_default .small-title {
  font-size: 14px;
  /*text-transform: uppercase;*/
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.maprightside_default h5{
      font-size: 25px;
    color: #212020;
}
.textpmpark h5{
      color: #000;
    font-size: 35px;
}
.maprightside_default .value-chain {
font-weight: 600;
    color: #8b1c4a;
    text-align: left;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    line-height: 141%;
    letter-spacing: 0%;
}
.maprightside_default .text_green_spaces_persent p{text-align: left;}

/* BUTTONS */
.maprightside_default .btn-main {
  background: #8b1c4a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}

.maprightside_default .btn-main:hover {
  background: #6e1539;
  color: #fff;
}

.maprightside_default .btn-outline-main {
  border: 2px solid #8b1c4a;
  color: #8b1c4a;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}

.maprightside_default .btn-outline-main:hover {
  background: #8b1c4a;
  color: #fff;
}
.marlr{margin: 10px 80px;}

.resetmap{
   background: #f9f8f7;
    border-radius: 60px;
    font-size: 22px;
    border: 1px solid #ccc;
    position: relative;
    top: 100px;
    z-index: 9;
}
.resetmap:hover{
   background: #f9f8f7;
    border-radius: 60px;
    font-size: 22px;
    border: 1px solid #ccc;
    position: relative;
    top: 100px;
    z-index: 9;
}
#map_zoom{top:120px !important;}
/*****rapid progress start************/

.rapidprogress {
  font-family: 'Poppins', sans-serif;
}

.rapidprogress .big-percent {
     color: #8b1c4a;
    font-weight: 700 !important;
    font-family: Poppins;
    font-size: 50px;
    line-height: 101%;
    letter-spacing: 0%;
}

.rapidprogress .main-value {
 color: #8b1c4a;
    font-weight: 700 !important;
    font-family: Poppins;
    font-size: 50px;
    line-height: 101%;
    letter-spacing: 0%;
}

.rapidprogress .small-label {
    margin-bottom: 5px;
    margin-top: 11px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: 141%;
    letter-spacing: 0%;
}
.marquee-item{
      display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: normal;
}
.marquee-item .bi.bi-dot{
  position: relative;
    top: -7px;
}

.rapidprogress .highlight-box {
  background-color: #f5d1dd6e;
}

.rapidprogress .highlight-title {
  color: #8b1c4a;
font-weight: 700;
font-style: Bold;
font-size: 22px;
leading-trim: NONE;
line-height: 141%;
letter-spacing: 0%;

}
/*.textwidthbig{    width: 60%;}*/

.rapidprogress .spv-title {
  font-size:40px;
  color: #8b1c4a;
  font-weight: 700;
  margin-bottom: 0;
}

.rapidprogress .spv-sub {
  color: #8b1c4a;
  font-weight: 600;
  margin-top: -10px;
}

.rapidprogress .big-circle {
  width: 240px;
  height: 240px;
  background: #8b1c4a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rapidprogress .big-circle h3 {
  font-size: 34px;
  font-weight: 700;
}
.rapidprogress .big-circle h3, .rapidprogress .big-circle p{color:#fff;}

.rapidprogress .small-circle {
  width: 140px;
  height: 140px;
  background: #f4a3b3;
  border-radius: 50%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
    right: 7%;
}
.textwidthsmall{
  width: 8%;
    float: right;
    justify-content: center;
    display: flex;
    position: relative;
    right: 20%;
}
/*.rapidprogress .ational_Industrial_Corridor{font-size: 19px;}*/
.rapidprogress .border-start {
    /* border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; */
    border-left: 1px solid #615d5d !important;
}

span.badge.bg-light.text-dark.px-3.py-2.rounded-pill.shadow-sm {
    background-color: #F8D0D670 !important;
}
/********Govt state icon start***************/
.govt-section {
   background-image: url(../img/govt-section.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.govt-section{
    background-image: url(../img/govt-section.jpeg); 
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
    /* padding-top: 90px;
    padding-bottom: 90px; */
}


.govt-section .section-title {
  font-weight: 700;
  letter-spacing: 2px;
}

.govt-section .section-subtitle {
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.govt-section .logo {
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.govt-section .agency-logo {
  max-height: 100px;
  object-fit: contain;
}
.govt-section .agency-wide.mpidclogo{
    max-height: 125px;
}

.govt-section .agency-wide {
  max-height: 70px;
  object-fit: contain;
}
.borderleft{
      --bs-border-opacity: 1;
    border-color: rgb(255 255 255 / 35%) !important;
}

.govt-section .section-divider {
    border-color: rgb(255 255 255 / 35%) !important;
    /* border: 1px solid #fff; */
    opacity: 0.6;
}

/* Desktop vertical divider */
@media (min-width: 992px) {
  .govt-section .border-lg-start {
    border-left: 1px solid rgba(255,255,255,0.4);
    padding-left: 40px;
  }
}

.state-govt {
  /* background: linear-gradient(135deg, #8b1c4a, #7a1741); */
  padding: 25px 0px 0;
  color: #fff;
}

.state-govt .logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* EXACT 7 equal parts */
  gap: 30px;
  align-items: center;
  text-align: center;
}
.state-govt .logo-grid .logo-item {
    flex: 0 0 auto;
    padding: 0;
    display: initial;
    align-items: center;
}
.state-govt .logo-item img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.state-govt .logo-item p {
    margin: 0;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 11px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 141%;
    letter-spacing: 0%;
}
.small-circle h5{font-weight: 600;    color: #8b1c4a;}

/**********glimpse*********/

.mitra-glimpse {

  font-family: 'Poppins', sans-serif;
}

/* Left Content */
.mitra-glimpse .glimpse-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.mitra-glimpse .glimpse-text {
  color: #555;
  font-size: 16px;
}

.mitra-glimpse .explore-btn {
  background: #8b1c4a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.mitra-glimpse .explore-btn:hover {
  background: #6e1438;
  color: #fff;
}

/* Image Cards */
.mitra-glimpse .image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.mitra-glimpse .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mitra-glimpse .image-card span {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
}

/* Dark overlay */
.mitra-glimpse .image-card::after {
  content: "";
  position: absolute;
  inset: 0;
      background: linear-gradient(to top, rgb(0 0 0 / 27%), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

/* Hover zoom */
.mitra-glimpse .image-card:hover img {
  transform: scale(1.08);
}
.fb-responsive, .instagramsection{
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.instagramsection_scroll, .fb-responsive_scroll{
    background: #fff;
    height: 525px;overflow: auto;
}

.twitter_linkedin{color:#1877F2; text-align: left;font-weight: 600;}

.textwidthbig {
  position: relative; 
}

.textwidthbig::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 80px;
    background-color: #f4a3b3;
    right: 46%;
    top: 205%;
    transform: translateY(-50%);
    z-index: 9;
}
.textwidthsmall{position: relative;}
.textwidthsmall::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 37px;
    background-color: #8b1c4a;
    right: 48%;
    top: -46%;
    transform: translateY(-50%);
    z-index: 9999;
}

/*pop up modal*/
.custom-modal {
  background: #f7f3eb;
  border-radius: 20px;
  padding: 20px 30px;
  background-image: url(../img/background.jpeg);
    border-radius: 0px;
}

.custom-close {
  position: absolute;
  right: 20px;
  top: 20px;
}

.modal-row {
  margin-bottom: 20px;
  position: relative;
}

.pill {
  padding: 14px 25px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  min-width: fit-content;
}

.desc {
  font-size: 18px;
  color: #444;
  position: relative;
}

/*.desc:before {
  content: "★";
  position: absolute;
  left: -15px;
  top: 50%;
     width: 300px;
    height: 3px;
    transform: translateY(-50%);
    background: rgb(194, 24, 91);
    border-radius: 0px;
  transform: translateY(-50%);
}*/

/* Colors */
.pink { background: #f08a94; }
.purple { background: #8e2c72; }
.red { background: #d61f4c; }
.yellow { background: #f4b43a; }
.orange { background: #f7921e; }
.darkorange { background: #f26522; }
.blue { background: #6c6fb0; }

/* Responsive */
@media (max-width: 991px) {
  .modal-row {
    text-align: left;
  }
  .pill {
    margin-bottom: 10px;
  }
  .desc:before {
    display: none;
  }
}



.legend-item span{
  font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 141%;
letter-spacing: 0%;
text-align: center;

}
/* Legend */
.legend-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #3a3a3a;
}

/* Dots */
.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

/* Exact Colors */
.dot.active {
  background-color: #9c1c5a;  /* magenta */
}

.dot.green {
  background-color: #a6c35f;  /* green */
}

.dot.brown {
  background-color: #e24b1f;  /* orange/red */
}

/* Heading */
.challenge-text {
 font-family: Poppins;
font-weight: 400;
font-style: Regular;
font-size: 16px;
leading-trim: NONE;
line-height: 141%;
letter-spacing: 0%;
text-align: center;

}

/* Responsive */
@media (max-width: 768px) {

  .legend-wrapper {
    gap: 20px;
  }

  .legend-item {
    font-size: 16px;
  }

  .dot {
    width: 16px;
    height: 16px;
  }

  .challenge-text {
    font-size: 20px;
  }

}
.page-title h1 {
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
   box-shadow: 0px 0px 0px 0px #00000000;
}
.page-title p {
    font-size: 18px;
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
}
 .indiatextilesector_bg {
      background-image: url("/frontend/assets/img/photos/gallery_banner.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: 432px;
      position: relative;
      padding-top:88px;
   }

 /* Right Section Box */
.indiatexttilessector .info-box{
    /* background: #f8f8f8; */
     background: linear-gradient(to right, #f8f8f8, #f7f3f094);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.2s ease-out;
    height: 550px;
    overflow: auto;
}

.indiatexttilessector .info-box::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.indiatexttilessector .info-box::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}
 
/* Handle */
.indiatexttilessector .info-box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px; 
}

/* Handle on hover */
.indiatexttilessector .info-box::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.indiatexttilessector .info-box:hover{ 
    transform: scale(1.02) !important;
    transition: transform 0.3s ease !important;
}
.indiatexttilessector .info-box:hover .state-title::after{
        /* background: #7e1d52de; */
        background: linear-gradient(to right, #7e1d52de, #8a1c4a52);
}

/* Section Headings */
.indiatexttilessector .state-title{
    color: #8a1c4a;
    font-weight: 700;
    margin-bottom: 10px;
}

.indiatexttilessector .state-title::after{
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #8a1c4a;
    margin-top: 5px;
}

/* .indiatexttilessector .state-title::after{
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    background: #8a1c4a;
    margin-top: 5px;
} */

.indiatexttilessector .state-title{position: relative;}
.indiatexttilessector .state-title.title1::after {
    content: "";
    display: block;
    width: 49%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 35%;
}

.indiatexttilessector .state-title.title2::after {
        content: "";
    display: block;
    width: 55%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 40%;
}

.indiatexttilessector .state-title.title3::after {
    content: "";
    display: block;
    width: 64%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 27%;
}

.indiatexttilessector .state-title.title4::after {
    content: "";
    display: block;
    width: 32%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 60%;
}
.indiatexttilessector .state-title.title5::after {
        content: "";
    display: block;
    width: 70%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 30%;
}

.indiatexttilessector .state-title.title6::after {
        content: "";
    display: block;
    width: 49%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 44%;
}
.indiatexttilessector .state-title.title7::after {
   content: "";
    display: block;
    width: 50%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 46%;
}
.indiatexttilessector .state-title.title8::after {
   content: "";
    display: block;
    width: 50%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 46%;
}
.indiatexttilessector .state-title.title9::after {
   content: "";
    display: block;
    width: 40%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 5px;
    left: 57%;
}

.indiatexttilessector .state-title.title10::after {
   content: "";
    display: block;
    width: 46%;
    height: 5px;
    background: #8a1c4a;
    margin-top: 5px;
    position: absolute;
    top: 4px;
    left: 54%;
}

/* Small Category Headings */
.indiatexttilessector .category{
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #444;
}

/* Legend Card */
/*.mapindiasec{position:relative; width: 65%;}*/
.mapindiasec img, .indiatexttilessector .legend-box, .indiatexttilessector .circle-top, .indiatexttilessector .circle-left, .indiatexttilessector .circle-right{transition:transform 0.2s ease-out;}
/*.mapindiasec img:hover, .indiatexttilessector .legend-box:hover,  .indiatexttilessector .circle-top:hover, .indiatexttilessector .circle-left:hover, .indiatexttilessector .circle-right:hover{
    transform: scale(1.1) !important;
    transition: transform 0.3s ease !important;
}*/
.mapindiasec {
    margin: 0 auto;
    text-align: center;
}
.mapindiasec img{
  width: 600px;
}
.indiatexttilessector .legend-box{
    /* background: linear-gradient(to right, #ffa6b587, #f7f3f094);  */
    background: linear-gradient(to right, #ffa6b5d6, #fbdbddbf);
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    /*width: 54%;*/
    position: absolute;
   right: 100px;
    bottom: 50px;
}

.indiatexttilessector .legend-item{
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 12px;
}

.indiatexttilessector .legend-dot{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Dot Colors */
.indiatexttilessector .dot-small-woven{ background:#fff; border:1px solid #999;}
.indiatexttilessector .dot-large-woven{ background:#f7b6b6;}
.indiatexttilessector .dot-small-knit{ background:#ffcc4d;}
.indiatexttilessector .dot-large-knit{ background:#ff9900;}
.indiatexttilessector .dot-large-both{ background:#4caf50;}

@media(max-width:991px){
   .indiatexttilessector .state-title::after{
        width: 40%;
    }
}  

/* Title */
.indiatexttilessector .main-title{
    text-align: center;
    margin-bottom: 60px;
}

.indiatexttilessector .main-title h1{
    font-size: 42px;
    font-weight: 700;
}

.indiatexttilessector .main-title p{
    font-size: 22px;
    margin-bottom: 10px;
}

/* Circle Section */
.indiatexttilessector .circle-wrapper{
    position: relative;
    width: 420px;
    height: 380px;
    margin: auto;
}

.indiatexttilessector .circle{
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}

/* Big Top Circle */
.indiatexttilessector .circle-top{
    width: 235px;
    height: 235px;
    background: #96215F;
    top: -40px;
    left: 85px;
    z-index: 10;
    border: 6px solid #fbf9f4fc;
}
.indiatexttilessector .circle-top h2, .indiatexttilessector .circle-right h2{color: #fff;}

/* Bottom Left */
.indiatexttilessector .circle-left{
    width: 235px;
    height: 235px;
    background: #FBD2D7;
    color: #96215F;
    bottom: 0;
    left: -5px;
    border: 6px solid #fbf9f4fc;
    z-index: 9;
}

.indiatexttilessector .circle-left h2{color:#96215F;}
/* Bottom Right */
.indiatexttilessector .circle-right{
    width: 235px;
    height: 235px;
    background: #F28291;
    bottom: 0;
    right: -5px;
    color:#fff;
    border: 6px solid #fbf9f4fc;
}

/* Circle Text */
.indiatexttilessector .circle h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0px;
}

.indiatexttilessector .circle p{
    margin: 0;
    font-weight: 500;
}

/* Cards Right Side */
.indiatexttilessector .info-card{
    background: linear-gradient(to right, #f7f3f0, #f7f3f094);
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.indiatexttilessector .info-card:hover{ background: linear-gradient(to right, #ffa6b559, #f7f3f094);}
.indiatexttilessector .info-card h5{
    font-weight: 700;
    margin-bottom: 15px;
}

.indiatexttilessector .info-card ul{
    padding: 15px;
}

.indiatexttilessector .info-card li{
    margin-bottom: 8px;
}

/* Status Dots */
.indiatexttilessector .status-dot{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.indiatexttilessector .dot1{ background:#e4707f; }
.indiatexttilessector .dot2{ background:#e9bfc5; }
.indiatexttilessector .dot3{ background:#8a1c4a; }

/* Responsive */
@media(max-width:992px){
    .circle-wrapper{
        transform: scale(0.9);
    }
}

@media(max-width:768px){
    .circle-wrapper{
       transform: scale(0.75);
    }
}

.heading_sec h4{
    color:#232323;
}
.circle.circle-top .icons_circle{
    position: absolute;
    top: -40px;
    background: #96215f;
    border: 3px solid #f8f4ea;
    border-radius: 50%;
    padding: 9px;
    width: 60px;
}

.circle.circle-right .icons_circle{
    position: absolute;
    top: 32%;
    right: -40px;
    background: #F28291;
    border: 3px solid #f8f4ea;
    border-radius: 50%;
    padding: 9px;
    width: 60px;
}
.circle.circle-left .icons_circle{
    position: absolute;
    top: 32%;
    left: -40px;
    background: #FBD2D7;
    border: 3px solid #f8f4ea;
    border-radius: 50%;
    padding: 9px;
    width: 60px;
}

.vision-header{
    background: linear-gradient(to right, #ffa6b587, #f7f3f094);
    padding:10px 25px;
    display:flex;
    align-items:center;
    gap:15px;
    justify-content: center;
}
.vision-header:hover{
    background: linear-gradient(to right, #ffa6b55e, #f7f3f061);
}
.vision-header:hover img{
    transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;
}
.vision-header img{width:50px;}
.vision-header.currentstatus img{width:40px;}
.vision-header h4{color:#262424; margin-bottom: 0px;font-size: 18px;}
.vision-list{
    list-style:none;
    padding:0;
    margin:0;
}
.vision-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:22px;
    font-size:16px;
    font-weight:500;
    color:#333;
}
 .listconte p{
    position:relative;
    margin-bottom:22px;
    font-size:16px;
    font-weight:500;
    color:#333;
}
/* Arrow Bullet */
.vision-list li::before{
    content:"➤";
    position:absolute;
    left:0;
    top:0;
    color:#8a1c4a;
    font-size:22px;
}
.highlight{font-weight:700;}
.listconte{padding:15px;}
.listconte p{font-size:14px;}


.indiatexttilessector .circle.circle-top:hover .icons_circle img{
    transform: rotate(360deg);
     transition: transform 0.6s ease-in-out;
}
.indiatexttilessector .circle.circle-right:hover .icons_circle img{
    transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;
}

.indiatexttilessector .circle.circle-left:hover .icons_circle img{
    transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;
}


/* investmentopportunity Heading */
.investmentopportunity .section-title{
    text-align:center;
    margin-bottom:60px;
}

.investmentopportunity .section-title h2{
    font-weight:700;
    font-size:42px;
}

.investmentopportunity .section-title p{
    font-size:22px;
    margin-bottom:5px;
}

/* Card Wrapper */
/*.investmentopportunity .investment-wrapper{
    overflow-x: auto;
    text-align: center;
    justify-content: center;
    display: flex;
}*/

/*.investmentopportunity .investment-row{
    display:flex;
    gap:25px;
    flex-wrap:nowrap;
}*/

/* Individual Card */
.investmentopportunity .investment-card{
    min-width: 140px;
    background: #efd6d9;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    flex-shrink: 0;
    transition: 0.3s ease;
    height: 335px;
    transition: transform 0.2s ease-out;
    margin-top: 10px;
    margin-bottom: 10px;
}
.investmentopportunity .investment-card:hover, .investmentopportunity .investment-card.secondcard:hover{
    transform: scale(1.06) !important;
    transition: transform 0.3s ease;
}
/*.india_bg{
  box-shadow: 0px 4px 4px 0px #00000005;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff94, #ffffff12);
}*/
.india_map_bg{
  /*box-shadow: 0px 4px 4px 0px #00000005;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff12, #ffffff94);*/
}
.small-labelinner {
    margin-bottom: 0px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 22px !important;
    line-height: 35px;
    color: #232323;
}
.investmentopportunity .investment-card.secondcard{
    min-width: 140px;
    background: #efd6d9;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    flex-shrink: 0;
    transition: 0.3s ease;
    height: 275px;
    overflow: hidden;
    margin-top: 30px;
    transition: transform 0.2s ease-out;
}
.investmentopportunity .investment-card.secondcard .icon img{
   max-width:50%;
}
.investmentopportunity .investment-card.secondcard:hover, .investmentopportunity .investment-card:hover{
 /*background: #ff8ccaa1;*/
}


.investmentopportunity .investment-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 15px rgba(0,0,0,0.08);
}

/* Card Title */
.investmentopportunity .investment-card h6{
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px !important;
    color: #333333;
}

/* Amount */
.investmentopportunity .amount{
    font-size:36px;
    font-weight:700;
    margin-top:0px;
}

.investmentopportunity .amount span{
    display:block;
    font-size:28px;
}

/* Icon */
.investmentopportunity .investment-card .icon{
    font-size:60px;
    margin-bottom:5px;
    justify-content: center;
    display: flex;
}

/* Responsive */
@media(max-width:768px){
    .investmentopportunity .section-title h2{
        font-size:28px;
    }
    .investmentopportunity .amount{
        font-size:32px;
    }
}


/******supportive*********/

/* Info Cards */
.supportive .info-box{
    background: #ffffff87;
    border-radius:15px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 3px 8px rgba(0,0,0,0.05);
    border: 1px solid #ccc;
    transition: transform 0.2s ease-out;
}

.supportive .info-box:hover{
   /*background: linear-gradient(to right, #ffa6b573, #f7f3f094);*/
   transform: scale(1.05) !important;
   transition: transform 0.3s ease;
}

.supportive .info-box h5{
    font-weight:500;
    margin-bottom:10px;
}

.supportive .info-box p{
    margin:0;
    color:#444;
    font-size: 14px;
}

/* Center Circle Section */
.supportive .ecosystem-wrapper{
    position:relative;
    width:400px;
    height:400px;
    margin:auto;
}

/* Outer Ring */
.supportive .outer-ring{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:#8a1c4a;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    padding:40px;
}

/* 4 Segments */
.supportive .segment{
    width:45%;
    height:45%;
    background:#a3265c;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

/* Center Circle */
.supportive .center-circle{
    position:absolute;
    width:150px;
    height:150px;
    background:#f19cab;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-weight:700;
    font-size:18px;
    color:#333;
}

/* Arrows */
.supportive .arrow{
    position:absolute;
    font-size:40px;
    color:#e07c8f;
}

.supportive .arrow.top{top:-50px;right: 0%; }
.supportive .arrow.bottom{ left: -1%;bottom: 1%;transform: rotate(42deg);}
.supportive .arrow.left{ left: -11px;  top: -11%; transform: rotate(169deg) !important;}
.supportive .arrow.right{ right: -1%; bottom: 0%; transform: rotate(175deg) !important;}
 .chartgraph:hover img  {transform: rotate(360deg);
    transition: transform 0.6s ease-in-out;}

/* Responsive */
@media(max-width:992px){
    .supportive .ecosystem-wrapper{
        transform:scale(0.85);
    }
}

@media(max-width:768px){
    .supportive .ecosystem-wrapper{
        margin:40px auto;
        transform:scale(0.75);
    }
}
.page-title h1 {
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
   box-shadow: 0px 0px 0px 0px #00000000;
}
.page-title p {
    font-size: 18px;
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
}
 .video_bg {
      background-image: url("/frontend/assets/img/videos/videogallerybanner.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-color: transparent;
      height: 477px;
      position: relative;
      padding-top:178px;
   }

   .videos_gallery {
      /* background-image: url("/frontend/assets/img/videos/gallery_bg.jpeg"); */
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: auto;
      position: relative;
      /* padding-top:88px; */
   }


.videos_gallery .gallery img {
  /* aspect-ratio: 4/3; */
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius:4px;
}

.videos_gallery .gallery_box {
   transition: transform 0.3s ease;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #ffffff);
    border-radius: 10px;
    padding: 7px;
    text-align: center;
    /* box-shadow: 0 20px 60px rgba(255, 106, 0, 0.25); */
    /* border: 2px solid #811d5387; */
    position: relative;
}
 .gallery_box:hover {
   transform: scale(1.06) !important;
   transition: transform 0.1s ease;
 }


.content h5{color:#1d1c1c;}
.videos_gallery .btn.btn-primary:hover{background: #5c0e38ff;}
.videos_gallery .btn.btn-secondary{
   background: #858080;
   color:#fff;
}
.image-gallery{height: 262px;}
.image-gallery img{
      height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 51px;
    background: rgb(0 0 0 / 49%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffffe8;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.play-btn:hover {
  background: #8c1f59;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn .bi.bi-play-circle{font-size:55px}



.play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(255 255 255 / 90%);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  60% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.page-title h1 {
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
   box-shadow: 0px 0px 0px 0px #00000000;
}
.page-title p {
    font-size: 18px;
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
}
 .photo_bg {
      background-image: url("/frontend/assets/img/photos/gallery_banner.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: 432px;
      position: relative;
      padding-top:88px;
   }

  .gallerynew {
   padding: 0px 85px;
  } 
/* Card */
.gallerynew .gallery-card{
    background: #fff;
    border-radius: 10px 10px 5px 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}
.gallerynew .gallery-card:hover{
    transform:translateY(-5px);
}

/* Image Stack */
.gallerynew .image-stack{
    position:relative;
    display:inline-block;
    margin-top: 25px;
    margin-bottom:60px;
}
.gallerynew .image-stack img{
        width: 200px;
    height: 230px;
    border: 5px solid #fff;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.gallerynew .image-stack img:first-child{
    position: absolute;
    left: -79px;
    top: 0px;
    transform: rotate(-8deg);
}
.gallerynew .image-stack img:last-child{
    transform:rotate(6deg);
    right: -52px;
    position: relative;
}
.gallerynew .image-stack img:last-child{
  transition: all 0.3s ease;
}


/* Title */
.gallerynew .card-title-box{
    background:#ead6d6;
    padding:10px;
    border-radius:6px;
    font-weight:600;
}
.gallerynew .gallery-card:hover .card-title-box{
    background:#6e1539;
    /* color: #fff; */
}

/* Load Button */
.gallerynew .load-btn{
    background: #831e54;
    color: #fff;
    padding: 8px 40px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
}
.gallerynew .load-btn:hover{
    background:#6e1539;
    color:#f0d655;
}

/* Hidden Cards */
.gallerynew .hidden-card{
    display:none;
}

/* FIRST IMAGE */
.img-first{
    transform:rotate(-8deg);
    z-index:1;
    animation:firstMove 1s ease forwards;
}

/* SECOND IMAGE */
.img-second{
    transform:rotate(6deg);
    z-index:2;
    animation:secondMove 1s ease forwards;
    animation-delay:1s;   /* starts after first animation */
}

/* First Animation */
@keyframes firstMove{
    0%{
        transform:translateX(-80px) rotate(-20deg);
        opacity:0;
    }
    100%{
        transform:translateX(-20px) rotate(-8deg);
        opacity:1;
    }
}

/* Second Animation */
@keyframes secondMove{
    0%{
        transform:translateX(80px) rotate(20deg);
        opacity:0;
    }
    100%{
        transform:translateX(20px) rotate(6deg);
        opacity:1;
    }
}

/* Hover Effect */
.img-first:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 3;
}

.img-second:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 3;
}

.page-title h1 {
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
   box-shadow: 0px 0px 0px 0px #00000000;
}
.page-title p {
    font-size: 18px;
   text-shadow: 1px 7px 6px rgb(0 0 0 / 71%);
}
 .photo_bg_detail {
      background-image: url("/frontend/assets/img/photos/gallery_banner.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom;
      background-color: transparent;
      height: 432px;
      position: relative;
      padding-top:88px;
   }

  .gallerynew {
   padding: 0px 85px;
  } 
.gallerynew .gallery-cards {
    background: #fff;
    border-radius: 10px 10px 5px 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

 .whoswhosec .whos_who .datatable{position: relative;}
   .whoswhosec .whos_who .filterdropdown {width: fit-content; position: absolute;left: 15%;top:-14px;z-index: 9;}
   .whoswhosec .whos_who .table thead tr th{font-size:14px;    background: #6b1b47;color: #fff;}
   .whoswhosec .whos_who .table tbody tr td{font-size: 14px;}
   .whoswhosec .whos_who .dt-buttons{position: absolute;top: -12px;z-index: 9;}
   .whoswhosec .whos_who .dt-buttons button{background: #fff;border: 1px solid #ccc;border-radius: 4px;padding: 5px 15px;}
   .whoswhosec .whos_who .dt-search{position: relative;top:-5px;}
   .whoswhosec .whos_who .dt-paging{float: right;}
   .whoswhosec .whos-whobg {
   background-image: url("/frontend/assets/img/contact_us.jpg");
   background-repeat: no-repeat;
   background-size: cover;
   background-position: bottom;
   background-color: transparent;
   height: 350px;
   position: relative;
   padding-top:88px;
   }
   .whoswhosec .caption-top{
   font-size: 20px;
   margin-top: 20px;
   margin-bottom: 5px;
   }
  .whoswhosec .heading {
       text-align: center;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 11px;
    letter-spacing: 1px;
    color: #111;
    margin-top: 26px;
   }
   /* Cards grid */
   .card-wrap {
   /* display: ;
   grid-template-columns: repeat(2, 1fr);
   gap: 30px;*/
   }
   /* Card */
   .whoswhosec .card {
   background: #ffffff;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 8px 20px rgba(0,0,0,0.08);
   transition: all 0.35s ease;
   height: 225px;
   }
   /* Card hover */
   .whoswhosec .card:hover {
   transform: translateY(-8px);
   box-shadow: 0 18px 35px rgba(0,0,0,0.18);
   }
   /* Card body */
   .whoswhosec .card-body {
   padding: 30px;
   }
   .whoswhosec .card-title {
   font-size: 20px;
   font-weight: 600;
   color: #222;
   margin-bottom: 12px;
   transition: color 0.3s ease;
   }
   .whoswhosec .card:hover .card-title {
   color: #6b1534;
   }
   .whoswhosec .card-subtitle {
   font-size: 15px;
   color: #666;
   line-height: 1.6;
   }
   /* Card footer */
  .whoswhosec .card-footer {
   background: linear-gradient(90deg, #6b1534, #8a2046);
   padding: 14px 22px;
   display: flex;
   gap: 25px;
   flex-wrap: wrap;
   transition: background 0.35s ease;
   }
   .whoswhosec .card:hover .card-footer {
   background: linear-gradient(90deg, #8a2046, #6b1534);
   }
   /* Footer item */
  .whoswhosec .footer-item {
   display: flex;
   align-items: center;
   gap: 10px;
   color: #fff;
   font-size: 15px;
   }
   /* Icon */
   .whoswhosec .footer-item i {
   width: 34px;
   height: 34px;
   background: #f1c40f;
   color: #6b1534;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   transition: transform 0.4s ease, background 0.4s ease;
   }
   /* Icon hover */
   .whoswhosec .card:hover .footer-item i {
   transform: rotate(360deg) scale(1.1);
   background: #ffd24d;
   }
  .whoswhosec.whoswhosec  .light-card .card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #7b1e3d;
}
.whoswhosec .light-card .card .card-footer{
    background: transparent !important;
    color: #222!important; 
}
.whoswhosec .light-card .card .card-footer .footer-item{
    background: transparent !important;
    color: #222!important; 
}
.whoswhosec .card:hover{
  background: linear-gradient(to right, #ffa6b573, #f7f3f094);
    transform: scale(1.04) !important;
}
.whoswhosec .light-card:hover .card .card-footer{
    color: #ffffff !important;
    background: linear-gradient(90deg, #6b1534, #8a2046) !important;
}
.whoswhosec .light-card:hover .card .card-footer .footer-item{
 color:#fff !important;
}

.whoswhosec .whos_who {
   /* background-image: url('/frontend/assets/img/bg-who-page.jpg'); */
   background-repeat: no-repeat;
   background-size: cover;
   background-position: bottom;
}

 
.aboutpage .aboutusbg:before{
background: #00000069!important;
}
.aboutpage .aboutlft {
    height: 340px;
    width: 100%;
    object-fit: cover;
}
.abt-wrapper{padding-top:0px !important;}
.aboutpage .abt-wrapper p{
font-size: 18px;
color:#171717;
}
.aboutpage  p{
font-size: 20px !important;
color:#171717;
}

.aboutpage .scheme-wrapper .card-body{
position: relative;
}
.aboutpage .scheme-wrapper {
position: relative;
/* background: url("</?= base_url('frontend/assets/img/scheme-bg.png') ?>") no-repeat center / cover; */
padding: 80px 0;
overflow: hidden;
}


.aboutpage .scheme-wrapper .bg-brown {
background-color: #98255F !important;
top: -35px;
position: absolute;
left: 0;
padding: 15px 55px !important;
border-top-left-radius: 30px!important;
border-top-right-radius: 28px!important;
border-bottom-right-radius: 28px!important;
border-bottom-left-radius: 0px;
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color:#FFFFFF;
}
.tab-content ul li p font, .tab-content ul li span, .tab-content ul li{font-family: Poppins !important;}
.aboutpage .scheme-wrapper .bg-green {
background-color:#98255F!important;
top: -35px;
position: absolute;
left: 0;
padding: 15px 55px !important;
border-top-left-radius: 30px!important;
border-top-right-radius: 28px!important;
border-bottom-right-radius: 28px!important;
border-bottom-left-radius: 0px;
font-family: Poppins;
font-weight: 600;
font-size: 24px;
color:#FFFFFF;
}
.aboutpage .scheme-wrapper .bg-subtle{
/* background: linear-gradient(89.43deg, #F6D453 -11.81%, #FFFFFF 104.28%); */
    background: #F8D0D670;

}
.aboutpage .scheme-wrapper .card-field {
border: 1px solid #9C9C9C4D;
box-shadow: 0px 4px 4px 0px #0000002B;
}
.aboutpage .governance-wrapper{
background: url("<?= base_url('frontend/assets/img/abt-bg.png') ?>") no-repeat center / cover;
}
.aboutpage .governance-wrapper .service-image-block{
box-shadow: none!important;
}
.aboutpage .governance-wrapper .service-box{
background: #F8D0D670;
    box-shadow: 0px 4px 4px 0px #00000026 !important;
    height: 100px;

}

.aboutpage .service-box:hover .service-icon img {
transform: rotate(360deg);
}

.aboutpage .service-box .service-icon img{
transition: transform 0.6s ease-in-out;
}
.aboutpage .governance-wrapper .service-list{
height: 600px;
overflow: auto;
/* overflow-x: hidden; */
padding-right: 41px;
padding-top: 32px;
}
.aboutpage .governance-wrapper .service-icon{
background: #96205E!important;

}
.aboutpage .service-list {
max-height: 700px;
overflow-y: auto;
}

.aboutpage .service-list::-webkit-scrollbar {
width: 8px;
}


.aboutpage .service-list::-webkit-scrollbar-track {
background-color: #f1f1f1;
}


.aboutpage .service-list::-webkit-scrollbar-thumb {
background-color: #8D1F59;
border-radius: 10px;
}


.aboutpage .service-list::-webkit-scrollbar-button {
height: 12px;
}


.aboutpage .service-list::-webkit-scrollbar-button:single-button:vertical:decrement {
background:
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' fill='%238D1F59'><polygon points='4,0 8,6 0,6'/></svg>")
no-repeat center;
}


.aboutpage .service-list::-webkit-scrollbar-button:single-button:vertical:increment {
background:
url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' fill='%238D1F59'><polygon points='0,0 8,0 4,6'/></svg>")
no-repeat center;
}
.scheme-incentive-wrapper{
/* background: url("<?= base_url('frontend/assets/img/scheme-bg.png') ?>") no-repeat center / cover; */
}
.aboutpage .scheme-incentive-wrapper .financial-card{
border-radius: 8px;
background: #FFFFFF8A;
width: 100%;
transition:
transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
box-shadow 0.4s ease;
will-change: transform;
}
.aboutpage .scheme-incentive-wrapper .financial-card:hover{
transform: translateY(-10px) scale(1.03);
}
.aboutpage .scheme-incentive-wrapper .financial-card span{
font-family: Poppins;
font-weight: 600;
font-size: 18px;
text-align: center;
color: #676767;
}

.aboutpage .scheme-incentive-wrapper .financial-card h4{
font-size: 38px;
font-weight: 700;
color: #98255F;
margin-bottom: 10px;
text-align: left;
}

.aboutpage .scheme-incentive-wrapper .crd-bg-2{
/* background: #F6921F!important; */
box-shadow: 0px 4px 4px 0px #00000040!important;

}
.aboutpage .scheme-incentive-wrapper .crd-bg-3{
/* background: #AFBF61!important; */
box-shadow: 0px 4px 4px 0px #00000040!important;

}
.aboutpage .scheme-incentive-wrapper .dcs-card{
border: 1px solid #9C9C9C4D;
padding: 30px;

}
.aboutpage .cis-card-wrapper {
position: relative;
border: 1px solid rgba(156, 156, 156, 0.3);
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.17);
background: #FFFFFF;
height:100%;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
border-top-right-radius: 7px;

}
.aboutpage .cis-card-wrapper:hover .rt-icon {
transform: rotate(360deg);
}

.aboutpage .cis-card-wrapper .rt-icon{
transition: transform 0.6s ease-in-out;
}

.aboutpage .cis-card-header {
position: absolute;
top:-53px;
left: 0;
height: 52px;
width: 78%;
background: #98255F;;
clip-path: polygon(0 0, 92% 0, 96% 50%, 100% 100%, 0 100%);
}
.aboutpage .cis-header-inner {
height: 100%;
display: flex;
align-items: center;
gap: 12px;
padding-left: 18px;
}

.aboutpage .cis-icon {
width: 53px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: #98255F;
position: absolute;
top: -68px;
z-index: 9;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}

.aboutpage .cis-icon img {
width:30px;
}
.aboutpage .cis-card-header h3 {
font-family: Poppins;
font-weight: 600;
font-size: 18px;
text-align: center;
color: #FFFFFF;
padding-left: 50px;

}

.aboutpage .cis-card-body {
padding: 28px 26px 26px;
}
.aboutpage .cis-card-body p{
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: #6D6D6D;
}
.aboutpage .esg-img{
right: 0;
bottom: 10%;
width:830px;
}
.esg-wrapper{
/* background: url("<?= base_url('frontend/assets/img/esg-bg.png') ?>") no-repeat center / cover; */
}
.aboutpage .esg-wrapper p{
font-family: Poppins;
font-weight: 400;
font-size: 16px;
color:#232323;
}
.aboutpage .yellw-box{
   background: linear-gradient(89.43deg, rgba(255, 166, 181, 0.66) -11.81%, rgba(255, 255, 255, 0.66) 104.28%);
   padding: 6px 6px;
   border-radius: 7px;
}
.aboutpage .yellw-box p{
font-family: Poppins;
font-weight: 500;
font-size: 11px;
color: #353535;
}
/*.aboutpage .infra-header:hover img {
transform: rotate(360deg);
}*/

.aboutpage .infra-header img{
transition: transform 0.6s ease-in-out;
}

.aboutpage .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
 box-shadow: 0px 4px 4px 0px #0000001A;
}

.aboutpage .custom-accordion .accordion-button {
  position: relative;
  background: #F8D0D670;
  border-radius: 8px;
  padding: 22px 24px 22px 80px;
  font-weight: 600;
  font-size: 16px;
  color: #232323;
   box-shadow: 0px 4px 4px 0px #0000001A;
  z-index: 99;
}

.aboutpage .custom-accordion .accordion-button::after {
  background-size: 18px;
  transform: rotate(-90deg);
}

.aboutpage .custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.aboutpage .custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.aboutpage .custom-accordion .left-strip {
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: #98255F;
}

.aboutpage .custom-accordion .icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.aboutpage .custom-accordion .icon img {
  width: 34px;
  height: 34px;
}
.aboutpage .custom-accordion .title{
font-family: Poppins;
font-weight: 500;
font-size: 16px;
color: #232323;
}
.aboutpage .custom-accordion .accordion-body{
font-family: Poppins;
font-weight: 400;
font-size: 16px;
color: #232323;
}
.aboutpage .esg-wrapper .key-heading{
font-family: Poppins;
font-weight: 600;
font-size: 22px;
color: #232323;

}
.aboutpage .esg-wrapper .w-70{
   width: 70%;
   margin-left: auto;
   margin-right: auto;
}

.newsmediasec .certifications {
  padding: 70px 0;
  background: #FDF9E9;
  }
  .newsmediasec .guidelines_bg {
  background-image: url("/frontend/assets/img/bg-about.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
  }
  .newsmediasec .applicationprocessbg{
  background-image: url("/frontend/assets/img/bg-about.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-color: transparent;
  }
  .newsmediasec .page-title h1{box-shadow: 0px 0px 0px 0px #00000000;}
  .newsmediasec .bgformbox{
  background: linear-gradient(90deg, #611556 0%, #762337 100%);
  border-radius:2px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  }
  .newsmediasec .newsmedia img{width:100%;border-radius:5px;}
  .newsmediasec .capability-card.newsmedia{padding:0px!important;}
  .newsmediasec .newsmediacontent{padding:15px;text-align:left;}
  .newsmediasec .news-date{margin-top: 15px;}
  .newsmediasec .highlight-card {
  border-radius: 18px;
  }
  .newsmediasec .newsmedia_box{width:100%; height: 325px;}
  .newsmediasec .newsmedia_box img{width: 100%; height: 100%;}
  .newsmediasec .sideimgnews .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 5px;
  }
  .newsmediasec .service-details .service-sidebar .service-overview-card {
  background-color: var(--surface-color);
  border-radius: 0px;
  padding: 0rem;
  margin-bottom: 0rem;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid
  color-mix(in srgb, var(--default-color), transparent 95%);
  }
.newsmediasec .service-details .service-sidebar .service-overview-card {
  background-color: #ffffff00;
  border-radius: 0px;
  padding: 0rem;
  margin-bottom: 0rem;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid
  color-mix(in srgb, #33333300, transparent 95%);
  }
  .newsmediasec .highlight-card {
  text-align: left;
  }
  .newsmediasec .highlight-card h5{
  font-size: 14px;
  font-weight: 500 !important;
  }
  .newsmediasec .highlight-card p{
  font-size: 10px !important;
  font-weight: 400;
  }
  .newsmediasec .sideimgnews{
  width: 32%;
  height: 145px;
  border-radius: 4px;
  }
  .newsmediasec .sideimgnews img{
  border-radius: 4px;
  }
  .newsmediasec .tophightlight p{font-size: 18px !important;}
  .newsmediasec .tophightlight { 
  position: relative;
  }
  .newsmediasec .pdlr{
  padding: 10px 4px 0px 0px;
  width:60%;
  }
  .newsmediasec .tophightlight p::after {
  content: " ";
  background: #444242b3;
  height: 2px;
  width: 200px;
  position: absolute;
  top: 24%;
  left: 35%;
  }
  .newsmediasec .highlight-card .text-secondary{font-size: 12px !important;}
  .newsmediasec .imagegridesec{height: 180px;margin-bottom: 20px;}
  .newsmediasec .imagegridesec img{width:100%;height:100%;}
  .newsmediasec .pmmitraevent{
  background:#ECD35421;
  }
  .newsmediasec .myVerticalSwiper {
  width: 100%;
  height: 394px; 
  }
  .newsmediasec .swiper-slide {
  font-size: 25px;
  /* background: #eee; */
  /* display: flex; */
  justify-content: center;
  align-items: center;
  } 
  .newsmediasec .pm-event-card{
  display: flex;
  align-items: center;
  background: #faf8ee;
  border-radius: 0px;
  padding: 10px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  width: 100%;
  margin-right: 45px;
  border-bottom:1px solid #2c2c2c;
  }
  .newsmediasec .swiper-slide.swiper-slide-active{ border-top:1px solid #2c2c2c;}
  .newsmediasec .dateslide{
  width: 10%;
  text-align: center;
  margin-right: 20px;
  }
  .newsmediasec .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0%);
  z-index: 1;
  }
  .newsmediasec .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .newsmediasec .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
  font-size: 40px;
  height: 16px;
  width: 16px;
  background: #1a1a1a;
  }
  .newsmediasec .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #1a1a1a;
  height: 16px;
  width: 16px;
  border: 2px solid #faf9f9;
  outline: 2px solid #1a1a1a;
  }
  .newsmediasec .cardeventimg img{width: 160px; height: 110px; object-fit: cover; border-radius: 6px; margin-right: 22px;}
  /* .eventjoin_btn{background: #550049; color: #fff; padding: 7px 22px; border-radius: 6px; font-weight:500; text-decoration:none; font-size:1rem; display:inline-block;} */
  .newsmediasec .eventjoin_btn { background: #550049; color: #fff; padding: 5px 22px; border-radius: 6px; font-weight: 400; text-decoration: none; font-size: 12px; display: inline-block; }
  .newsmediasec .eventdescrption{font-size: 16px; font-weight: 600; color: #292828;}
  .newsmediasec .eventtime{display:flex; align-items:center; color: #a4884c; font-size:12px; margin-bottom: 5px;}
  .newsmediasec .eventday{font-size: 2rem; font-weight: 700; color: #444;}
  .newsmediasec .eventmothyer{color: #7a7266; font-size: 1.08rem;}
  .newsmediasec .myVerticalSwiper .swiper-wrapper {
  position: relative;
  width: 95%;
  }
  .newsmediasec .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  opacity: 1;
  top: initial;
  transition: opacity 0.3s ease;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: start;
  }
  .newsmediasec .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info {
  padding: 0.5rem; text-align: left;
  }
  /* .service-details .portfolio-showcase .project-showcase-item:hover .project-image .project-overlay{opacity: 1;} */
  .newsmediasec .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info h4{color:#fff;font-size: 16px;}
  .newsmediasec .service-details .portfolio-showcase .project-showcase-item .project-image .project-overlay .project-info p{font-size: 14px;margin-bottom: 0.5rem;}
  .newsmediasec .service-details .service-main-content .capabilities-grid .capability-card h4{font-size: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 40px;}
  .newsmediasec .service-details .service-main-content .capabilities-grid .capability-card p{font-size: 14px;    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;overflow: hidden;}
  .newsmediasec .news-date p, .newsmediasec .date_yer{font-size: 12px !important;}
  .newsmediasec .project-showcase-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  }
  .newsmediasec .project-showcase-item .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  }
  .newsmediasec .project-showcase-item .project-image .project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  opacity: 0;
  top: 0;
  transition: opacity 0.3s ease;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
  }
  .project-info .bi.bi-eye{
  color:#fff;
  }
  .newsmediasec .project-showcase-item:hover .project-image .project-overlay {
  opacity: 1;
  }
  .newsmediasec .project-showcase-item:hover .project-image img {
  transform: scale(1.05);
  }

  @media (max-width: 1199px) {
  .newsmediasec .mobile-nav-toggle {
  color: #ffffff;
  }
  }
  @media (max-width: 767px){
    .newsmediasec .container {
        flex-direction: inherit;
    }
  .newsmediasec .contact-wrappera.px-5{padding: 0px !important;}
  .newsmediasec .newsmedia_box {
  width: 100%;
  height: 210px;
  }
  .newsmediasec .imagegridesec {
  height: auto;
  margin-bottom: 20px;
  }
  .newsmediasec .eventdescrption {
  font-size: 11px;
  font-weight: 400;
  color: #292828;
  }
  .newsmediasec .dateslide {
  width: 8%;
  text-align: center;
  margin-right: 15px;
  }
  .newsmediasec .myVerticalSwiper .swiper-wrapper {
  width: 95%;
  }
  .newsmediasec .eventday {
  font-size: 18px;
  }
  .newsmediasec .eventmothyer {
  font-size: 14px;
  }
  .newsmediasec .eventtime {
  font-size: 10px;
  }
  .newsmediasec .cardeventimg img {
  width: 135px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 9px;
  }
  .newsmediasec .sideimgnews {
  width: 38%;
  height: auto;
  border-radius: 4px;
  }
  }
  @media (max-width: 390px) {
  .newsmediasec .cardeventimg img {
  width: 99px;
  height: 75px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 6px;
  }
  .newsmediasec .eventmothyer {
  font-size: 11px;
  }
  .newsmediasec .eventjoin_btn {
  background: #550049;
  color: #fff;
  padding: 2px 15px;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  font-size: 10px;
  display: inline-block;
  }
  }

.latestnewsevent .newssidebar {
    height: 545px;
    overflow-x: hidden;
    margin-top: 10px;
    position: sticky;
    /* right: 70px; */
    top: 8px;
    /* flex: 0 0 33.333333%;
    max-width: 28.333333%; */
    /* z-index: -1; */
  }
  .latestnewsevent .whats_new .colorbar {
      background: linear-gradient(90deg, #611556 0%, #762337 100%);
      border-radius: 4px;
  }
  .latestnewsevent #loadMore {
      width: 125px;
      color: #fff;
      display: block;
      text-align: center;
      margin: 20px auto;
      padding: 5px;
      border-radius: 10px;
      border: 1px solid transparent;
      background-color: #b33a49;
      transition: .3s;
  }
  .latestnewsevent .brd {
      border-bottom: 1px solid #ccc;
      padding-bottom: 2px;
      height: 1px;
      width: 100%;
  }
  .latestnewsevent .mnthdate p {
      padding-left: 15px;color: #b4b0b0;margin: 0px;
      padding: 0px 0px 0px 5px;font-size: 13px;
  }
  .latestnewsevent .mnthdate{width: 100%;text-align: left;}
  .latestnewsevent .latestnewsimg{height:62px;}
  .latestnewsevent .newssidebar img {
      border-radius: 5px !important;
      height: 100%;
  }
  .latestnewsevent .newssidebar a {
      color: #000;
  }
  
  .latestnewsevent .contentab {display: flex;}
  .latestnewsevent .textlatesnews{text-align: justify;}
  /* .imagesectionnews{height:422px;} */
  .latestnewsevent .imagesectionnews img{height:100%; width: 100%;}
  .latestnewsevent .fnt_mm p a{font-size: 14px;color: #0d6efd;}
  .latestnewsevent .textlatesnews p, .latestnewsevent .newscontainer{font-weight: 400;font-size: 16px;color: #232323;}
  .latestnewsevent .shareicons ul{display: flex;gap: 10px;padding-left: 0px;}
  .latestnewsevent .shareicons ul li{list-style:none;}
  .latestnewsevent .facebookshare{background: #2f81fa;color: #fff;padding: 2px 8px;border-radius: 4px;font-size: 12px;}
  .latestnewsevent .twittershare{background: #1f1f1f;color: #fff;padding: 2px 8px;border-radius: 4px;font-size: 12px;}
  /* .nav-link{width:77%;} */
  .latestnewsevent .newssidebar .nav-item{width: 100%;}
  .latestnewsevent .newssidebar .nav-pills .nav-link.active{color: var(--bs-nav-pills-link-active-color);background-color: #0d6efd05;}
  .latestnewsevent .newssidebar .contentab{color:#000;}
  .latestnewsevent .newssidebar .nav-pills .nav-link.active{background-color:#6a1b49;}
  .latestnewsevent .newssidebar .nav-pills .nav-link.active .contentab, .latestnewsevent .newssidebar .nav-pills .nav-link.active .mnthdate p{color:#fff;}

.resourcesec .porject_details_paragraph h3 {
      font-size: 22px;
      font-weight: normal !important;
      letter-spacing: 1px;
      margin-bottom: 0;
      background:#67194d;
      padding: 6px 15px;
      color: #fff;
    }
    .resourcesec .themebox_shadow {
        background: #fff;
        box-shadow: 0 6px 25px -12px rgb(0 0 0 / 25%);
        padding: 0 0 20px 0;
        position: relative;
        z-index: 1;
        border-radius: 15px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        -o-border-radius: 15px;
    }
    .resourcesec .section-content {
        padding: 10px;
    }
  
    .resourcesec .detailbox_shadow {
        background: whitesmoke;
        padding: 1.5% 3% 2.2%;
        position: relative;
        z-index: 1;
        border-radius: 15px;
        -moz-border-radius: 15px;
        -webkit-border-radius: 15px;
        -o-border-radius: 15px;
        margin-bottom: 0px;
        border: 1px solid #d7d7d7;
    }
    .resourcesec .detail_colm_heading {
        /* background-color: #4b6fa3; */
        background-color: #091E3E;
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
        margin-top: 10px;
        border-radius: 10px;
        padding: 5px;
        color: #fff;
    }
    .resourcesec .detail_colm {
        background-color: #fff;
        box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
        margin-top: 10px;
        border-radius: 10px;
        padding: 5px;
    }
    .resourcesec .breadcrumb {justify-content:center;}
   .resourcesec .resourcesbg {
      background-image: url("/frontend/assets/img/contact_us.jpg");
      background-repeat: no-repeat;
      background-size:100% 100%;
      background-position:center;
      background-color: transparent;
      height:495px;
      position: relative;
      padding-top:88px;
   }
   .resourcesec .resource-banner{
    background: linear-gradient(90deg,#eef4ff,#fff3e3);
    padding:50px 0;
}
.resourcesec .resource-banner h1{
    font-weight:700;
}
.resourcesec .resource-banner p{
    max-width:500px;
}

/* Filter */
.resourcesec .filter-box{
    background:#fff;
    border-radius:14px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top:-40px;
    position:relative;
    z-index:1;
    margin-top: 12px;
}

/* Section heading */
.resourcesec .section-title{
    font-weight:700;
    margin:35px 0 15px;
}

/* Resource Card */
.resourcesec .resource-card{
    background:#fff;
    border-radius:14px;
    padding:18px;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    margin-bottom:18px;
}
.resourcesec .file-icon{
    width:44px;
    height:44px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
}
/* .pdf{background:#e74c3c;} */
.resourcesec .doc{background:#3498db;}

.resourcesec .meta{
    font-size:13px;
    color:#6c757d;
}
.resourcesec .btn-view{
    background:#f7931e;
    color:#fff;
    border:none;
}
.resourcesec .btn-download{
    background:#e6f4ea;
    color:#2e7d32;
    border:none;
}
.resourcesec .btn-view:hover{background:#e67e00;}
.resourcesec .btn-download:hover{background:#d8efdd;}
.resourcesec .whos_who {
      padding-top: 11px;
    /* background-image: url(/frontend/assets/img/resources-bg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.resourcesec .filter-box .btn.btn-success{background: linear-gradient(90deg, #6d0f4b, #8b1b5e);}

.resourcesec .resource-new-box  img{
    height: 200px;
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
    object-position: top;
    border: 1px solid #D9D9D9;
    margin-bottom: 10px;
}
.resourcesec .resource-new-box{
    border: 1px solid #D4D4D4;
    box-shadow: 0px 4px 4px 0px #0000001F;
    padding: 10px;
    border-radius: 8px;
    background: #FFFFFF;
     /* overflow: hidden; */
     height: auto;
     position: relative;  
     margin-bottom: 15px;
}
.resourcesec .resource-content span{
font-family: Poppins;
font-weight: 500;
font-size: 10px;
color: #000000;
background: #F8D0D6;
padding: 2px 10px;
border-radius: 10px;
}
.resourcesec .resource-content p{
font-family: Poppins;
font-weight: 400;
font-size: 14px;
color:#000000;
padding-top: 10px;
}
.resourcesec .resource-new-box button{
background: #E6F4EA;
border: 1px solid #CBE0D1;
font-family: Poppins;
font-weight: 600;
font-size: 12px;
color:#4A6D54;
border-radius: 2px;
}

.resourcesec .resource-new-box img {
  width: 100%;
  transition: transform 0.6s ease;
  will-change: transform; 
}

.resourcesec .resource-new-box:hover img {
  transform: scale(1.04);
}
.resourcesec .resource-wrapper h3{
 font-family: Poppins;
font-weight: 600;
font-size: 40px;
text-align:left;
color: #232323;
}
.resourcesec .state-documents{
padding: 2px 12px;
border-radius: 8px; 
box-shadow: 0px 4px 9.9px 0px #0000005E;


}
.resourcesec .state-documents span{
    font-family: Poppins;
    font-weight: 600;
    font-size: 17px;
    color: #494949;
}
.resourcesec .state-documents h3{
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
    color: #8b1e58;
}
.resourcesec .state-documents p{
    font-family: Poppins;
    font-weight: 700;
    font-size: 14px;
    color: #242424;
}
.resourcesec .state-documents.bg-1{
background-color: #f5d1dd6e;
}
.resourcesec .state-documents.bg-2{
background-color: #f5d1dd6e;

}
.resourcesec .state-documents.bg-3{
background-color: #f5d1dd6e;

}
.resourcesec .state-documents.bg-4{
background-color: #f5d1dd6e;
}

.resourcesec .state-documents {
    /* width: 100%; */
    /* transition: transform 0.6s ease; */
    /* will-change: transform; */
    margin-bottom: 15px;
}

.resourcesec .state-documents:hover{
  transform: scale(1.04);
}
.resourcesec .btn-btm{
    position: absolute;
    bottom: 6px;
    right: 10px;
}
.resourcesec .resource-content{
    margin-bottom: 35px;
}

.visitorcountersec{
    text-align: center;
    width: 100%;
    box-shadow: 1px 1px 20px 19px #7a1d50;
    border-radius: 10px;
    padding: 20px 0px;
}
.visitor-counter {
    display: flex;
    align-items: center;
    background: #eaeaea;
    padding: 2px 10px;
    border-radius: 10px;
    width: fit-content;
}

.visitor-counter .icon {
  font-size: 28px;
  margin-right: 10px;
  color: #781d4f;
}


.visitor-counter .counter {
  display: flex;
  gap: 5px;
}
.visitor-counter .digit{
    background: linear-gradient(#7e1d52, #8a1f58);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: inset 0 -3px 5px rgb(142 31 90);
}
.visitor-counter .icon .bi-people-fill::before {
    font-size: 35px;
    margin-bottom: 0px;
    padding: 0px;
    position: relative;
    top: 4px;
}

.filteredResourceDocumentSection{justify-content: center;}
.defaultfilteredResourceDocumentSectionMsg{
    background: #861e56;
    width: fit-content;
    justify-content: center;
    display: flex;
    color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
}
.pill:hover {
    background: linear-gradient(90deg, #96205E 0%, #6A1B48 100%) !important;
}

.big-circle.aos-init.aos-animate:hover {
    background: #f4a3b3;
}
.small-circle.aos-init.aos-animate:hover {
    background: #8b1c4a;
}
.small-circle.aos-init.aos-animate:hover p{
   color:white;
}
.small-circle.aos-init.aos-animate:hover h5{
   color:white;
}
.border_right{
  border-right: 2px dotted #dacfcf;

}
.sm_location { pointer-events: none; }
.sastainable {
    background-image: url(/frontend/assets/img/bga-sastainbilty.png) !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-color: transparent;
    height: 495px;
    position: relative;
    padding-top: 88px;
}
.sastainableop {
    background-image: url(/frontend/assets/img/photos/gallery_banner.png) !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-color: transparent;
    height: 100%;
    position: relative;
    padding-top: 88px;
    object-fit: cover;
    height: 432px;
}
.sastainabledata .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: linear-gradient(90deg, #611556 0%, #762337 100%);
    color: #fff;
    border-radius: 10px 10px 0px 0px;
    padding: 10px 50px;
    font-size: 20px;
}
.sastainabledata .nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
    background: white;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #e5e2e2;
    color: black;
    padding: 10px 50px;
    font-size: 20px;
}
.pdl{padding-left: 0px !important;}
.pdr{padding-right: 0px !important;}
.rightimg img, .leftimg img{
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.circle-wrapper .circle-img, .pdr .card-section, .pdl .card-section{transition: all 0.3s ease;}
.circle-wrapper .circle-img:hover, .pdr .card-section:hover, .pdl .card-section:hover{transform: scale(1.05);}
.rightimg img:hover, .leftimg img:hover{
  transform: translateY(-8px);
}

/*****opportunities** start*****/

.opportunitiespage .certifications {
      padding: 70px 0;
      background: #FDF9E9;
   }

   .opportunitiespage .allsepratebga {
      background-image: url(../img/opportunities_banner.jpeg);
      height: 100%;
      background-attachment: fixed;
      /* background-repeat: no-repeat; */
      /* background-size: cover; */
   }

   @media (max-width: 767px) {

      .opportunitiespage .contact-wrapper.px-5 {
         padding: 0px !important;
      }

      .opportunitiespage .contact .contact-info-panel {
         padding: 0px;
      }

      .opportunitiespage .contact .form-container {
         padding: 44px 2px;
      }
   }

   /************opportunities new@nil************** */
   /* Section header */
   /* Main cards */
   .opportunitiespage .opportunities_hub .op-card {
      border: 0;
 
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      transition: .25s ease;
      text-align: left;
   }

   .opportunitiespage .opportunities_hub .op-card:hover {
      transform: translateY(-6px);
   }

 
   .opportunitiespage .opportunities_hub .op-head {
      background: #fde9ef;
      padding: 12px 16px;
      border-radius: 10px 10px 0px 0px;
      display: flex;
      align-items: center;
      gap: 10px;
   }
.opportunitiespage .opportunities_hub .op-head h6 {
    color: #98255F;
    font-size: 23px;
    margin-bottom: 13px !important;
}
.op-head small{
  font-size: 17px;
    font-weight: 600;
}
   .opportunitiespage .opportunities_hub .op-head .icon-circle {
      transition: transform 0.6s ease-in-out;
   }

   /*.opportunitiespage .opportunities_hub .op-head:hover .icon-circle {
      transform: rotate(360deg);
   }*/

   .opportunitiespage .opportunities_hub .icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #a3266d00;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
   }

   .opportunitiespage .opportunities_hub .op-list {
      list-style: none;
      padding: 0;
      margin-bottom: 18px;
   }

   .opportunitiespage .opportunities_hub .op-list li {
      padding: 6px 0;
      color: #555;
      transition: all 0.3s ease;
   }

   .opportunitiespage .opportunities_hub .op-list li:hover {
      transform: translateX(6px);
   }

   .opportunitiespage .opportunities_hub .op-list i {
      color: #a3266d;
      margin-right: 8px;
   }

   .opportunitiespage .opportunities_hub .btn-theme {
      background: #a3266d;
      color: #fff;
      border-radius: 8px;
      padding: 8px 16px;
      cursor: auto;
   }

   .opportunitiespage .opportunities_hub .btn-theme:hover {
      background: #8c205b;
      color: #fff;
   }

   .opportunitiespage .opportunities_hub .mini-card {
      background: #fff;
      border-radius: 12px;
      padding: 15px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 12px;
      transition: 0.3s;

   }

   .opportunitiespage .opportunities_hub .mini-card:hover {
      transform: translateY(-5px);
   }

   .opportunitiespage .opportunities_hub .mini-card .icon-circle_invest {
      transition: transform 0.6s ease-in-out;
   }

   .opportunitiespage .opportunities_hub .mini-card:hover .icon-circle_invest {
      transform: rotate(360deg);
   }

   .opportunitiespage .opportunities_hub .mini-left {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
   }

   /* Latest panel */
   .opportunitiespage .opportunities_hub .latest-panel {
      background: #fff;
      border-radius: 14px;
      padding: 20px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
   }

   .opportunitiespage .opportunities_hub .latest-item {
      background: #fde9ef;
      border-radius: 10px;
      padding: 14px;
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
   }

   .opportunitiespage .opportunities_hub .latest-item p {
      margin-bottom: 0px;
   }

   .opportunitiespage .opportunities_hub .latest-item .content_sec_list {
      text-align: left;
      transition: all 0.3s ease;
   }

   .opportunitiespage .opportunities_hub .latest-item .content_sec_list:hover {
      transform: translateX(6px);
   }

   .opportunitiespage .opportunities_hub .invester_sec {
      border-radius: 0px 0px 10px 10px;
      padding: 22px;
      background: #fff;
   }

   .opportunitiespage .icon-circle_invest {
      width: 45px;
      height: 45px;
      padding: 10px;
      border-radius: 50%;
      background: #a3266d;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
   }


  .sustainablepage .certifications {
   padding: 70px 0;
   background: #FDF9E9;
   }

.sustainablepage .head_title{
    text-align:center;
    margin-bottom:50px;
}

.sustainablepage .head_title p{
    color:#666;
    max-width:700px;
    margin:auto;
    font-size: 18px;
}

.sustainablepage .env-card{
    background:#fff;
    padding:15px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    height:100%;
    position:relative;
    transition:0.3s;
    text-align: left;
}
.sustainablepage .env-card:hover{
    transform:translateY(-5px);
}
.sustainablepage .env-card:hover .env-icon{ transform: rotate(360deg);}

.sustainablepage .env-icon{
    width:55px;
    height:55px;
    background:#8e1f63;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
    transition: transform 0.6s ease-in-out;
}

.sustainablepage .circle-wrapper{
    position:relative;
    width:400px;
    height:400px;
    margin:auto;
}

.sustainablepage .circle-outer{
    width:100%;
    height:100%;
    border-radius:50%;
    background:conic-gradient(
        #6ab04c 0deg 90deg,
        #7ed957 90deg 180deg,
        #6ab04c 180deg 270deg,
        #7ed957 270deg 360deg
    );
    display:flex;
    align-items:center;
    justify-content:center;
}

.sustainablepage .circle-inner{
    width:260px;
    height:260px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 20px rgba(0,0,0,0.1);
}

.sustainablepage .circle-inner img{
    width:120px;
}
.sustainablepage .circle-label{
    position:absolute;
    font-weight:600;
    color:#fff;
    font-size:18px;
}

.sustainablepage .label-energy{ top:20px; left:50%; transform:translateX(-50%); }
.sustainablepage .label-water{ right:-10px; top:50%; transform:translateY(-50%) rotate(90deg); }
.sustainablepage .label-recycling{ bottom:20px; left:50%; transform:translateX(-50%) rotate(180deg); }
.sustainablepage .label-ecosystem{ left:-10px; top:50%; transform:translateY(-50%) rotate(-90deg); }



.sustainablepage .economic-section{
    padding:80px 0;
}

.sustainablepage .economic-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:40px;
}

.sustainablepage .image-wrapper{
    position:relative;
}

.sustainablepage .image-main{
    width:100%;
    border-radius:12px;
    border:6px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.sustainablepage .image-small{
    position: absolute;
    bottom: -170px;
    left: -32px;
    width: 70%;
    height: 86%;
    border-radius: 12px;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Content Boxes */
.sustainablepage .content-box{
    background: linear-gradient(to right, #fff, #efefef57);
    padding:20px 25px;
    border-radius:8px;
    margin-bottom:20px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    text-align: left;
}

.sustainablepage .content-box i{
    color:#a12c5b;
    font-size:20px;
    margin-top:4px;
}

.sustainablepage .content-box p{
    margin:0;
    color:#555;
    line-height:1.6;
}
.sustainablepage .content-box p {
    transition: all 0.3s ease;
}
.sustainablepage .content-box p:hover {
    transform: translateX(6px);
}

/* Section */
/* Left Content Card */
.sustainablepage .infrastructure-card{
    background: linear-gradient(to right, #fff, #efefef57);
    border-radius:10px; position:relative;
}

/* Top Pink Label */
.sustainablepage .infrastructure-card .top-label{
    background: linear-gradient(to right, #e6cbd3, #e6cbd392);
    color: #9a2f58;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    font-size: 18px;
}

/* List */
.sustainablepage .infrastructure-list{
    list-style: none;
    margin: 0;
    padding: 15px;
}
.sustainablepage .infrastructure-list li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    color:#555;
    text-align: left;
    transition: all 0.3s ease;
}
.sustainablepage .infrastructure-list li:hover{
    transform: translateX(6px);
}
.sustainablepage .infrastructure-list li i{
    color:#9a2f58;
    margin-top:3px;
}
.sustainablepage .infrastructure-list strong{
    color:#222;
}

/* Right Image */
.sustainablepage .infrastructure-image img{
    max-width:100%;
    height:auto;
    transition: 0.3s;

}
.sustainablepage .infrastructure-image img:hover{
  transform: translateY(-7px);
}

/* Responsive */


/* Section */
.sustainablepage .social-section{
    padding:80px 0;
}

/* Card */
.sustainablepage .social-card{
    background:#fff;
    border-radius:10px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
    text-align: left;
}
.sustainablepage .social-card:hover{
    transform:translateY(-5px);
}

/* Icon Circle */
.sustainablepage .social-icon{
    width:60px;
    height:60px;
    background:#9a2f58;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:15px;
    transition: transform 0.6s ease-in-out;
}
/*.sustainablepage .social-card:hover .social-icon{
  transform: rotate(360deg);
}*/

.sustainablepage .social-card h5{
    font-weight:700;
    color:#9a2f58;
    margin-bottom:10px;
}

.sustainablepage .social-card p{
    color:#555;
    margin:0;
    font-size:17px;
    line-height:1.6;
}

.sustainablepage .bottom-row{
    margin-top:30px;
}

.sustainablepage .envmt-card{
    display:flex;
    /* background:#fff; */
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}
.sustainablepage .envmt-card:hover{
    transform:translateY(-5px);
}
.sustainablepage .image-stack img{transition:0.3s;}
.sustainablepage .image-stack img:hover{transform:translateY(-5px);}

.sustainablepage .env-icon-box{
    /* width:120px; */
    background:#F8D0D670;
    display:flex;
    align-items:center;
    justify-content:center;
}
.sustainablepage .env-icon-box i{
    font-size:40px;
    color:#9a2f58;
}
.sustainablepage .envmt-card .env-icon-box img{transition: transform 0.6s ease-in-out;}
/*.sustainablepage .envmt-card:hover .env-icon-box img{transform: rotate(360deg);}*/

/* Content Area */
.sustainablepage .env-content{
    padding:25px; text-align: left; background: #fff;
}
.sustainablepage .env-content h4{
    color:#9a2f58;
    font-weight:700;
    margin-bottom:15px;
}
.sustainablepage .env-content strong{
    color:#222;
}
.sustainablepage .env-content p{
    margin: 0;
    color: #000000;
    line-height: 1.6;
    font-size: 18px;
}



/*************Economic Performance**************** */
     .sustainablepage .contentsection {
        padding: 20px 15px;
        border-bottom: 2px solid #d5cccc;
        text-align: left;
        background: linear-gradient(to right, #fff, #efefef57);
    }

    .sustainablepage .contentsection:last-child {
        border-bottom: none;
    }

    .sustainablepage .contentsection h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        color: #2b2b2b;
        transition: all 0.3s ease;

    }

    .sustainablepage .contentsection p {
        margin: 6px 0 0;
        font-size: 15px;
        color: #777;
    }
  .sustainablepage .infrastructure-section-wrapper .content .card-body {
    text-align: left;
  }
    .sustainablepage .contentsection h3, .sustainablepage .contentsection p, .sustainablepage .infrastructure-section-wrapper .content .card-body{transition: all 0.3s ease;}
     .sustainablepage .contentsection h3:hover, .sustainablepage .contentsection p:hover, .sustainablepage .infrastructure-section-wrapper .content .card-body:hover {
       transform: translateX(6px);
     }

.sustainablepage .infrastructure-section-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

/* Header */
.sustainablepage .header {
    text-align: center;
    margin-bottom: 50px;
}

.sustainablepage .header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
}

.sustainablepage .header p {
    margin-top: 12px;
    font-size: 16px;
    color: #777;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.sustainablepage .content {
    display: flex;
    gap: 60px;
    align-items: center;
}
.sustainablepage .image-stack {
    position: relative;
    width: 400px;
}
.sustainablepage .image-stack img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.sustainablepage .image-stack img.second {
    position: absolute;
    width: 75%;
    bottom: -40px;
    right: -40px;
    transition: all 0.3s ease;
}
.sustainablepage .image-stack img.second:hover {
    transform: scale(1.05); 
}

.sustainablepage .cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.sustainablepage .card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.sustainablepage .card-header {
    background: #f7d7e3;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    color: #b03060;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sustainablepage .card-body {
    padding: 20px;
    color:black;
    line-height: 1.6;
    font-size: 18px;
}

.sustainablepage .Social_section .social-card{
    border:none;
    border-radius:14px;
    padding:15px;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
    transition:all .25s ease;
    text-align: left;
}
.sustainablepage .Social_section .social-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(0,0,0,0.08);
}
.padtop{padding-top: 20px;}
/* Icon circle */
.sustainablepage .Social_section .icon-circle{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#a3266d;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
}

/* Card text */
.sustainablepage .Social_section .social-card h5{
    color:#a3266d;
    font-weight:600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 5px;
    line-height: normal;
}
.sustainablepage .Social_section .social-card p{
    color:#6c757d;
    font-size:14px;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; 
}

/* Image */
.sustainablepage .Social_section .card-img-custom{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:8px;
}
.sustainablepage .socialcontent{text-align:left; padding: 15px 0px;height: 140px;}
.sustainablepage .Social_section .card.social-card .icon-circle{transition: transform 0.6s ease-in-out;}
/*.sustainablepage .Social_section .card.social-card:hover .icon-circle{transform: rotate(360deg);}*/
.sustainablepage .Social_section .card.social-card img{transition: all 0.3s ease;}
.sustainablepage .Social_section .card.social-card img:hover{transform: scale(1.05);}

.sustainablepage .infrastructure-section-wrapper .cards .card .card-header img{transition: transform 0.6s ease-in-out;}
/*.sustainablepage .infrastructure-section-wrapper .cards .card .card-header:hover img{transform: rotate(360deg);}*/
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 51px;
    background: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffffe8;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.video_thumnail .video-box img {
       width: 100%;
    height: 100%;
    border-radius: 10px;
}

.toppmimg img {
    transition: transform 0.4s ease;
    overflow: hidden;
}
.video_thumnail .triangle {
    width: 0;
    height: 0;
    border-left: 14px solid #7f1d52;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgb(255 255 255 / 90%);
    animation: pulse 1.8s infinite;
    z-index: -1;
}
.video_thumnail .video-box {
        position: absolute;
    overflow: hidden;
    padding: 5px;
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    display: inline-block;
    object-fit: cover;
    height: 146px;
    margin-top: 10px;
    border-radius: 15px;
}
  

.aboutlft img {
  height: 340px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    background: transparent;
    position: relative;
}
.aboutlft{position: relative;}
.aboutlft:before{
      content: '';
    position: absolute;
    width: 92%;
    height: 100%;
    background: #F8D0D68C;
    bottom: -26px;
    right: -20px;
    border-radius: 10px;
}
.mapheadingnew{
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    line-height: 141%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 7px;
}
.state_goverment{
      margin: 0;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 11px;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 141%;
    letter-spacing: 0%;
}
.topparacontent{
border-radius: 8px;

}