@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url("https://fonts.googleapis.com/css?family=Abril+Fatface&display=swap&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Muli:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Shadows+Into+Light&display=swap");
:root {
  --default-font: "Muli", sans-serif;
  --heading-font: "Abril Fatface", cursive;
  --nav-font: "Rubik", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #151616; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #dd2b1c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dd2b1c; /* 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: #d9d9da; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #151616; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #dd2b1c; /* 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: #f1f6f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #151616;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2e2b28;
  --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(--default-color);
    font-family: "Abril Fatface", cursive;
    font-weight: 400;
    text-transform: capitalize;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #ffffff;
    text-transform: capitalize;
    background-color: #ff6015;
    transition: 0.5s;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.default-btn span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #2f2c52;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
}
.default-btn:hover {
  color: #ffffff;
}
.default-btn:hover span {
  width: 225%;
  height: 562.5px;
}
.default-btn i {
  font-size: 14px;
  line-height: normal;
  margin-left: 4px;
  position: relative;
  top: 1px;
}

 .read-more-btn {
    color: #ff6015;
    text-decoration: none;
    font-weight: 500;
  }

  .read-more-btn:hover {
    text-decoration: underline;
    color:#443f6c;
  }


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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: #dd2b1c;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 16px;
  padding: 8px 35px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border:2px solid var(--accent-color);
}

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

@media (max-width: 1200px) {
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}
@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;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--accent-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 svg {
    height: 16px;
    padding-right: 10px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 18px 15px;
    font-size: 15px;
    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: var(--accent-color);
  }

  .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,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--accent-color);
  }

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

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

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

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

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

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

  .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(--default-color), transparent 10%);
    color:var(--contrast-color);
  }

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
   /*background: rgba(167, 143, 147, 1.0);
background: radial-gradient(at left top, rgb(44, 32, 34), rgb(34, 28, 28)); */
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-image: linear-gradient(
              rgba(0,0,0,0.5), 
              rgba(0,0,0,0.5)
            ),url('../images/footer-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: rgba(167, 143, 147, 1.0);
background: radial-gradient(at left top, rgba(167, 143, 147, 1.0), rgba(148, 1, 3, 1.0));
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--contrast-color);
}

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

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: var(--contrast-color);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.footer .footer-bottom .copyright .sitename{
  color:var(--accent-color)
}
@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

/*--------------------------------------------------------------
# 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: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;      /* vertical align */
  justify-content: flex-start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  padding-left: 40px;
  padding-right: 40px;
}

/* DARK OVERLAY */
.page-title .overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(12, 12, 12, 0.45); */
  z-index: 1;
}

/* TEXT */
.page-title .container {
  position: relative;
  z-index: 5;
}

.page-title .heading-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.page-title .breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  padding: 0 10px;
  color: #ddd;
}

.page-title .breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

/* Unique background for About Page */
.about-page .page-title {
 background-image: url('../images/about-bg.webp');
}
.trutees-page .page-title{

  background-image: url('../images/trustee-bg.png');
}
.team-page .page-title {
  background-image: url('../images/team-bg.png');
}
.governance-page .page-title{
  background-image: url('../images/goverance-bg.webp');
}
.report-page .page-title{
   background-image: url('../images/page-title.png');
}
.impact-page .page-title{
  background-image: url('../images/impact-bg.png');
}
.stakeholder-page .page-title{
  background-image: url('../images/stakeholder-bg.png');
}
.our-work-page .page-title{
  background-image: url('../images/page-title.png');
}
.project-drushti-page .page-title {
 background-image: url('../images/drishti-bg.webp');
}
.project-aarogya-page .page-title {
   background-image: url('../images/aarogya-bg.webp');
}
.project-sabla-page .page-title {
 background-image: url('../images/sabla-bg.webp');
}
.project-jan-jagruti-page .page-title {
  background-image: url('../images/jan-jagruti-bg.webp');
  /* mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 600"><path fill-rule="evenodd" clip-rule="evenodd"  d="M0 434.474V0H1920V599.565C1920 599.565 1915.6 589.879 1909.61 589.276C1902.9 588.6 1903.08 597.779 1896.62 599.565C1885.78 602.562 1881.9 589.144 1870.65 587.873C1863.58 587.074 1859.16 591.486 1852.47 589.276C1846.14 587.184 1846.07 575.88 1840 578.519C1836.71 579.951 1838.41 585.005 1834.81 585.534C1832.2 585.916 1831.14 583.723 1828.57 583.196C1820.63 581.568 1813.35 595.379 1808.83 589.276C1807 586.802 1808.71 584.468 1807.27 581.793C1801.85 571.72 1792.79 600.586 1780.78 597.694C1773.29 595.891 1773.77 587.157 1766.23 585.534C1759.34 584.051 1755.64 588.776 1748.57 589.276C1737.93 590.029 1731.8 588.235 1721.56 585.534C1713.79 583.485 1710.42 577.982 1702.34 578.519C1697.86 578.817 1695.82 580.953 1691.43 581.793C1683.29 583.349 1677.79 584.715 1670.13 581.793C1659.04 577.561 1664.24 563.318 1653.51 558.409C1646.39 555.157 1639.93 559.988 1633.25 556.07C1624.87 551.164 1632.85 534.835 1622.86 535.025C1615.68 535.161 1613.17 540.777 1609.35 546.249C1606.04 550.994 1604.16 559.812 1604.16 559.812C1604.16 559.812 1596.81 569.527 1589.61 572.439C1571.39 579.811 1560.76 532.774 1547.53 546.249C1544.35 549.493 1546.57 555.39 1541.82 556.07C1538.5 556.545 1537.25 551.943 1534.03 552.797C1529.36 554.035 1534.63 559.671 1534.03 564.021C1532.54 574.807 1530.64 582.689 1521.04 589.276C1511.54 595.79 1502.34 597.058 1490.91 593.953C1484.28 592.152 1482.63 586.753 1475.84 585.534C1472.06 584.856 1469.68 586.481 1465.97 585.534C1459.35 583.843 1460.39 574.178 1453.51 574.31C1450.49 574.368 1449.18 576.05 1446.23 576.648C1424.62 581.047 1431.4 535.85 1409.35 537.831C1403.16 538.387 1400.5 542.779 1394.29 542.508C1388.83 542.27 1386.75 537.573 1381.3 537.831C1373.12 538.218 1373.2 547.477 1365.71 550.458C1347.38 557.76 1338.56 524.78 1319.48 530.348C1313.42 532.116 1311.54 536.149 1305.45 537.831C1282.41 544.199 1286.41 496.989 1262.34 498.078C1245.7 498.831 1239.26 529.755 1227.01 519.592C1222.94 516.212 1225.79 508.559 1220.26 508.367C1216.21 508.227 1215.33 511.961 1211.95 513.979C1181.33 532.258 1143.84 493.339 1117.92 516.785C1114.06 520.283 1114.3 525.077 1109.09 526.607C1102.45 528.557 1099.35 516.993 1092.99 519.592C1088.11 521.585 1090.39 527.297 1086.23 530.348C1079 535.661 1071.33 532.597 1062.34 530.348C1052.04 527.771 1048.85 512.149 1039.48 516.785C1034.89 519.056 1036.39 524.529 1031.69 526.607C1027.32 528.539 1023.93 525.495 1019.22 526.607C1011.68 528.387 1010.97 535.462 1003.64 537.831C995.998 540.298 989.903 534.206 982.857 537.831C979.121 539.753 978.504 542.517 975.065 544.846C962.047 553.665 947.994 541.411 933.507 548.12C926.687 551.278 925.511 557.882 917.922 558.877C910.684 559.825 907.517 554.088 900.26 553.264C890.465 552.153 885.159 557.782 875.325 557.006C868.854 556.495 865.664 554.001 859.221 553.264C852.781 552.529 849.083 553.011 842.597 553.264C829.927 553.76 822.261 561.023 810.39 557.006C796.831 552.418 800.649 536.786 788.052 530.348C770.73 521.496 752.581 544.486 737.143 533.154C733.016 530.125 732.607 526.635 728.312 523.801C717.349 516.566 706.727 526.644 693.507 523.801C680.976 521.105 674.314 503.881 663.896 510.706C661.103 512.536 661.49 515.89 658.182 516.785C653.548 518.04 652.583 511.321 647.792 510.706C641.592 509.909 639.484 517.292 633.247 516.785C625.102 516.124 625.189 498.741 618.701 503.223C616.737 504.58 617.372 507.089 615.065 507.9C611.658 509.097 610.819 504.029 607.273 503.223C602.875 502.223 600.376 504.903 595.844 505.093C585.571 505.525 580.386 496.839 570.39 499.014C565.007 500.185 563.444 504.72 557.922 505.093C551.493 505.528 548.788 501.289 542.857 499.014C524.026 491.79 513.947 484.105 493.507 483.113C477.254 482.324 468.672 491.034 452.468 489.66C435.777 488.245 422.247 463.37 412.468 475.63C409.474 479.383 411.444 483.194 408.312 486.854C399.266 497.423 387.03 473.153 372.468 475.63C366.656 476.618 364.316 481.39 358.442 480.774C353.842 480.292 352.516 476.737 348.052 475.63C340.556 473.77 334.887 474.232 328.312 477.968C325.519 479.555 325.371 482.887 322.078 483.113C318.476 483.359 318.023 479.446 314.805 477.968C311.255 476.337 308.75 474.592 304.935 475.63C301.774 476.49 301.509 479.209 298.701 480.774C290.768 485.198 283.891 482.691 274.805 480.774C267.465 479.226 264.673 473.432 257.143 473.759C250.346 474.054 248.356 481.042 241.558 480.774C231.955 480.396 233.692 467.14 224.416 464.873C215.057 462.586 209.562 474.107 200.519 470.953C194.766 468.946 194.698 463.45 189.091 461.132C177.999 456.545 169.698 473.841 158.961 468.615C152.322 465.383 154.394 457.414 147.532 454.584C138.31 450.781 132.705 460.369 122.597 461.132C118.352 461.452 115.898 460.54 111.688 461.132C106.807 461.818 104.654 465.331 99.7403 464.873C93.0203 464.247 93.3733 455.798 86.7533 454.584C81.0158 453.532 78.0408 458.316 72.2078 457.858C61.8828 457.046 62.0596 440.377 51.9481 442.424C48.5834 443.106 47.5326 445.535 44.1558 446.166C35.4499 447.793 33.8922 436.999 25.4545 434.474C16.0215 431.651 0 434.474 0 434.474Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center; 
   mask-size: cover; */
}
.project-manav-shelter-page .page-title{
  background-image: url('../images/manav-shelter-bg.webp');
}
.project-gram-mitra-page .page-title {
  background-image: url('../images/gram-mitra-bg.webp');
}
.project-disha-page .page-title {
  background-image: url('../images/disha-bg.webp');
}

.event-page .page-title {
  background-image: url('../images/event-bg.webp');
}
.award-page .page-title {
  background-image: url('../images/award-bg.webp');
}

.monthly-giving-page .page-title,
.gift-in-kind-page .page-title,
.corporate-partnership-page .page-title,
.foreign-contribution-page .page-title,
.contact-page .page-title,
.gallery-page .page-title{
  background-image: url('../images/page-title.png');
}



/* RESPONSIVE */
@media (max-width: 1200px) {
  .page-title {
    height: 380px;
  }
  .page-title .heading-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .page-title {
    height: 350px;
    background-position: 80% center;
  }
  .page-title .heading-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-title {
    height: 300px;
    padding-left: 20px;
  }
  .page-title .heading-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .page-title {
    height: 260px;
    padding-left: 15px;
  }
  .page-title .heading-title {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

/* BACKGROUND TEXT FIX */
.section-title .bg-title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 52px;
  font-weight: 700;
  color: rgba(0,0,0,0.06); /* subtle */
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 0;
}

.section-title h2, 
.section-title p,
.section-title .icon-thumb {
  position: relative;
  z-index: 5; /* text & icons always on top */
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title p {
  margin-bottom: 0px;
}

/* ICON + LINES */
.section-title .icon-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 0px;
}

/* Bootstrap icon */
.section-title i {
  font-size: 26px;
  color: var(--accent-color);
}

/* Lines container */
.section-title .icon-thumb-single {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.section-title .icon-thumb /* MAIN ICON CONTAINER */
.donation-img {
  width: 100%;       
  height: auto;
  display: block;
  margin: 0 auto;
}


/* Left lines */
.section-title .icon-thumb-single.left {
  align-items: flex-end;
}

/* Right lines */
.section-title .icon-thumb-single.right {
  align-items: flex-start;
}

/* Main long line */
.section-title .icon-thumb-single span {
  width: 70px;
  height: 2px;
  background-color: var(--accent-color);
}

/* Short line */
.section-title .icon-thumb-single span:nth-child(2) {
  width: 50px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 575px) {

  .section-title .bg-title {
    font-size: 36px;
    top: -5px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title .icon-thumb-single span {
    width: 55px;
  }

  .section-title .icon-thumb-single span:nth-child(2) {
    width: 40px;
  }

  .section-title i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
  width: 100%;
  height: 75vh;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

/* SLIDES */
.hero-slider .swiper-slide {
  padding: 0 !important;
  margin: 0 !important;
   height: 100% !important;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* image fit perfectly */
  object-position: center;
   display: block;   
}

/* REMOVE PAGINATION */
.hero-slider .swiper-pagination { display: none !important; }

/* NAVIGATION BUTTONS */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  color: white; 
  border: 2px solid rgba(255,255,255,0.5);
}

/* arrow size */
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 22px;
  font-weight: 600;
}

/* HOVER EFFECT */
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--accent-color, #ff3c78);
  border-color: var(--accent-color, #ff3c78);
  transform: translateY(-2px) scale(1.08);
  color: #fff;
}

/* POSITIONING */
.hero-slider .swiper-button-prev {
  left: 40px;
}

.hero-slider .swiper-button-next {
  right: 40px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-slider .hero-slider { height: 70vh; }

  .hero-slider .swiper-button-next, 
  .hero-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
  }

  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-slider { height: 55vh; }

  .hero-slider .swiper-button-prev, 
  .hero-slider .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    font-size: 16px;
  }

  .hero-slider .swiper-button-prev { left: 15px; }
  .hero-slider .swiper-button-next { right: 15px; }
}

/*================================================
Top Feature Area CSS
=================================================*/
/* Feature Section Styles */
.features-section {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  /* background: #DECFDA;
  background: linear-gradient(315deg, #DECFDA, #FFACAD); */
  background-image: linear-gradient(to right top, #f8f4f4, #f9f6f7, #fbf9fa, #fcfcfc, #fefefe);
}

.features-section .container-fluid {
  max-width: 1410px;
  margin-left: auto !important;
  margin-right: 0;
}

.feature-card {
  background-color: #ffffff;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: 0.5s;
  border: 1px solid var(--surface-color);
  margin-bottom: 30px;
  border-radius:10px;
}

.feature-card .icon {
  transition: 0.5s;
  text-align: center;
  position: relative;
}

.feature-card .icon img {
  display: inline-block;
  transition: 0.5s;
}

.feature-card .icon img:last-child {
  transition: 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  opacity: 0;
}

.feature-card h3 {
  font-size: 22px;
  font-family: "Muli", sans-serif;
  font-weight: bold;
  margin: 16px 0 12px 0;
  transition: 0.5s;
}

.feature-card p {
  margin: 0 0 0 0;
  transition: 0.5s;
}

.feature-card .feature-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: var(--accent-color);
  transition: 0.5s;
  line-height: 1;
  margin-top: 12px;
  text-transform: capitalize;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  border-radius: 10px;
  background-color: var(--accent-color);
  z-index: -1;
  transition: 0.5s;
}

.feature-card:hover {
  transform: translateY(0);
}

.feature-card:hover h3 {
  color: #ffffff;
}

.feature-card:hover i {
  color: #ffffff;
}

.feature-card:hover p {
  color: #ffffff;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover .feature-btn {
  color: var(--default-color);
}

.feature-card:hover .icon img {
  opacity: 0;
}

.feature-card:hover .icon img:last-child {
  opacity: 1;
}

.feature-content span {
  font-size: 15px;
  color: var(--accent-color);
}

.feature-content h3 {
  font-size: 38px;
  margin: 5px 0 14px 0;
}

.feature-content p {
  margin-bottom: 0;
}

.feature-content .optional-btn {
  margin-left: 0;
  margin-top: 20px;
}

/* Bullet Pagination Styles */
.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 0px; /* Adjusted to move below slider */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.feature-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ff6015; /* Bullet color */
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.feature-slider .swiper-pagination-bullet-active {
  background-color: #ffffff; /* Active bullet color */
}

.feature-slider .swiper-pagination-clickable {
  cursor: pointer;
}

/* Optional: Hover effect for bullets */
.feature-slider .swiper-pagination-bullet:hover {
  background-color: #ff6f2f; /* Hover color */
}

.feature-slider .swiper-button-next, .swiper-button-prev {
  color: #ff6015; /* Button color */
}

.feature-slider .swiper-button-next:hover, .swiper-button-prev:hover {
  color: #ff6f2f; /* Hover color */
}

/*--------------------------------------------------------------
# About Home Section
--------------------------------------------------------------*/
.about-home .about-content h2 {
  /*font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;*/
  font-size: 38px;
    color: var(--default-color);
    margin: 5px 0 20px 0;
    text-transform: capitalize;
}

.about-home .about-content .lead {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

.about-home .about-content .stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 576px) {
  .about-home .about-content .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.about-home .about-content .stats-row .stat-item {
  text-align: center;
}

.about-home .about-content .stats-row .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about-home .about-content .stats-row .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.25rem;
}

.about-home .about-content .about-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about-home .about-content .about-actions {
    flex-direction: column;
  }
}

.about-home .about-content .about-actions .btn-primary,
.about-home .about-content .about-actions .btn-secondary {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-home .about-content .about-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.about-home .about-content .about-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about-home .about-content .about-actions .btn-secondary {
  background-color: transparent;
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 0%);
}

.about-home .about-content .about-actions .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 0%);
  border-color: var(--default-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about-home .about-images {
  position: relative;
  height: 500px;
}

.about-home .about-images .main-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 70%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-home .about-images .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .secondary-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-home .about-images .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home .about-images .experience-badge {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
}

.about-home .about-images .experience-badge .badge-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-home .about-images .experience-badge .badge-content .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-home .about-images .experience-badge .badge-content .badge-text {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-home .about-images {
    height: 400px;
    margin-top: 2rem;
  }

  .about-home .about-images .main-image {
    width: 80%;
    height: 65%;
  }

  .about-home .about-images .secondary-image {
    width: 65%;
    height: 45%;
  }

  .about-home .about-images .experience-badge {
    right: 5%;
  }

  .about-home .about-images .experience-badge .badge-content {
    width: 80px;
    height: 80px;
    padding: 1rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-number {
    font-size: 1.25rem;
  }

  .about-home .about-images .experience-badge .badge-content .badge-text {
    font-size: 0.6rem;
  }
}

@media (max-width: 992px) {
  .about-home .row {
    flex-direction: column-reverse;
  }

  .about-home .about-content {
    margin-top: 2rem;
    text-align: center;
  }

  .about-home .about-content .stats-row {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats{
  /* background-color:#d9d9da; */
  background: #F2EEF1;
background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
}
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 100%;
  border: 2px solid rgba(0, 0, 0, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--contrast-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  height:100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
  border:1px solid rgba(221, 43, 28, 0.6);
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 0%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}


/*================================================
Country Area CSS
=================================================*/
.country-section{
  position: relative;   /* REQUIRED */
    overflow: hidden;     /* avoid shapes overflowing */
    background-image: linear-gradient(
    150deg,
    hsl(0deg 4% 95%) 0%,
    hsl(0deg 5% 95%) 14%,
    hsl(0deg 5% 95%) 21%,
    hsl(0deg 6% 95%) 26%,
    hsl(0deg 6% 96%) 30%,
    hsl(0deg 7% 96%) 35%,
    hsl(0deg 8% 96%) 39%,
    hsl(0deg 8% 96%) 43%,
    hsl(0deg 9% 96%) 46%,
    hsl(0deg 10% 96%) 50%,
    hsl(0deg 11% 96%) 54%,
    hsl(0deg 12% 96%) 57%,
    hsl(0deg 13% 96%) 61%,
    hsl(0deg 14% 97%) 65%,
    hsl(0deg 15% 97%) 69%,
    hsl(0deg 16% 97%) 74%,
    hsl(0deg 17% 97%) 79%,
    hsl(0deg 19% 97%) 86%,
    hsl(0deg 20% 97%) 100%
  );
    padding-top: 100px;
    padding-bottom: 100px;
}
.country-section__shape-one {
  position: absolute;
    left: 0px;
    top: 120px;
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/service-bg-shape-1.png'); /* FIXED PATH */
   animation: moveLeftRight 4s ease-in-out infinite;
    z-index: 1;
}
/* Floating Animation */
@keyframes moveLeftRight {
  0%   { transform: translateX(0px); }
  50%  { transform: translateX(25px); }
  100% { transform: translateX(0px); }
}
@media (max-width: 1300px) {
  .country-section__shape-one {
    display: none;
  }
}
.country-section__shape-two {
 position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    background-image: url('../images/service-bg-shape-2.png'); /* FIXED PATH */
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.8;
    z-index: 0;
}

/* @media (max-width: 1200px) {
    .country-section__shape-one,
    .country-section__shape-two {
        display: none;
    }
} */

.country-section .map-section {
  padding: 40px 20px;
  /* background-color: #f9f9f9;  */
  flex-direction: column;
  align-items: center;
}
.country-section .map-img {
  position: relative;
  transition: 0.6s;
  z-index: 1;
  text-align: center;
  height: auto; /* changed from 100% to auto */
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%; /* control width */
  margin: 0 auto; /* center it */
}
.country-section .map-img img {
  width: 800px;
  height: 800px; /* preserve aspect ratio */
  max-width: 100%; /* prevents image from overflowing */
}
.country-section .map-img .location {
  position: absolute;
  left: 18%;
  top: 46%;
  width: auto;
  height: auto;
}
 .country-section .map-img .location a::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -4px;
  border: 4px solid var(--accent-color);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation-name: ripple;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  background: #ffffff;
} 
.country-section .map-img .location a .location-info {
  position: absolute;
  left: -50px;
  bottom: 30px;
  transition: 0.5s;
  width: 140px;
  background: #fff; 
  text-align: center;
  padding: 1px 1px;
  border-radius: 3px;
  z-index: 1;
   box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.05); 
}
 .country-section .map-img .location a .location-info::before {
  content: "";
  position: absolute;
  left: 60px;
  bottom: -10px;
  width: 25px;
  height: 25px;
  background: #ffffff;
  z-index: -1;
  transform: rotate(45deg);
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.06);
} 
.country-section .map-img .location a .location-info h5 {
  font-size: 16px;
  margin: 5px 0 5px 0;
  color: var(--default-color);
  font-family: "Muli", sans-serif;
  font-weight: 500;
}
.country-section .map-img .location.location2 {
  right: 46%;
  left: auto;
  top: 20%;
}
.country-section .map-img .location.location3 {
  right: 68%;
  left: auto;
  top: 65%;
}
.country-section .map-img .location.location4 {
  right: 52%;
  left: auto;
  top: 50%;
}
.country-section .map-img .location.location5 {
  right: 62%;
  left: auto;
  top: 80%;
}
.country-section .map-img .location.location6 {
  right: 10%;
  left: auto;
  top: 75%;
}
.country-section .map-img .location a:hover .location-info, .map-img .location a .map-img .location a:focus .location-info, .map-img .location a .map-img .location a.active .location-info {
  bottom: 40px;
}

.country-section .country-area-content span {
  font-size: 16px;
  color: #ff6015;
}
.country-section .country-area-content h3 {
  font-size: 38px;
  margin: 8px 0 16px 0;
}
.country-section .country-area-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: justify;
}

.skill-bar {
  margin-top: 30px;
  font-family: "Muli", sans-serif;
}
.skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 10px;
}
.skill-bar .progress-title {
  font-size: 16px;
  font-weight: 500;
  color: #2f2c52;
}
.skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}
.skill-bar .progress-number-mark {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 16px;
  color: #2f2c52;
  font-weight: 500;
}
.skill-bar .down-arrow {
  display: none;
}
.skill-bar .progress-content-outter {
  height: 6px;
  background-color: #e4e4e4;
  border-radius: 4px;
}
.skill-bar .progress-content {
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 4px;
  width: 0%;
}
.skill-bar .progress-content-two {
  height: 6px;
  background-color: var(--default-color);
  border-radius: 4px;
  width: 0%;
}
.skill-bar .progress-content-three {
  height: 6px;
  background-color: #03cac6;
  border-radius: 4px;
  width: 0%;
}

.skill-bar-wrapper {
  margin-left: 30px;
  max-width: 510px;
}
.skill-bar-wrapper .section-title-left {
  margin-bottom: 50px;
}

/* =================================
 Single Causes Section
===================================*/
.causes-section {
      padding: 60px 0;
    background-image: linear-gradient(to right top, #f8f4f4, #f9f6f7, #fbf9fa, #fcfcfc, #fefefe);
    }

.causes-section .single-causes {
      position: relative;
      transition: 0.5s;
      border-radius: 15px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

.causes-section.single-causes img {
      border-radius: 15px 15px 0 0;
      width: 100%;
      height: 280px;
      object-fit: cover;
      border: 1px dashed var(--accent-color);
      transition: 0.5s;
    }

.causes-section .single-causes .icon {
      position: absolute;
      bottom: 52%;
      right: 30px;
      background-color: #fff;
      border-radius: 50%;
      height: 60px;
      width: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: 0.5s;
    }

.causes-section .single-causes .icon i {
      color:var(--accent-color);
      font-size: 30px;
    }

.causes-section .single-causes .causes-content {
      position: relative;
      background-color: var(--background-color);
      padding: 20px;
      border-radius: 0px 0px 5px 5px;
      z-index: 2;
      overflow: hidden;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

.causes-section .single-causes .causes-content::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 0;
      /* background-color: #d9d9da; */
      border-radius: 0px 0px 5px 5px;
      transition: height 0.5s ease;
      z-index: 1;
      background: #F2EEF1;
background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
    }

.causes-section .single-causes:hover .causes-content::before {
      height: 100%;
  }

.causes-section .single-causes .causes-content h3,
.causes-section .single-causes .causes-content p,
.causes-section .single-causes .causes-content ul li {
      color: var(--default-color);
      margin: 5px 0;
      position: relative;
      z-index: 2;
    }
.causes-section .single-causes .causes-content  ul li::marker,
.causes-section .single-causes .causes-content span {
  color:var(--accent-color); 
  z-index: 3; 
}
.causes-section .single-causes .causes-progress-bar {
      margin-top: 15px;
    }

.causes-section .single-causes .causes-progress-content ul {
      padding-left: 20px;
      margin: 0;
    }
.causes-section  .single-causes .causes-btn-one {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      padding: 12px 25px;
      border-radius: 50px;
      margin-top: 15px;
      align-self: flex-start;
      text-decoration: none;
      font-weight: 600;
      transition: 0.5s;
      position: relative;
      z-index: 3;
    }

.causes-section .single-causes .causes-btn-one:hover {
      background-color:var(--default-color);
      color: var(--contrast-color);
    }

   .causes-section .single-causes .swiper-slide {
      display: flex;
      height: auto;
    }

.causes-section .single-causes .swiper-slide .swiper-nav-custom {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
    }

   .causes-section .single-causes .swiper-slide  .swiper-button-custom {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 50px;
      height: 50px;
      background-color: #fff;
      color: #ff6015;
      border: 2px solid #ff6015;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

   .causes-section .single-causes .swiper-slide  .swiper-button-custom:hover {
      background-color: #ff6015;
      color: #fff;
      transform: translateY(-50%) scale(1.1);
    }

    .causes-section .single-causes .swiper-slide .swiper-button-prev-custom {
      left: -30px;
    }

    .causes-section .single-causes .swiper-slide .swiper-button-next-custom {
      right: -30px;
    }

    @media (max-width: 768px) {
      .causes-section .single-causes .swiper-slide.swiper-button-prev-custom,
      .causes-section .single-causes .swiper-slide.swiper-button-next-custom {
        display: none;
      }
    }

/*--------------------------------------------------------------
# Event Section
----------------------------------------------------------------*/
.event-area {
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
}
.event-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
 background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
  opacity: 0.9;
}
.event-area .section-title .sub-title {
  color: var(--default-color);
}
.event-area .section-title h2 {
  color: var(--default-color);
  margin-bottom: 0;
}

.event-area .event-item {
  margin-bottom: 30px;
  position: relative;
  transition: 0.5s all ease;
}
.event-area .event-item:hover {
  transform: translate(0, -10px);
}
.event-area .event-item:hover img {
  border-radius: 0;
}
.event-area .event-item:hover:before {
  border-radius: 0;
}
.event-area .event-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.838) 100%, rgba(20, 20, 20, 0) 100%);
  border-radius: 30px 30px 0 30px;
  transition: 0.5s all ease;
}
.event-area .event-item img {
  display: inline-block;
  border-radius: 30px 30px 0 30px;
  width: 100%;
  transition: 0.5s all ease;
}
.event-area .event-item .inner {
  position: absolute;
  top: 30px;
  left: 30px;
  padding-left: 90px;
}
.event-area .event-item .inner h4 {
  max-width: 65px;
  padding-top: 5px;
  padding-bottom: 5px;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-color);
  margin-bottom: 0;
  font-size: 30px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  height: 75px;
}
.event-area .event-item .inner h4 span {
  color: var(--default-color);
  font-weight: 400;
  font-size: 24px;
  position: relative;
  top: -7px;
}
.event-area .event-item .inner h3 {
  margin-bottom: 10px;
  font-size: 22px;
  margin-top: 8px;
}
.event-area .event-item .inner h3 a {
  color: #fff;
}
.event-area .event-item .inner h3 a:hover {
  color: var(--contrast-color);
  font-weight:200;
}
.event-area .event-item .inner p {
  color: #fff;
}
.event-area .event-item .inner ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 15px;
}
.event-area .event-item .inner ul li:last-child {
  margin-right: 0;
}
.event-area .event-item .inner ul li i {
  display: inline-block;
  color: var(--accent-color);
  margin-right: 3px;
  font-size: 16px;
}

.event-area .event-item-right {
  padding-left: 90px;
  position: relative;
  border-bottom: 1px solid var(--accent-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.event-area .event-item-right:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
}
.event-area .event-item-right h4 {
  max-width: 65px;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-color);
  margin-bottom: 0;
  font-size: 30px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  height: 60px;
}
.event-area .event-item-right h4 span {
  color: var(--default-color);
  font-weight: 400;
  font-size: 20px;
  position: relative;
  top: -12px;
}
.event-area .event-item-right h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.event-area .event-item-right h3 a {
  color: var(--default-color);
}
.event-area .event-item-right h3 a:hover {
  color: var(--accent-color);
}
.event-area .event-item-right ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 15px;
}
.event-area .event-item-right ul li:last-child {
  margin-right: 0;
}
.event-area .event-item-right ul li i {
  display: inline-block;
  color: #ff6015;
  margin-right: 3px;
  font-size: 16px;
}


/* ===============================
   Awards Section
=============================== */
.awards-section {
  position:relative;
  overflow: hidden;
  background:var(--background-color);
  padding: 70px 0;
  border-radius: 0px;
}
/* Card */
.awards-section .award-dark-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background:rgba(225, 255, 255, 0);
  border-radius: 16px;
  border: 1px solid var(--surface-color);
  transition: 0.3s ease;
   box-shadow: 0 2px 8px rgba(221, 43, 28, 0.1);
}

.awards-section .award-dark-card:hover {
  background:var(--background-color);
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(221, 43, 28, 0.1);
}

/* Highlighted Gold Card Outline */
.awards-section .highlighted-card {
  border: 1px solid  rgba(221,43,48,0.2);
  box-shadow: 0 5px 20px rgba(221,43,48,0.2);
}

/* Icon Box */
.awards-section .icon-box {
  width: 55px;
  height: 55px;
  background:var(--surface-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Texts */
.awards-section .award-dark-card h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 200;
  color: var(--default-color);
}

.awards-section .award-dark-card p {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: var(--accent-color);
}

/* Responsive */
@media(max-width: 576px) {
  .awards-section .award-dark-card {
    flex-direction: row;
    text-align: left;
  }
}
.awards-section .gallery-box {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.4s ease;
  cursor: pointer;
}

.awards-section .gallery-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Zoom */
.awards-section .gallery-box:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Shine Effect */
.awards-section .gallery-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.awards-section .gallery-box:hover::after {
  left: 150%;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
}

@media (max-width: 991px) {
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team .team-header p {
    margin: 0 auto;
  }

  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

.team .team-controls .team-control-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-controls .team-control-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

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

.team .team-member {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  width:100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

.team .team-member:hover .member-image:before {
  opacity: 0.8;
}

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.team .team-member .member-image .member-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.team .team-member .member-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.testimonials .testimonial-card:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-content {
  padding: 40px 30px 30px;
  position: relative;
  flex-grow: 1;
}

.testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .testimonial-content .quote-icon {
  position: absolute;
  top: -30px;
  left: -40px;
  font-size: 42px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: 0;
  opacity: 0.8;
}

.testimonials .testimonial-profile {
  padding: 20px 30px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
  margin-bottom: 15px;
}

.testimonials .rating i {
  color: #ffc107;
  margin-right: 3px;
  font-size: 14px;
}

.testimonials .profile-info {
  display: flex;
  align-items: center;
}

.testimonials .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--background-color);
  margin-right: 15px;
}

.testimonials .profile-info div {
  flex: 1;
}

.testimonials .profile-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .profile-info h4 {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .testimonials .testimonial-content {
    padding: 30px 20px 20px;
  }

  .testimonials .testimonial-content p {
    font-size: 15px;
  }

  .testimonials .testimonial-content .quote-icon {
    font-size: 36px;
    left: 20px;
  }

  .testimonials .testimonial-profile {
    padding: 15px 20px;
  }

  .testimonials .profile-info img {
    width: 45px;
    height: 45px;
  }
}

/*------------------------------------------------
 Trustees Section
--------------------------------------------------*/
.trust-card {
    background: #fff;
    border-radius: 12px;
    transition: .3s;
    border: 1px solid var(--surface-color);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.trust-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #dc3545;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
 background: transparent;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border:1px solid var(--surface-color)
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.team .team-member .member-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--heading-color), transparent 20%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.team .team-member .member-info {
  padding: 20px 10px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-size: 20px;
  font-weight: 200;
  margin: 0 0 8px 0;
  color: var(--default-color);
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.team .team-member .member-info p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.team .team-member:hover .member-img img {
  transform: scale(1.08);
}

.team .team-member:hover .member-img::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .team .team-member .member-info {
    padding: 24px 20px;
  }

  .team .team-member .member-info h4 {
    font-size: 20px;
  }

  .team .team-member .member-img img {
    height: 250px;
  }
}
/*----------------------------------------
Our Work Section
------------------------------------------*/
.ourwork-banner {
    background: url('assets/img/banner-ourwork.jpg') center/cover no-repeat fixed;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}
.ourwork-banner h1 { font-size: 3rem; }
.ourwork-banner p { font-size: 1.2rem; }

/* Project Grid */
.ourwork .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 55px;
}

/* Card */
.ourwork .project-card {
 position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(53, 52, 52, 0.25);
  transition: all 0.45s ease;
  background: #000;
}

/* Image */
.ourwork .project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.ourwork .project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(54, 11, 7, 0.75)
  );
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  transition: all 0.45s ease;
}

/* Content */
.ourwork .project-card .content {
  padding: 22px;
}

.ourwork .project-card h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.ourwork .project-card p {
  color: #f1f1f1;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* Button */
.ourwork .read-more {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.ourwork .read-more:hover {
  background: #fff;
  color: #dd2b1c;
}

/* Hover */
.ourwork .project-card:hover {
  transform: translateY(-12px);
  border-color: #dd2b1c;
  box-shadow: 0 30px 60px rgba(221,43,28,0.10);
}

.ourwork .project-card:hover img {
  transform: scale(1.12);
}

.ourwork .project-card:hover .overlay {
  opacity: 1;
}

/* Mobile */
@media (max-width: 576px) {
  .ourwork {
    padding: 60px 0;
  }
  .ourwork .project-card img {
    height: 190px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-image: url('../images/saad background 1.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.testimonials .testimonials-wrapper {
  padding: 20px 0;
}

.testimonials .testimonial-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(255, 96, 21, 0.09);
  border: 1px solid color-mix(in srgb, #dd2b1c, transparent 0%);
  /* transition: all 0.3s ease; */
  overflow: hidden;
}

.testimonials .testimonial-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: color-mix(in srgb, var(--accent-color), transparent 0%);
}

.testimonials .testimonial-card:hover .quote-mark {
  color: var(--accent-color);
}

.testimonials .quote-mark {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 2.5rem;
  line-height: 1;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: color 0.3s ease;
  opacity: 0.8;
}

.testimonials .quote-mark i {
  transform: scaleX(-1);
}

.testimonials .testimonial-content {
  margin-bottom: 25px;
  padding-top: 10px;
}

.testimonials .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-style: italic;
  margin-bottom: 0;
}

.testimonials .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  margin-right: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonials .testimonial-author .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--heading-color);
}

.testimonials .testimonial-author .author-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: block;
}

@media (max-width: 1199px) {
  .testimonials .testimonial-card {
    padding: 35px 25px 25px;
  }

  .testimonials .quote-mark {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-card {
    margin-bottom: 20px;
  }

  .testimonials .testimonial-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-card {
    padding: 30px 20px 20px;
  }

  .testimonials .quote-mark {
    font-size: 2rem;
    top: 15px;
    left: 20px;
  }

  .testimonials .testimonial-author img {
    width: 50px;
    height: 50px;
  }

  .testimonials .testimonial-author .author-info h4 {
    font-size: 1rem;
  }

  .testimonials .testimonial-author .author-info span {
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-card {
    padding: 25px 18px 18px;
  }

  .testimonials .quote-mark {
    font-size: 1.8rem;
  }

  .testimonials .testimonial-content p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-author img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  overflow: hidden;
}

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

.call-to-action .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 2rem;
  }
}

.call-to-action .content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.call-to-action .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.call-to-action .features-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}

.call-to-action .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.call-to-action .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.call-to-action .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.call-to-action .image-wrapper:hover img {
  transform: scale(1.05);
}

.call-to-action .image-wrapper .overlay-content {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}

.call-to-action .image-wrapper .special-offer {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  padding: 15px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .image-wrapper .special-offer .label {
  display: block;
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
  opacity: 0.9;
}

.call-to-action .image-wrapper .special-offer .discount {
  display: block;
  color: var(--contrast-color);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .call-to-action .image-wrapper {
    margin-top: 2rem;
  }

  .call-to-action .image-wrapper .overlay-content {
    top: 20px;
    right: 20px;
  }

  .call-to-action .image-wrapper .special-offer {
    padding: 12px 16px;
  }

  .call-to-action .image-wrapper .special-offer .label {
    font-size: 0.8rem;
  }

  .call-to-action .image-wrapper .special-offer .discount {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .call-to-action .content {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Events Cards Section
--------------------------------------------------------------*/
/*.events-cards .event-item {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.4s ease;
  height: 100%;
}

.events-cards .event-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 75%);
}

.events-cards .event-item .event-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.events-cards .event-item .event-header .event-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events-cards .event-item .event-header .event-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.events-cards .event-item .event-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events-cards .event-item .event-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, color-mix(in srgb, var(--default-color), transparent 80%));
  z-index: 1;
}

.events-cards .event-item .event-content {
  padding: 25px;
}

.events-cards .event-item .event-content h4 {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.events-cards .event-item .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.events-cards .event-item .event-content .event-features {
  margin-bottom: 25px;
}

.events-cards .event-item .event-content .event-features .feature-item {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  margin-bottom: 8px;
}

.events-cards .event-item .event-content .event-features .feature-item i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 12px;
}

.events-cards .event-item .event-content .event-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.events-cards .event-item .event-content .event-link i {
  margin-left: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.events-cards .event-item .event-content .event-link:hover {
  color: var(--heading-color);
}

.events-cards .event-item .event-content .event-link:hover i {
  transform: translateX(5px);
}

.events-cards .event-item:hover .event-header img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .events-cards .event-item .event-header {
    height: 180px;
  }

  .events-cards .event-item .event-header .event-icon {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
  }

  .events-cards .event-item .event-header .event-icon i {
    font-size: 18px;
  }

  .events-cards .event-item .event-content {
    padding: 20px;
  }

  .events-cards .event-item .event-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .events-cards .event-item .event-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .events-cards .event-item .event-content .event-features {
    margin-bottom: 20px;
  }

  .events-cards .event-item .event-content .event-features .feature-item {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .events-cards .event-item .event-content .event-link {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .events-cards .row>div:nth-child(n+5) {
    margin-top: 2rem;
  }
}
*/


/*--------------------------------------------------------------
# Gallery Showcase Section
--------------------------------------------------------------*/
.gallery-showcase .gallery-carousel {
  margin-bottom: 2rem;
}

.gallery-showcase .gallery-carousel .swiper-wrapper {
  height: auto !important;
}

.gallery-showcase .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-showcase .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-showcase .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-showcase .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery-showcase .gallery-item img {
    height: 200px;
  }
}

.gallery-showcase .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}

.gallery-showcase .btn-gallery {
  background: linear-gradient(135deg, #dd2b1c, color-mix(in srgb, #dd2b1c, #dd2b1c 20%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .btn-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
  background: linear-gradient(135deg, color-mix(in srgb, #000000, #000000 10%), color-mix(in srgb, #000000, #000000 30%));
}

.gallery-showcase .btn-gallery i {
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  .gallery-showcase .btn-gallery {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-stack {
  position: relative;
   width: 100%; 
}

.about .image-stack .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2; 
  left:15%;
   width:80%; 
}

.about .image-stack .main-image-wrapper .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about .image-stack .secondary-image {
  position: absolute;
  bottom: -120px;
  left: -40px;
  width:70%;
  /* height: 300px; */
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid var(--background-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.about .image-stack .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -----------------------------------------
   RESPONSIVE MEDIA QUERIES  
-------------------------------------------*/

/* 🌐 Large Desktops (1400px +) */
@media (min-width: 1400px) {
  .about .image-stack .main-image-wrapper {
    left: 10%;
    width: 100%;
  }
  .about .image-stack .secondary-image {
    width: 60%;
    left: -30px;
    bottom: -100px;
  }
}

/* 💻 Laptops (992px – 1399px) */
@media (max-width: 1399px) {
  .about .image-stack .main-image-wrapper {
    left: 10%;
    width: 85%;
  }
  .about .image-stack .secondary-image {
    width: 65%;
    left: -25px;
    bottom: -100px;
  }
}

/* 📱 Tablets (768px – 991px) */
@media (max-width: 991px) {
  .about .image-stack .main-image-wrapper {
    left: 0;
    width: 100%;
  }
  .about .image-stack .secondary-image {
    width: 70%;
    left: 0;
    bottom: -90px;
  }
}

/* 📱 Small Tablets / Large Phones (600px – 767px) */
@media (max-width: 767px) {
  .about .image-stack .main-image-wrapper {
    left: 0;
    width: 100%;
  }
  .about .image-stack .secondary-image {
    width: 75%;
    left: 0;
    bottom: -70px;
  }
}

/* 📱 Phones (480px – 599px) */
@media (max-width: 599px) {
  .about .image-stack .secondary-image {
    width: 80%;
    left: 0;
    bottom: -50px;
  }
}

/* 📱 Small Phones / iPhone SE / 375px width */
@media (max-width: 480px) {
  .about .image-stack .main-image-wrapper {
    width: 100%;
    left: 0;
  }
  .about .image-stack .secondary-image {
    width: 90%;
    left: 0;
    bottom: -40px;
  }
}

/* 📱 Very Small Phones (320px screens) */
@media (max-width: 360px) {
  .about .image-stack .secondary-image {
    width: 95%;
    bottom: -30px;
  }
}

.about .objective-list {
    list-style: none !important;
    padding-left: 0;
}

.about .objective-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.about .objective-list li i {
    color: #e63946; /* red theme */
    margin-right: 8px;
    font-size: 18px;
}


.about .content-wrapper {
  padding-left: 3rem;
}

@media (max-width: 992px) {
  .about .content-wrapper {
    padding-left: 0;
    margin-top: 4rem;
  }
}

.about .content-wrapper .badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .content-wrapper h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .about .content-wrapper h2 {
    font-size: 2.2rem;
  }
}

.about .content-wrapper .lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.about .content-wrapper p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .milestone-timeline {
  margin: 3rem 0;
}

.about .milestone-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .milestone-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about .milestone-item .milestone-year {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2rem;
  flex-shrink: 0;
}

.about .milestone-item .milestone-content h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.about .milestone-item .milestone-content p {
  font-size: 0.95rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .action-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about .action-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.about .action-buttons .btn-explore {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about .action-buttons .btn-explore:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about .action-buttons .btn-video {
  background: transparent;
  color: var(--accent-color);
  padding: 14px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.about .action-buttons .btn-video:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-showcase {
  margin-top: 6rem;
  margin-bottom: 3rem;
}

.about .features-showcase .features-header h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about .features-showcase .features-header h3 {
    font-size: 2rem;
  }
}

.about .features-showcase .features-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.about .feature-card {
  margin-bottom: 2rem;
}

.about .feature-card .feature-visual {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 1.5rem;
}

.about .feature-card .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .feature-card .feature-visual .feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about .feature-card .feature-visual .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .feature-card .feature-visual .feature-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.about .feature-card .feature-visual:hover .feature-overlay {
  opacity: 1;
}

.about .feature-card .feature-visual:hover img {
  transform: scale(1.05);
}

.about .feature-card .feature-details h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-card .feature-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .achievements-section {
  margin-top: 5rem;
  padding: 4rem 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 25px;
}

.about .achievements-section .achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .about .achievements-section .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .achievements-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about .achievements-section .achievement-stat {
  text-align: center;
}

.about .achievements-section .achievement-stat .stat-counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .achievements-section .achievement-stat .stat-description {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Impact Section
--------------------------------------------------------------*/
.impact-stats-section {
    background:var(--background-color);
    padding: 80px 0;
    text-align: center;
 }

/* Stats Grid */
.impact-stats-section .stats-grid {
   display: flex;
    justify-content: center;
    align-items: stretch;   /* all boxes equal height */
    gap: 25px;
    flex-wrap: nowrap; 
}

/* Individual Stat Box */
.impact-stats-section .stat-box {
    background: #ffffff;
    padding: 30px 20px;
    width: 260px;
    height: 160px;           /* fixed height for equal size */
    border-radius: 16px;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.35);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border:1px solid var(--surface-color);
     /* height: 100%; */
}

.impact-stats-section .stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 25px rgba(221, 43, 48, 0.35);
}

/* Numbers */
.impact-stats-section .stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Colors */
.red { color: var(--accent-color); }
.teal { color: var(--default-color); }
.blue { color: var(--accent-color); ; }
.orange { color: var(--default-color); }

/* Labels */
.impact-stats-section .stat-label {
    color: #444;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .impact-stats-section .stats-grid {
        flex-wrap: wrap; 
    }
    .impact-stats-section .stat-box {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .impact-stats-section .stats-grid {
        grid-template-columns: 1fr;
    }
    .impact-stats-section .stat-box {
        width: 90%;
        height: auto;
    }
    .impact-stats-section.stat-number {
        font-size: 2.2rem;
    }
}

/*------------------------------------------------------------
# Services Modern Design
---------------------------------------------------------------*/
.services-modern {
    background-image: url('../images/bg-pattern-2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow:hidden;
}

.services-modern .service-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(221, 43, 48, 0.18);
    transition: all 0.4s ease;
    height: 100%;
  }

.services-modern .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Circle */
.services-modern .service-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color:var(--accent-color);
}
 
.services-modern .service-card .icon-box-red {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffe5e7;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* MODERN LIST */
.services-modern .service-card .modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-modern .service-card .modern-list li {
    background: #f8f9fa;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    border-left: 4px solid #e63946;
}

/* OPTIONAL HOVER EFFECT */
.modern-list li:hover {
    background: #fff2f2;
    transition: 0.3s ease;
}
/* ICON ANIMATION */

.animated-icon i {
    animation: iconBounce 1.8s infinite ease-in-out;
}

@keyframes iconBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
/* RESPONSIVE */
@media (max-width: 576px) {
    .modern-list li {
        font-size: 14px;
    }
}
.services-modern-new {
  background: linear-gradient(135deg, #fdf6f0, #fff);
  position: relative;
  overflow: hidden;
}

/* Background Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}
.shape-top {
  width: 300px;
  height: 300px;
  background: #dd2b1c;
  top: -50px;
  left: -50px;
}
.shape-bottom {
  width: 400px;
  height: 400px;
  background: #ff7f50;
  bottom: -80px;
  right: -80px;
}

.bg-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: #dd2b1c;
}

.services-modern-new h2 {
  font-weight: 700;
  font-size: 2.2rem;
}

.service-card-new {
  background: #fff;
  border-radius: 30px;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  z-index: 1;
  border: none;
 border: 1px solid rgba(221, 43, 48, 0.18);

}

.service-card-new .icon-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s, box-shadow 0.4s;
  background: #ffe5e7;
  border:1px solid var(--accent-color);
  /* box-shadow: 10px 30px 30px rgba(221,43,28,0.3); */
}
.service-card-new .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
  }

.service-card-new h5 {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 20px;
}

.service-card-new p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Hover effects */
.service-card-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(221,43,28,0.3);
}
.service-card-new:hover .icon-wrap img {
  transform: scale(1.2) rotate(10deg);
}

/* Responsive */
@media (max-width: 992px) {
  .service-card-new { padding: 30px; }
  .service-card-new h5 { font-size: 1.2rem; }
}
@media (max-width: 768px) {
  .service-card-new .icon-wrap { width: 70px; height: 70px; }
  .service-card-new .icon-wrap img { width: 60%; height: 60%; }
  .service-card-new h5 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .service-card-new .icon-wrap { width: 60px; height: 60px; }
  .service-card-new .icon-wrap img { width: 55%; height: 55%; }
  .service-card-new h5 { font-size: 1rem; }
}
  
/*--------------------------------------------------------------
#  Impact-Section
--------------------------------------------------------------*/
.impact-section {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right top, #f8f4f4, #f9f6f7, #fbf9fa, #fcfcfc, #fefefe);
 }
.impact-section .full-bg-section {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
  position: relative;
  margin-bottom: 40px;
  border-radius: 14px;
}

/* Glass effect */
.impact-section .glass-box {
  background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  max-width: 540px;
  border: 1px solid rgba(29, 28, 28, 0.35);
}

.impact-section .impact-title {
  color:var(--accent-color);
  font-size: 28px;
  font-weight: 300;
}

.impact-section .impact-desc {
  color: rgba(12, 12, 12, 0.85);
  font-size: 16px;
  line-height: 1.5;
}

/* === ANIMATION BASE === */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.9s ease;
}

/* Triggered by JS */
.show {
  opacity: 1;
  transform: translate(0);
}

/* Individual animations */
.fade-right {
  transform: translateX(-50px);
}

.fade-left {
  transform: translateX(50px);
}

.fade-up {
  transform: translateY(50px);
}

/* After showing */
.show.fade-right,
.show.fade-left,
.show.fade-up {
  transform: translate(0);
}

/* Responsive */
@media(max-width: 768px) {
  .impact-section .full-bg-section {
    height: auto;
    padding: 50px 20px;
  }
  .impact-section .glass-box {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Stakeholders Section
--------------------------------------------------------------*/
 .stakeholders {
  position: relative;
  overflow: hidden;
  margin-bottom:60px;
}

.stakeholders .modern-tabs .nav-link {
    border: 1px solid var(--surface-color);
    border-radius: 50px;
    background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
    color: #555;
    padding: 10px 25px;
    margin: 0 8px;
    transition: 0.3s ease;
    font-weight: 600;
}

.stakeholders .modern-tabs .nav-link.active {
    background: var(--accent-color);
    color: #fff;
}

.stakeholders .modern-tabs .nav-link:hover {
    background: var(--accent-color);
    color:var(--contrast-color);
}

/* Remove bottom border line */
.stakeholders .modern-tabs {
    border-bottom: none;
}

/* CARD DESIGN */
.stakeholders .modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(221,48,21,0.06);
    transition: 0.3s ease;
    border:1px solid var(--surface-color);
}

.stakeholders .modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(221,48,21,0.15);
}

.stakeholders .modern-card img {
    max-height: 70px;
    filter: grayscale(30%);
    transition: 0.3s ease-in-out;
}

.stakeholders .modern-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width: 576px){
    .stakeholders .modern-card {
        height: 120px;
        padding: 18px;
    }
   .stakeholders  .modern-card img {
        max-height: 55px;
    }
    .stakeholders .modern-tabs .nav-link {
        padding: 8px 16px;
        margin: 10px 4px;
        font-size: 0.9rem;
    }
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .hotel-filters {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery .hotel-filters li {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery .hotel-filters li:hover,
.gallery .hotel-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .gallery .hotel-filters li {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-item .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery .gallery-item .gallery-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item .gallery-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery .gallery-item .gallery-wrapper img {
    height: 250px;
  }
}

.gallery .gallery-item .gallery-wrapper:hover img {
  transform: scale(1.1);
}

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-overlay a {
  color: var(--contrast-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery .gallery-overlay a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.gallery .gallery-wrapper:hover .gallery-overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .hero-content {
  margin-bottom: 60px;
}

.events .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .events .hero-content h2 {
    font-size: 2.2rem;
  }
}

.events .hero-content .lead {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.events .event-venues-grid {
  margin-bottom: 80px;
}

.events .event-venues-grid .venue-card {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.events .event-venues-grid .venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.events .event-venues-grid .venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.events .event-venues-grid .venue-card:hover .venue-overlay {
  opacity: 1;
}

.events .event-venues-grid .venue-card .venue-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.events .event-venues-grid .venue-card .venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info {
  text-align: center;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info .capacity {
  font-size: 1rem;
  opacity: 0.9;
}

.events .features-section {
  margin-bottom: 80px;
}

.events .features-section .features-content h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .features-section .features-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .features-section .feature-list .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

.events .features-section .feature-list .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.events .features-section .feature-list .feature-item .feature-icon i {
  font-size: 1.7rem;
  color: var(--contrast-color);
}

.events .features-section .feature-list .feature-item .feature-details h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.events .features-section .feature-list .feature-item .feature-details p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.events .features-section .features-gallery .gallery-main {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.events .features-section .features-gallery .gallery-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.events .features-section .features-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.events .features-section .features-gallery .gallery-thumbnails .thumbnail-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .events .features-section .row {
    flex-direction: column-reverse;
  }

  .events .features-section .features-gallery {
    margin-bottom: 40px;
  }
}

.events .event-packages {
  margin-bottom: 80px;
}

.events .event-packages .section-header {
  margin-bottom: 60px;
}

.events .event-packages .section-header h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .event-packages .section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-packages .package-item {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
}

.events .event-packages .package-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.events .event-packages .package-item.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
}

.events .event-packages .package-item.featured .featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 20px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.events .event-packages .package-item .package-content {
  text-align: center;
}

.events .event-packages .package-item .package-content .package-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.events .event-packages .package-item .package-content .package-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.events .event-packages .package-item .package-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.events .event-packages .package-item .package-content p {
  line-height: 1.6;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-packages .package-item .package-content .package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
}

.events .event-packages .package-item .package-content .package-highlights .highlight {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.events .event-packages .package-item .package-content .package-price {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-packages .package-item .package-content .package-price strong {
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 700;
}

.events .event-packages .package-item .package-content .btn-package {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.events .event-packages .package-item .package-content .btn-package:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .planning-services .planning-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.events .planning-services .planning-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .planning-services .planning-content .btn-contact {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.events .planning-services .planning-content .btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.events .planning-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.events .planning-services .services-grid .service-box {
  background: var(--surface-color);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.events .planning-services .services-grid .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.events .planning-services .services-grid .service-box .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.events .planning-services .services-grid .service-box .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.events .planning-services .services-grid .service-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.events .planning-services .services-grid .service-box p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .events .hero-content {
    margin-bottom: 40px;
  }

  .events .hero-content .lead {
    font-size: 1rem;
  }

  .events .event-venues-grid,
  .events .features-section,
  .events .event-packages,
  .events .planning-services {
    margin-bottom: 60px;
  }

  .events .venue-card {
    height: 250px;
  }

  .events .features-gallery .gallery-main img {
    height: 250px;
  }

  .events .features-gallery .gallery-thumbnails .thumbnail-item img {
    height: 100px;
  }

  .events .package-item {
    padding: 30px 20px;
  }

  .events .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events .services-grid .service-box {
    padding: 25px 20px;
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 13px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
}

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

.contact .contact-info-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact .contact-info-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-5px);
}

.contact .contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-card .icon-box i {
  font-size: 26px;
}

.contact .contact-info-card .info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact .contact-info-card .info-content p {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

.contact .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 30px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact .contact-info-card {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .contact-info-card .icon-box {
    margin-bottom: 15px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact .contact-info-card {
    padding: 20px;
  }

  .contact .map-container iframe {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# 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 .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 .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) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.event-area .pagination-area {
    text-align: center;
}
.event-area .pagination-area ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}
.event-area .pagination-area ul li a {
    display: block;
    color: #ff6015;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.5490196078);
    padding: 5px 15px;
    border-radius: 8px 8px 0 8px;
}

/*================================================
Timeline CSS
=================================================*/
.timeline-container {
  position: relative;
  gap: 40px;
  margin-top: 60px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #f2635f;
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 100%;
  max-width: 220px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon Style */
.timeline-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid #f2635f;
  border-radius: 50%;
  color: #f2635f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 3;
  position: relative;
}

/* Content Box */
.timeline-content {
  background: #fff;
  border: 1px solid #f2635f;
  border-radius: 5px;
  padding: 15px 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  width: 100%;
  text-align: center;
}

/* Top Items: content above the icon */
.timeline-item.top .timeline-content {
  order: -1;
  margin-bottom: 15px;
}

/* Bottom Items: content below the icon */
.timeline-item.bottom .timeline-content {
  margin-top: 15px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1c3c;
  font-family: 'Georgia', serif;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-container::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
  }

  .timeline-item {
    max-width: 90%;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .timeline-item.top .timeline-content,
  .timeline-item.bottom .timeline-content {
    order: 1;
    margin: 15px 0 0;
  }

  .timeline-icon {
    order: 0;
  }
}

 .timeline-section .metrics-section {
  margin-bottom: 0rem;
  padding-top:5rem;
}

 .timeline-section .metrics-section .metrics-wrapper {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

 .timeline-section .metrics-section .metric-item .metric-icon {
  margin-bottom: 1rem;
}

 .timeline-section .metrics-section .metric-item .metric-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
  opacity: 0.9;
}

 .timeline-section .metrics-section .metric-item .metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
   .timeline-section .metrics-section .metric-item .metric-value {
    font-size: 2.2rem;
  }
}

 .timeline-section .metrics-section .metric-item .metric-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Consultation Section
--------------------------------------------------------------*/
.donation {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
}

.donation .cta-wrapper {
  background-image: linear-gradient(to right top, #f8f4f4, #f9f6f7, #fbf9fa, #fcfcfc, #fefefe);
  border-radius: 15px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.donation .cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), #fff 30%));
}

@media (max-width: 992px) {
  .donation .cta-wrapper {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .donation .cta-wrapper {
    padding: 30px 20px;
  }
}

.donation .cta-content {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .donation .cta-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.donation .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .donation .cta-content h2 {
    font-size: 2rem;
  }
}

.donation .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.donation .cta-content .cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.donation .cta-content .cta-stats .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .donation .cta-content .cta-stats .stat-item .number {
    font-size: 2rem;
  }
}

.donation .cta-content .cta-stats .stat-item .text {
  font-size: 0.9rem;
  color: var(--default-color);
}

.donation .cta-form {
  background-color: color-mix(in srgb, var(--background-color), #000 3%);
  border-radius: 10px;
  padding: 30px;
}

.donation .cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .donation .cta-form h3 {
    font-size: 1.5rem;
  }
}

.donation .cta-form p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--default-color);
}

.donation .cta-form .form-control {
  height: 50px;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: color-mix(in srgb, var(--background-color), transparent 70%);
  color: var(--default-color);
  font-size: 14px;
}

.donation .cta-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.donation .cta-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.donation .cta-form select.form-control {
  appearance: none;
  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='currentColor' 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 15px center;
  background-size: 15px;
}

.donation .cta-form .form-control .amount-btn {
    margin: 5px;
    background-color: #5b42d4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
  }
 .donation .cta-form .form-control  .amount-btn:hover {
    background-color: #452caa;
  }

.donation .cta-form button[type=submit] {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.donation .cta-form button[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info-address {
  padding: 30px;
  background-color: #302c51;
}
.contact-info-address h3 {
  font-size: 25px;
  color: #ffffff;
  margin: 0 0 30px 0;
}
.contact-info-address .info-contact {
  position: relative;
  margin-bottom: 16px;
}
.contact-info-address .info-contact:last-child {
  margin-bottom: 0;
}
.contact-info-address .info-contact i {
  color: #ffae88;
  position: absolute;
  left: 0;
  top: -0px;
  font-size: 16px;
}
.contact-info-address .info-contact h3 {
  font-size: 18px;
  color: #ffae88;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding-left: 25px;
  text-transform: uppercase;
  font-family: "Muli", sans-serif;
}
.contact-info-address .info-contact span {
  font-size: 14px;
  color: #d0ccee;
  font-weight: 400;
  text-align: justify;
}
.contact-info-address .info-contact span p{
  margin-left:20px;
}
.contact-info-address .info-contact span a {
  font-size: 14px;
  color: #d0ccee;
  font-weight: 400;
  transition: 0.5s;
}
.contact-info-address .info-contact span a:hover {
  color:var(--accent-color);
  letter-spacing: 1px;
}

.contact-area {
  box-shadow: 0px 5px 28.5px 1.5px rgba(255, 255, 255, 0.2);
  padding: 30px;
  border: 1px dashed var(--accent-color);
  border-radius: 5px;
}
.contact-area .contact-content {
  margin-bottom: 30px;
}
.contact-area .contact-content h3 {
  font-size: 25px;
  margin: 0 0 12px 0;
}
.contact-area .contact-form form {
  text-align: center;
}
.contact-area .contact-form form .form-group {
  margin-bottom: 25px;
}
.contact-area .contact-form form .form-control {
  background-color: #f5f5f5;
  border: none;
  height: 57px;
  color: var(--accent-color);
  border: 1px solid #ffffff;
}
.contact-area .contact-form form .form-control:focus {
  border: 1px solid var(--accent-color);
  box-shadow: none;
}
.contact-area .contact-form form .form-group {
  text-align: left;
}
.contact-area .contact-form form textarea.form-control {
  height: 120px;
  padding-top: 15px;
}
.contact-area .contact-form .send-btn {
  text-align: left;
}
.contact-area .contact-form .list-unstyled {
  padding-left: 0;
  list-style: none;
  color: red;
}
.contact-area .contact-form .text-danger {
  color: #dc3545 !important;
  font-size: 20px;
  font-weight: 500 !important;
  margin: 16px 0 0 0;
}
.contact-area .contact-form .text-success {
  color: #28a745 !important;
}

/*================================================
Map Area CSS
=================================================*/
.map-section iframe {
  width: 100%;
  height: 500px;
  border: none;
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Impact Section
--------------------------------------------------------------*/
.impact .impact-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
  border-radius: 10px;
}

.impact .impact-item .impact-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.impact .impact-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

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

.impact .impact-item .stars {
  margin: 10px 0;
}

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

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

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

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

.impact .impact-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
  text-align: justify;
}

.text-justify{
  text-align: justify;
}

/*---------------------------------------
Reports Section
---------------------------------------*/
.report{
  overflow: hidden;
  background-image: linear-gradient(to right top, #f8f4f4, #f9f6f7, #fbf9fa, #fcfcfc, #fefefe);
}
/* Card hover effect */
.report-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(221,48,21,0.2);
}
.report-img {
 width: 100%;
    height: 260px;        
    object-fit: contain;  
    background: #f5f5f5;  
    padding: 12px;        
    border-radius: 10px;  
    border: 1px solid #e3e3e3; 
    transition: transform 0.3s ease;
}
.report-img:hover {
    transform: scale(1.03);
}

/*------------------------------------
Governance Section
------------------------------------*/
.govern-banner {
    height: 40vh;
    background: url('https://source.unsplash.com/1600x500/?documents,governance,law') center/cover no-repeat;
    background-attachment: fixed;
}

/* Governance Cards */
.gov-card {
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.gov-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.gov-icon {
    font-size: 55px;
    color: #dc3545;
}
.pdp-card {
    transition: 0.3s ease;
    border-radius: 12px;
}

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

.pdp-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
/*----------------------------------------------------------
Monthly Giving Section
-----------------------------------------------------------*/
.monthly-giving-section .giving-title {
  font-size: 2.4rem;
  font-weight: 800;
}

.monthly-giving-section .giving-tagline {
  font-size: 1.1rem;
  color: #444;
}

/* Tabs */
.monthly-giving-section .giving-tabs .nav-link {
  border: 1px solid #ddd !important;
  padding: 10px 24px;
  border-radius: 30px;
  margin: 0 6px;
  font-weight: 600;
  color: #222;
  background: #fff;
  transition: 0.3s;
}

.monthly-giving-section .giving-tabs .nav-link:hover {
  border-color: #dd2b1c !important;
  color: #dd2b1c;
}
.monthly-giving-section .corporate-table {
  border: 1px solid #000;
  border-collapse: separate;
  border-spacing: 0;
}
.monthly-giving-section .giving-tabs .nav-link.active {
   background: #dd2b1c !important;
  color: #fff !important;
  border-color: #dd2b1c !important;
}

/* Corporate table */
.monthly-giving-section .corporate-table thead {
  background: #000;
  color: #fff;
}

.monthly-giving-section .corporate-table th,
.monthly-giving-section .corporate-table td {
  border-bottom: 1px solid #000 !important;
  border-right: 1px solid #000 !important;
  padding: 14px 12px;
}

.corporate-table th:first-child,
.corporate-table td:first-child {
  border-left: none;
}

.corporate-table th:last-child,
.corporate-table td:last-child {
  border-right: none;
}

.monthly-giving-section .corporate-table tbody tr {
  transition: 0.2s;
}

.monthly-giving-section .corporate-table tbody tr:hover {
  background: #f2f2f2;
}

/* Donate Button */
.monthly-giving-section .btn-donate {
  padding: 6px 18px;
  background: #dd2b1c;
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.monthly-giving-section .btn-donate:hover {
  background: #000;
  color: #fff;
}

/* Fade Animation */
.monthly-giving-section .tab-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*--------------------------------------------------------------
# Thematic Section
--------------------------------------------------------------*/
.thematic-section {
/*    background: #0e0e0e;*/
background-image: url("../images/bg-pattern-1.webp");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
padding: 70px 0;
font-family: "Poppins", sans-serif;
}


/* Thematic Card */
.thematic-card {
    background: var(--background-color);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(221, 43, 28, 0.1);
    transition: 0.4s ease;
    cursor: pointer;
    }

/* Hover Effects */
.thematic-card:hover {
    transform: translateY(-6px);
    background: var(--background-color);
    border-left: 5px solid var(--default-color);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* Title inside card */
.thematic-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    transition: 0.3s;
}

.thematic-card:hover h4 {
    color: #000;
}

/* Paragraph text */
.thematic-card p {
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: 0.3s;
}

.thematic-card:hover p {
    color: #000;
}

/* Icon Circle */
.thematic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 15px;
    transition: 0.3s;
}

.thematic-card:hover .thematic-icon {
    background: #000;
    color: var(--accent-color);
}

/* Fade-up animation */
.thematic-fade {
    opacity: 0;
    transform: translateY(40px);
    animation: thematicFadeUp 1s ease forwards;
}

@keyframes thematicFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay for each card */
.thematic-card:nth-child(1) { animation-delay: 0.2s; }
.thematic-card:nth-child(2) { animation-delay: 0.4s; }
.thematic-card:nth-child(3) { animation-delay: 0.6s; }
.thematic-card:nth-child(4) { animation-delay: 0.8s; }
.thematic-card:nth-child(5) { animation-delay: 1s; }

/* Responsive */
@media (max-width: 768px) {
    .thematic-title {
        font-size: 1.9rem;
    }

    .thematic-card {
        padding: 20px;
    }

    .thematic-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ===== Project Drushti Styles ===== */
.project-drushti-section {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #22c55e;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Objective Cards */
.objective-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.objective-card i {
  font-size: 2rem;
  color: #22c55e;
  margin-bottom: 12px;
}

.objective-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.objective-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Services List */
.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  background: #f1f5f9;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 10px 15px;
  color: #334155;
  font-size: 0.95rem;
  transition: 0.3s;
}

.service-list li:hover {
  background: #e2e8f0;
  transform: translateX(4px);
}

/* Stats Cards */
.stat-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 25px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-card h3 {
  color: #16a34a;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 6px;
}

.stat-card p {
  color: #475569;
  font-size: 0.95rem;
}

/* Fade-up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Counter Animation */
@keyframes counterAnim {
  from { content: "0"; }
  to { content: attr(data-target); }
}

/* Responsive */
@media (max-width: 991px) {
  .section-heading { font-size: 1.75rem; }
  .stat-card h3 { font-size: 1.75rem; }
}


/* ===== Drushti Section ===== */
.drushti-section {
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.drushti-heading {
  font-weight: 700;
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.drushti-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #22c55e;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Image */
.drushti-img {
  background-size: cover;
  background-position: center;
  height: 350px;
  transition: all 0.4s ease;
}

.drushti-img:hover {
  transform: scale(1.03);
}

/* Service Cards */
.service-card {
  background: #fff;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.service-card h6 {
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 6px;
}

/* Stats Boxes */
.stats-box {
  background: #fff;
  transition: 0.3s ease;
}

.stats-box:hover {
  transform: translateY(-5px);
  background: #e6f9ec;
}

.stats-box h3 {
  font-weight: 700;
}

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

.drushti-section [class*="col-"] {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.drushti-section [class*="col-"]:nth-child(1) { animation-delay: 0.2s; }
.drushti-section [class*="col-"]:nth-child(2) { animation-delay: 0.4s; }
.drushti-section [class*="col-"]:nth-child(3) { animation-delay: 0.6s; }
.drushti-section [class*="col-"]:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 767px) {
  .drushti-img {
    height: 250px;
  }
}


/* ===============================
ENVIRONMENT + REACH SECTION
================================ */
        .env-reach-section {
            background-image: linear-gradient(to right top, #f8f4f4, #f9f6f7, #fbf9fa, #fcfcfc, #fefefe);
            color:var(--default-color);
            padding: 80px 0;
            font-family: 'Poppins', sans-serif;
        }

        .env-reach-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #ff2e2e;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .env-reach-title::after {
            content: "";
            width: 70px;
            height: 4px;
            background: #ff2e2e;
            display: block;
            margin: 10px auto 0;
            border-radius: 3px;
        }

        .env-reach-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--default-color);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeSlideLeft 1s ease forwards;
        }

        .env-reach-text:nth-child(1) {
            animation-delay: 0.3s;
        }

        .env-reach-text:nth-child(2) {
            animation-delay: 0.5s;
        }

        .env-reach-text:nth-child(3) {
            animation-delay: 0.7s;
        }

        .env-reach-image {
            background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
            border-radius: 15px;
            min-height: 400px;
            width:100%;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .env-reach-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
        }

        @keyframes fadeSlideLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .env-reach-text {
                text-align: center;
                transform: translateY(30px);
            }

            .env-reach-image {
                margin-top: 30px;
            }
        }

        /*---ACTION BUTTONS---*/

/* Desktop view */
@media (min-width: 768px) {
  .btn-container {
    position: fixed;
    top: 75%;
    right: 20px; /* Adjust for perfect alignment */
   transform: rotate(90deg) translateY(-50%);
    transform-origin: right top;
    z-index: 9999;
    display: flex;
   /* flex-direction: column;*/
    gap: 10px; /* Space between buttons */
  }

  .btn-container .btn {
    color: #fff;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-size: 16px;
    border-radius: 10px;
    padding: 10px 16px;
    white-space: nowrap;
  }

  .btn-container .btn:hover {
    background-color: var(--default-color);
    border-color: var(--default-color);
    color: var(--contrast-color);
  }
}

/* Mobile view */
@media (max-width: 767px) {
  .btn-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Space between buttons */
    z-index: 9999;
    background: transparent;
  }

  .btn-container .btn {
    flex: 1; /* Equal width buttons */
    border-radius: 10px;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-size: 16px;
    text-align: center;
  }

  .btn-container .btn:active,
  .btn-container .btn:focus {
    background-color: var(--default-color);
    border-color: var(--default-color);
    color: var(--contrast-color);
  }
}

/*--END ACTION BUTTON ---*/

/* --------------------------
  🍪 Cookie Popup Style
----------------------------*/
.cookie-popup {
  position: fixed;
  bottom: -200px; /* start hidden for animation */
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #dd2b1c, #91838d);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  width: 45%;
  max-width: 500px;
  margin: 0 auto;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.6s ease;
  opacity: 0;
}

.cookie-popup.show {
  bottom: 20px;
  opacity: 1;
}

.cookie-popup button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-popup button:first-child {
  background-color: var(--accent-color);
  color: white;
}

.cookie-popup button:last-child {
  background-color: var(--default-color);
  color: white;
}

.cookie-popup button:hover {
  opacity: 0.85;
}

.cookies-content p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 15px;
}

@media (max-width: 992px) {
  .cookie-popup {
    width: 90%;
    padding: 10px 20px;
  }
}

@media (max-width: 767px) {
  .cookie-popup img {
    display: none;
  }
}

.text-justify{
  text-align:justify;
}

/* ===== ENQUIRE MODAL ===== */
.enquire-modal {
  border-radius: 12px;
  overflow: hidden;
}

.enquire-modal .btn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}

.enquire-modal .modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquire-modal .form-section {
  background: #ffffff;
  color: #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.enquire-modal .text-accent {
   background: linear-gradient(45deg, var(--accent-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.enquire-modal .muted {
  color: #aaa;
  margin-bottom: 14px;
}

.enquire-modal .form-control, .form-select {
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rbga(255,255,255,0.6);
  color: #444;
}

.enquire-modal .form-control::placeholder, .form-select option {
  color: #444;
}

.enquire-modal .btn-cta {
  background: linear-gradient(135deg, #a05f3d, #cf956e);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

.enquire-modal .btn-cta:hover {
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  color: #fff; 
}

.enquire-modal .captcha-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #a05f3d, #cf956e);
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
}

.enquire-modal .refresh-captcha {
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
}

.enquire-modal .refresh-captcha:hover {
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .enquire-modal .modal-img {
    display: none;
  }
  .enquire-modal .form-section {
    padding: 20px;
  }
}
/*---------------------------------------------- 
# vission and mission
 --------------------------------------------*/
 
 .vision-mission .vision-mission-card {
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    background: linear-gradient(315deg, #F2EEF1, #FFE1E2);
  }
  .vision-mission .vision-mission-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  }
  .vision-mission .vision-mission-card .border-pm:hover {
    border-color: var(--accent-color)!important;
  }
  .vision-mission .vision-mission-card.border-success:hover {
    border-color: var(--accent-color)!important;
  }

  .btn-primary{
    background-color: var(--accent-color);
    border:1px solid var(--accent-color);
  }
  .btn-primary:hover{
    background-color: var(--default-color);
    border:1px solid var(--default-color);
  }