/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font:"Poppins", sans-serif;
  --heading-font:"Sofia Sans", sans-serif;
  --nav-font: "Sofia Sans", 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: #000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f25e46; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
   --ngo-blue: #263B9B;
    --ngo-orange: #faa624;
    --ngo-green: #659B62;
    --ngo-cream: #F7F8F1;
     --uf-navy: #263B9B;
    --uf-navy-dark: #1d2e45;
    --uf-yellow: #faa624;
    --uf-yellow-light: #fff7cc;
    --uf-text: #000000;
    --uf-muted: #000000;
    --uf-white: #ffffff;
    --uf-light: #f6f8fa;
    --uf-border: #e5e9ef;
    --uf-shadow: 0 15px 40px rgba(38, 59, 86, 0.08);
}

/* 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: #000;  /* The default color of the main navmenu links */
  --nav-hover-color: #f25e46; /* 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: #000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f25e46; /* 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: #fff7f7bf;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #f25e46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --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);
  font-size: 16px;
}

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

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

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

.bg-primary{
  background-color: #f25e46!important;
}
.text-primary{
  color: #f25e46!important;
}

/* 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: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 20px 0; */
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  /* border-radius: 50px; */
  /* padding: 5px 25px; */
  box-shadow: 2px 7px 10px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

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

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

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

.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 {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
   .navmenu a:focus {
    color: var(--nav-color);
    padding: 6px 13px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus em {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    /*padding-right: 0;*/
  }
.navmenu li > a {
    position: relative;
    padding: 10px 12px;
    color: #263B9B;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navmenu li > a::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #faa624;
    border-radius: 50%;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: all 0.3s ease;
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    color: #263B9B !important;
    font-weight: 700;
    background: transparent;
    border-radius: 0;
    border-bottom: none;
    box-shadow: none;
    padding-left: 20px;
}

.navmenu li:hover > a::before,
.navmenu .active::before {
    transform: translateY(-50%) scale(1);
}

.navmenu li > a::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    background: #faa624;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
}

.navmenu li:hover > a::after,
.navmenu .active::after {
    transform: scaleX(1);
}

  .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 em {
    font-size: 12px;
  }

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: 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 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 em {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

  .navmenu .active i,
  .navmenu .active:focus em {
    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-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  color: #000;
  display: inline-block;
  line-height: 1;
  font-size: 17px;
}

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

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

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

.footer .copyright p {
  margin-bottom: 0;
  font-size: 15px;
}
.footer .copyright a {
  /* margin-bottom: 0; */
  font-size: 15px;
}

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

/*--------------------------------------------------------------
# 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 em {
  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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0 40px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.page-title a {  
  color: #e1e1e1;
  font-size: 18px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color:#ffc107;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #e1e1e1;
}

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



@media (max-width: 768px) {

  section,
  .section {
     padding: 5px 0;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 100px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge em {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link em {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  /* right: 30px; */
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  /* margin-top: 5rem; */
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon em {
  font-size: 1.5rem;
  color: var(--accent-color);
}
.hero .stat-item .stat-icon em {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon em {
  color: var(--contrast-color);
}
.hero .stat-item:hover .stat-icon em {
  color: var(--contrast-color);
}


.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content .h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: #000;
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 20px;
}

.about .about-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li em {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info em {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

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

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: -45px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link em {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul em {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box em {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange em {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue em {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green em {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red em {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon em {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  /* opacity: 0.9; */
  transition: 0.3s;
  /* filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

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

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

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

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

.testimonials .testimonial-item .stars em {
  color: #ffc107;
  margin: 0 1px;
}

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

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

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

.testimonials .testimonial-item p {
  /* font-style: italic; */
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: #fff;
  font-size: 30px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #fcd708;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.stats .stats-item p {
  color: #e1e1e1;
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  border:1px solid #e1e1e1;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more em {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover em {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li em {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li em {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

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

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box em {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

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

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn em {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a em {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active em {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a em {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul em {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #ff0818;
    font-weight: bold;
    margin-bottom: 2px;
    border: none !important;
}
.nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    background-color: #eeeeee;
    color: #000;
    border: none !important;
    margin-right: 2px;
    /* border-radius: 20px; */
}
.nav-item{
  border: none !important;
}

.dropdown-item.active, .dropdown-item:active {
    color:#fff;
    text-decoration: none;
    background-color: #2e30a1;
}

ul.list{
list-style-type: none;
padding-left:0;
}

ul.list li {
    display: flex;
    margin-bottom: 7px;
}

ul.list li strong {
    display: contents;
    margin-bottom: 4px;
    color: #c11e26;
}

ul.list li::before {
    font-family: "FontAwesome";
    content: "\f058";
  color:#ff1515;
    padding: 0 10px 0 0;
}

ul.list2{
list-style-type: none;
padding-left:0;
padding-bottom: 5px;
    border-bottom: 1px solid #bababa;
font-weight: bold;
font-size: 18px;
/* padding: 6px; */
}

ul.lis2t li {
    display: flex;
    margin-bottom: 7px;}

ul.list2 li strong {
    display: contents;
    margin-bottom: 4px;
    color: #c11e26;
}

ul.list2 li::before {
    font-family: "FontAwesome";
    /* content: "\f058"; */
  color:#ff1515;
    padding: 0 10px 0 0;
    
}


#urjaaVolunteerModal .modal-dialog {
    max-width: 650px;
}

#urjaaVolunteerModal .modal-content {
    background: transparent;
}

#urjaaVolunteerModal .modal-body {
    padding: 0;
}

#urjaaVolunteerModal .modal-body img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    #urjaaVolunteerModal .modal-dialog {
        margin: 10px;
    }
}

.bg-blue{
  background-image:linear-gradient(135deg, #0b138f 0%, #3c1500 45%, #aa250b 100%);
}

@media (max-width: 768px) {
.header .logo img {
  max-height: 45px;
  margin-right: 8px;
}
}


/* =========================================================
   URJAA FOUNDATION - DONATION FORM
   Theme: Blue / White / Clean NGO Design
========================================================= */

.nlf-form-heading {
    color: #f25e46;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.nlf-form-divider {
    width: 100%;
    height: 1px;
    background: rgba(20, 125, 184, 0.15);
    margin-bottom: 24px;
}


/* ---------------------------------------------------------
   FORM CONTAINER
--------------------------------------------------------- */

form.nlf-donation-form,
form[action="/form/donation"] {
    border: 1px solid rgba(20, 125, 184, 0.10);
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(16, 40, 58, 0.08) !important;
}


/* ---------------------------------------------------------
   INPUTS
--------------------------------------------------------- */

form[action="/form/donation"] .form-control {
    min-height: 52px;
    border: 1px solid #dce5eb;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 15px;
    color: #10283a;
    background-color: #fff;
    box-shadow: none;
    transition: all 0.3s ease;
}

form[action="/form/donation"] textarea.form-control {
    min-height: 115px;
    resize: vertical;
}

form[action="/form/donation"] .form-control::placeholder {
    color: #7c8b95;
    opacity: 1;
}

form[action="/form/donation"] .form-control:hover {
    border-color: #b9d5e5;
}

form[action="/form/donation"] .form-control:focus {
    border-color: #f25e46;
    box-shadow: 0 0 0 3px rgba(20, 125, 184, 0.10);
    outline: none;
}


/* ---------------------------------------------------------
   AMOUNT FIELD
--------------------------------------------------------- */

.nlf-amount-field {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 52px;
    border: 1px solid #dce5eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.nlf-amount-field > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    background: #f25e46;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.nlf-amount-field input {
    flex: 1;
    width: 100%;
    border: 0;
    outline: 0;
    padding: 13px 16px;
    font-size: 15px;
    color: #10283a;
    background: transparent;
}

.nlf-amount-field:focus-within {
    border-color: #f25e46;
    box-shadow: 0 0 0 3px rgba(20, 125, 184, 0.10);
}

.nlf-amount-field input::placeholder {
    color: #7c8b95;
}


/* Remove number arrows */

.nlf-amount-field input::-webkit-outer-spin-button,
.nlf-amount-field input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nlf-amount-field input[type="number"] {
    -moz-appearance: textfield;
}


/* ---------------------------------------------------------
   VALIDATION
--------------------------------------------------------- */

.help-block {
    display: block;
    margin-top: 6px;
    color: #dc3545;
    font-size: 13px;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   CONFIRMATION CHECKBOX
--------------------------------------------------------- */

.nlf-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #f5faff;
    border: 1px solid rgba(20, 125, 184, 0.12);
    border-radius: 10px;
}

.nlf-check input[type="checkbox"] {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 2px;
    accent-color: #f25e46;
    cursor: pointer;
}

.nlf-check label {
    margin: 0;
    color: #334955;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
}


/* ---------------------------------------------------------
   DONATE BUTTON - MAIN FOCUS
--------------------------------------------------------- */

#nlf-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 54px;
    padding: 14px 32px !important;

    border: 0 !important;
    border-radius: 8px !important;

    background: linear-gradient(
        135deg,
        #f25e46 0%,
        #09679e 100%
    ) !important;

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;

    box-shadow:
        0 8px 20px rgba(20, 125, 184, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

    overflow: hidden;
}


/* Button shine */

#nlf-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.20),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.6s ease;
}


/* Hover */

#nlf-submit-btn:not(:disabled):hover {
    background: linear-gradient(
        135deg,
        #09679e 0%,
        #075982 100%
    ) !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(9, 103, 158, 0.28);
}

#nlf-submit-btn:not(:disabled):hover::before {
    left: 140%;
}


/* Active */

#nlf-submit-btn:not(:disabled):active {
    transform: translateY(0);
    box-shadow:
        0 5px 12px rgba(9, 103, 158, 0.20);
}


/* Arrow */

#nlf-submit-btn em {
    font-size: 14px;
    transition: transform 0.3s ease;
}

#nlf-submit-btn:not(:disabled):hover em {
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   DISABLED BUTTON
--------------------------------------------------------- */

#nlf-submit-btn:disabled,
#nlf-submit-btn[disabled] {
    background: #c9d4da !important;
    color: #ffffff !important;

    cursor: not-allowed;
    opacity: 1;

    box-shadow: none !important;
    transform: none !important;
}

#nlf-submit-btn:disabled::before {
    display: none;
}


/* ---------------------------------------------------------
   FORM SPACING
--------------------------------------------------------- */

form[action="/form/donation"] .form-group {
    margin-bottom: 0;
}

form[action="/form/donation"] .row.g-4 {
    --bs-gutter-y: 1.5rem;
}


/* ---------------------------------------------------------
   DONATION PAGE CONTENT
--------------------------------------------------------- */

.page-title.bg-blue {
    background: linear-gradient(135deg, #0b138f 0%, #3c1500 45%, #aa250b 100%);
}

.page-title.bg-blue h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-title .breadcrumbs ol {
    margin: 0;
    padding: 0;
}

.page-title .breadcrumbs li,
.page-title .breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
}

.page-title .breadcrumbs .current {
    color: #fff;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767.98px) {

    form[action="/form/donation"] {
        padding: 22px !important;
        border-radius: 12px;
    }

    .nlf-form-heading {
        font-size: 21px;
    }

    .page-title.bg-blue h1 {
        font-size: 30px;
    }

    #nlf-submit-btn {
        width: 100%;
        min-height: 52px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .nlf-check {
        padding: 14px;
    }

}

/* mycss */


/* =========================================================
   URJAA FOUNDATION
   PREMIUM BRAND COLOUR THEME
   Logo Palette:
   Blue + Orange + Yellow/Gold + White
========================================================= */


/* =========================================================
   ABOUT SECTION
========================================================= */

.urjaa-premium-about {
    position: relative;
    padding: 105px 0 115px;
    background: #ffffff;
    overflow: hidden;
}


/* Subtle yellow/orange glow */

.urjaa-premium-about::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -260px;
    left: -220px;

    border-radius: 50%;

    background: rgba(255, 193, 7, 0.08);

    pointer-events: none;
}


.urjaa-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.urjaa-about-image-area {
    position: relative;
    padding: 20px 35px 45px 0;
}

.urjaa-about-image-wrap {
    position: relative;
    z-index: 2;
}


.urjaa-about-image {
    width: 100%;
    height: 510px;

    display: block;

    object-fit: cover;

    border-radius: 6px 70px 6px 70px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 25px 55px rgba(31, 52, 145, 0.20);
}


/* Orange / Yellow border */

.urjaa-image-border {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 25px;
    left: 25px;

    border: 3px solid #faa624;

    border-radius: 6px 70px 6px 70px;

    z-index: 1;
}


/* =========================================================
   IMAGE TAG
========================================================= */

.urjaa-image-tag {
    position: absolute;
    z-index: 4;

    left: 25px;
    top: 25px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 17px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 30px;

    color: #263b9b;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .5px;

    box-shadow: 0 8px 25px rgba(31, 52, 145, .18);
}


.urjaa-tag-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #faa624;

    color: #ffffff;

    font-size: 12px;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.urjaa-years-card {
    position: absolute;

    z-index: 5;

    right: 0;
    bottom: 5px;

    min-width: 245px;

    display: flex;
    align-items: center;

    padding: 23px 25px;

    background: #263b9b;

    border-radius: 5px 22px 5px 22px;

    border-bottom: 4px solid #faa624;

    box-shadow:
        0 18px 40px rgba(31, 52, 145, .30);
}


.urjaa-years-number {
    color: #ffd21c;

    font-size: 48px;
    line-height: 1;

    font-weight: 800;
}


.urjaa-years-divider {
    width: 1px;
    height: 42px;

    margin: 0 17px;

    background: rgba(255,255,255,.35);
}


.urjaa-years-text {
    color: #ffffff;

    font-size: 13px;
    line-height: 1.5;

    font-weight: 600;
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.urjaa-image-dot {
    position: absolute;
    border-radius: 50%;
}


.urjaa-image-dot-one {
    width: 80px;
    height: 80px;

    left: -35px;
    top: -15px;

    background: #ffd21c;
}


.urjaa-image-dot-two {
    width: 42px;
    height: 42px;

    left: -12px;
    bottom: 5px;

    background: #faa624;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.urjaa-about-content {
    max-width: 650px;
}


.urjaa-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 16px;

    color: #faa624;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.urjaa-eyebrow-line {
    width: 38px;
    height: 3px;

    background: #ffd21c;

    border-radius: 10px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.urjaa-about-title {
    margin: 0;

    color: #f25e46;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 400;

    letter-spacing: -.8px;
}


.urjaa-about-title span {
    display: block;

    color: #263b9b;

    font-weight: 800;
}


/* =========================================================
   TITLE DECORATION
========================================================= */

.urjaa-title-decoration {
    display: flex;
    align-items: center;

    gap: 6px;

    margin: 20px 0 27px;
}


.urjaa-title-decoration span {
    width: 35px;
    height: 3px;

    background: #faa624;

    border-radius: 10px;
}


.urjaa-title-decoration em {
    width: 8px;
    height: 8px;

    display: block;

    background: #ffd21c;

    border-radius: 50%;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.urjaa-about-description {
    margin: 0 0 17px;

    color: #000;

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.urjaa-about-note {
    display: flex;
    align-items: center;

    gap: 17px;

    margin: 27px 0 30px;

    padding: 17px 20px;

    background:
        linear-gradient(
            90deg,
            #fff8e0 0%,
            #fffaf0 100%
        );

    border: 1px solid #ffe29a;

    border-left: 4px solid #faa624;

    border-radius: 8px;
}


.urjaa-note-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #263b9b;

    color: #ffd21c;

    border-radius: 50%;

    font-size: 18px;
}


.urjaa-about-note h4 {
    margin: 0 0 3px;

    color: #263b9b;

    font-size: 16px;
    font-weight: 700;
}


.urjaa-about-note p {
    margin: 0;

    color: #000;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   BUTTON
========================================================= */

.urjaa-premium-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 14px 23px;

    color: #ffffff !important;

    background: #faa624;

    border: 2px solid #faa624;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all .3s ease;

    box-shadow: 0 8px 20px rgba(245, 130, 32, .22);
}


.urjaa-premium-button em {
    transition: transform .3s ease;
}


.urjaa-premium-button:hover {
    color: #ffffff !important;

    background: #263b9b;

    border-color: #263b9b;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(38, 59, 155, .25);
}


.urjaa-premium-button:hover em {
    transform: translateX(5px);
}


/* =========================================================
   IMPACT SECTION
========================================================= */

.urjaa-impact-section {
    position: relative;

    padding: 95px 0 100px;

    background:
        linear-gradient(135deg, #0b138f 0%, #3c1500 45%, #aa250b 100%);

    overflow: hidden;
}


/* Orange ambient glow */

.urjaa-impact-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -330px;
    right: -170px;

    border-radius: 50%;

    background: rgba(255, 210, 28, .12);

    box-shadow:
        0 0 0 70px rgba(245, 130, 32, .035),
        0 0 0 140px rgba(255, 210, 28, .025);
}


/* Bottom orange glow */

.urjaa-impact-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -280px;
    left: -150px;

    border-radius: 50%;

    background: rgba(245, 130, 32, .12);
}


/* =========================================================
   IMPACT HEADING
========================================================= */

.urjaa-impact-heading {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.urjaa-impact-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 13px;

    color: #ffd21c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.urjaa-impact-eyebrow span {
    width: 28px;
    height: 2px;

    background: #faa624;

    border-radius: 10px;
}


.urjaa-impact-heading h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 400;
}


.urjaa-impact-heading h2 strong {
    font-weight: 800;

    color: #ffffff;
}


.urjaa-impact-heading p {
    max-width: 580px;

    margin: 0 auto;

    color: rgba(255,255,255,.75);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   IMPACT GRID
========================================================= */

.urjaa-impact-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* =========================================================
   IMPACT CARD
========================================================= */

.urjaa-impact-card {
    position: relative;

    min-height: 285px;

    padding: 27px 25px;

    background: rgba(255,255,255,.075);

    border: 1px solid rgba(255,255,255,.17);

    border-radius: 12px;

    overflow: hidden;

    transition: all .35s ease;

    backdrop-filter: blur(5px);
}


/* Top orange line */

.urjaa-impact-card::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 3px;

    left: 0;
    top: 0;

    background:
        linear-gradient(
            90deg,
            #faa624,
            #ffd21c
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;
}


.urjaa-impact-card:hover {
    transform: translateY(-8px);

    background: rgba(255,255,255,.12);

    border-color: rgba(255,210,28,.55);

    box-shadow:
        0 20px 45px rgba(0,0,0,.18);
}


.urjaa-impact-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   CARD TOP
========================================================= */

.urjaa-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 27px;
}


.urjaa-stat-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,210,28,.12);

    border: 1px solid rgba(255,210,28,.40);

    color: #ffd21c;

    font-size: 21px;

    transition: all .3s ease;
}


.urjaa-impact-card:hover .urjaa-stat-icon {
    background: #faa624;

    border-color: #faa624;

    color: #ffffff;

    transform: rotate(-5deg);
}


.urjaa-card-number {
    color: rgba(255,255,255,.30);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   STAT NUMBER
========================================================= */

.urjaa-stat-number {
    color: #ffffff;

    font-size: 43px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}


.urjaa-stat-number span {
    color: #ffd21c;
}


/* =========================================================
   STAT LINE
========================================================= */

.urjaa-stat-line {
    width: 38px;
    height: 3px;

    margin: 17px 0 15px;

    background:
        linear-gradient(
            90deg,
            #faa624,
            #ffd21c
        );

    border-radius: 10px;
}


.urjaa-impact-card p {
    margin: 0;

    max-width: 220px;

    color: rgba(255,255,255,.80);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .urjaa-about-grid {
        gap: 55px;
    }

    .urjaa-about-title {
        font-size: 42px;
    }

    .urjaa-about-image {
        height: 460px;
    }

    .urjaa-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 991px) {

    .urjaa-premium-about {
        padding: 75px 0 90px;
    }

    .urjaa-about-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .urjaa-about-image-area {
        max-width: 600px;

        width: 90%;

        margin: 0 auto;
    }

    .urjaa-about-content {
        max-width: 100%;
    }

    .urjaa-impact-section {
        padding: 75px 0;
    }

}


@media (max-width: 767px) {

    .urjaa-about-title {
        font-size: 38px;
    }

    .urjaa-impact-heading h2 {
        font-size: 34px;
    }

    .urjaa-impact-grid {
        grid-template-columns: 1fr;
    }

    .urjaa-impact-card {
        min-height: auto;
    }

}


@media (max-width: 575px) {

    .urjaa-premium-about {
        padding: 60px 0 75px;
    }

    .urjaa-about-image-area {
        width: 88%;

        padding-right: 15px;
        padding-bottom: 35px;
    }

    .urjaa-about-image {
        height: 350px;

        border-radius: 4px 40px 4px 40px;
    }

    .urjaa-image-border {
        top: 15px;
        left: 15px;

        border-radius: 4px 40px 4px 40px;
    }

    .urjaa-image-tag {
        top: 15px;
        left: 15px;

        padding: 8px 12px;

        font-size: 10px;
    }

    .urjaa-years-card {
        right: -5px;
        bottom: 0;

        min-width: 200px;

        padding: 17px 18px;
    }

    .urjaa-years-number {
        font-size: 38px;
    }

    .urjaa-years-text {
        font-size: 11px;
    }

    .urjaa-about-title {
        font-size: 32px;
    }

    .urjaa-about-description {
        font-size: 15px;
    }

    .urjaa-about-note {
        align-items: flex-start;
    }

    .urjaa-impact-heading h2 {
        font-size: 30px;
    }

    .urjaa-impact-heading p {
        font-size: 14px;
    }

    .urjaa-stat-number {
        font-size: 38px;
    }

}


/* =========================================================
   URJAA FOUNDATION
   INITIATIVES / CSR / BLOG PREMIUM DESIGN

   BRAND:
   Blue    #263B9B
   Deep    #172D8B
   Orange  #faa624
   Yellow  #FFD21C
========================================================= */


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.urjaa-section-heading {
    position: relative;
    text-align: center;

    max-width: 750px;

    margin: 0 auto 55px;
}

.urjaa-heading-eyebrow {
    display: block;

    margin-bottom: 12px;

    color: #faa624;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.urjaa-section-heading h2 {
    margin: 0;

    color: #f25e46;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 400;
}

.urjaa-section-heading h2 strong {
    font-weight: 800;

    color: #263b9b;
}

.urjaa-heading-decoration {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 6px;

    margin-top: 18px;
}

.urjaa-heading-decoration span {
    width: 32px;
    height: 3px;

    background: #faa624;

    border-radius: 10px;
}

.urjaa-heading-decoration em {
    width: 8px;
    height: 8px;

    display: block;

    background: #ffd21c;

    border-radius: 50%;
}


/* =========================================================
   PLASTIC CAMPAIGN
========================================================= */

.urjaa-campaign-section {
    position: relative;

    padding: 70px 0;

    background: linear-gradient(135deg, #0b138f 0%, #3c1500 45%, #aa250b 100%);

    overflow: hidden;
}

.urjaa-campaign-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -170px;

    border-radius: 50%;

    background: rgba(255, 210, 28, .18);
}

.urjaa-campaign-card {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 30px;

    padding: 38px 45px;

    background: #ffffff;

    border-radius: 15px;

    border-left: 5px solid #faa624;

    box-shadow:
        0 18px 50px rgba(38, 59, 155, .10);
}

.urjaa-campaign-icon {
    flex: 0 0 75px;

    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #263b9b;

    color: #ffd21c;

    font-size: 29px;

    box-shadow:
        0 10px 25px rgba(38, 59, 155, .22);
}

.urjaa-campaign-content {
    flex: 1;
}

.urjaa-campaign-label {
    margin-bottom: 8px;

    color: #faa624;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.urjaa-campaign-content h2 {
    margin: 0;

    color: #263b9b;

    font-size: 28px;
    font-weight: 800;
}

.urjaa-campaign-line {
    width: 50px;
    height: 3px;

    margin: 14px 0;

    background:
        linear-gradient(
            90deg,
            #faa624,
            #ffd21c
        );

    border-radius: 10px;
}

.urjaa-campaign-content p {
    margin: 0;

    color: #626b78;

    font-size: 15px;

    line-height: 1.8;
}

.urjaa-campaign-symbol {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #faa624;

    font-size: 34px;

    border: 2px dashed #ffd21c;

    border-radius: 50%;
}


/* =========================================================
   INITIATIVES SECTION
========================================================= */

.urjaa-initiatives-section {
    padding: 100px 0;

    background: #ffffff;
}


/* =========================================================
   INITIATIVE CARD
========================================================= */

.urjaa-initiative-card {
    position: relative;

    height: 100%;

    min-height: 300px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #edf0f7;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(38, 59, 155, .07);

    transition: all .35s ease;
}

.urjaa-initiative-card::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 4px;

    left: 0;
    top: 0;

    background:
        linear-gradient(
            90deg,
            #263b9b,
            #faa624,
            #ffd21c
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;
}

.urjaa-initiative-card:hover {
    transform: translateY(-8px);

    border-color: rgba(38, 59, 155, .15);

    box-shadow:
        0 20px 45px rgba(38, 59, 155, .14);
}

.urjaa-initiative-card:hover::before {
    transform: scaleX(1);
}


/* Top */

.urjaa-initiative-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.urjaa-initiative-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff8e0;

    color: #faa624;

    border: 1px solid #ffe19a;

    font-size: 23px;

    transition: all .3s ease;
}

.urjaa-initiative-card:hover .urjaa-initiative-icon {
    color: #ffffff;

    background: #f25e46;

    border-color: #f25e46;

    transform: translateY(-2px);
}

.urjaa-initiative-number {
    color: #d9ddea;

    font-size: 28px;

    font-weight: 800;
}


/* Heading */

.urjaa-initiative-card h3 {
    margin: 0 0 13px;

    color: #263b9b;

    font-size: 24px;

    line-height: 1.4;

    font-weight: 800;
}


/* Paragraph */

.urjaa-initiative-card p {
    margin: 0 0 22px;

    color: #000000;

    font-size: 15px;

    line-height: 1.75;
}


/* Read more */

.urjaa-initiative-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #faa624 !important;

    text-decoration: none;

    font-size: 14px;

    /* font-weight: 800; */
}

.urjaa-initiative-link em {
    transition: transform .3s ease;
}

.urjaa-initiative-link:hover {
    color: #263b9b !important;
}

.urjaa-initiative-link:hover em {
    transform: translateX(5px);
}


/* =========================================================
   CSR SECTION
========================================================= */

.urjaa-csr-section {
    padding: 100px 0;

    background:
      linear-gradient(180deg, #ffdedea6 0%, #dadada08 100%);
}


/* CSR Card */

.urjaa-csr-card {
    height: 100%;

    background: #ffffff;

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid #e9ecf4;

    box-shadow:
        0 12px 35px rgba(38, 59, 155, .08);

    transition: all .35s ease;
}

.urjaa-csr-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 45px rgba(38, 59, 155, .15);
}


/* Image */

.urjaa-csr-image {
    position: relative;

    height: 270px;

    overflow: hidden;
}

.urjaa-csr-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.urjaa-csr-card:hover .urjaa-csr-image img {
    transform: scale(1.06);
}


/* Number */

.urjaa-csr-number {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #263b9b;

    color: #ffd21c;

    font-size: 13px;

    font-weight: 800;

    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}


/* CSR Content */

.urjaa-csr-content {
    padding: 25px 25px 28px;

    border-top: 4px solid #faa624;
}

.urjaa-csr-label {
    display: block;

    margin-bottom: 9px;

    color: #faa624;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.urjaa-csr-content h3 {
    margin: 0;

    color: #263b9b;

    font-size: 19px;

    line-height: 1.45;

    font-weight: 800;
}


/* =========================================================
   BLOG SECTION
========================================================= */

.urjaa-blog-section {
    padding: 100px 0;

    background: #ffffff;
}


/* Blog Card */

.urjaa-blog-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e8ebf3;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(38, 59, 155, .07);

    transition: all .35s ease;
}

.urjaa-blog-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 45px rgba(38, 59, 155, .14);
}


/* Blog Image */

.urjaa-blog-image {
    position: relative;

    display: block;

    height: 235px;

    overflow: hidden;
}

.urjaa-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.urjaa-blog-card:hover .urjaa-blog-image img {
    transform: scale(1.06);
}


/* Blog category */

.urjaa-blog-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 12px;

    color: #ffffff;

    background: #faa624;

    border-radius: 4px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* Blog Content */

.urjaa-blog-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 25px;
}

.urjaa-blog-date {
    display: block;

    margin-bottom: 8px;

    color: #faa624;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.urjaa-blog-content h3 {
    margin: 0 0 13px;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 800;
}

.urjaa-blog-content h3 a {
    color: #263b9b;

    text-decoration: none;

    transition: color .3s ease;
}

.urjaa-blog-content h3 a:hover {
    color: #faa624;
}

.urjaa-blog-content p {
    margin: 0;

    color: #69717d;

    font-size: 14px;

    line-height: 1.75;
}


/* Blog Read More */

.urjaa-blog-read {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: auto;
    padding-top: 20px;

    color: #263b9b !important;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;
}

.urjaa-blog-read em {
    color: #faa624;

    transition: transform .3s ease;
}

.urjaa-blog-read:hover {
    color: #faa624 !important;
}

.urjaa-blog-read:hover em {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .urjaa-campaign-card {
        padding: 32px;
    }

    .urjaa-campaign-symbol {
        display: none;
    }

    .urjaa-section-heading h2 {
        font-size: 36px;
    }

    .urjaa-csr-section,
    .urjaa-blog-section,
    .urjaa-initiatives-section {
        padding: 80px 0;
    }

}


@media (max-width: 767px) {

    .urjaa-campaign-section {
        padding: 55px 0;
    }

    .urjaa-campaign-card {
        display: block;

        padding: 30px;

        text-align: center;
    }

    .urjaa-campaign-icon {
        margin: 0 auto 20px;
    }

    .urjaa-campaign-content h2 {
        font-size: 24px;
    }

    .urjaa-campaign-line {
        margin: 14px auto;
    }

    .urjaa-campaign-content p {
        font-size: 14px;
    }

    .urjaa-section-heading {
        margin-bottom: 40px;
    }

    .urjaa-section-heading h2 {
        font-size: 32px;
    }

    .urjaa-initiative-card {
        min-height: auto;
    }

    .urjaa-csr-image {
        height: 250px;
    }

}


@media (max-width: 575px) {

    .urjaa-campaign-card {
        padding: 25px 20px;
    }

    .urjaa-campaign-content h2 {
        font-size: 21px;
    }

    .urjaa-section-heading h2 {
        font-size: 29px;
    }

    .urjaa-initiatives-section,
    .urjaa-csr-section,
    .urjaa-blog-section {
        padding: 65px 0;
    }

    .urjaa-initiative-card {
        padding: 25px;
    }

    .urjaa-csr-image {
        height: 220px;
    }

    .urjaa-blog-image {
        height: 220px;
    }

}

/* =========================================================
   URJAA FOUNDATION PREMIUM FOOTER
========================================================= */

.urjaa-footer {
    position: relative;

    color: #ffffff;

    background: #172d8b;

    overflow: hidden;
}


/* Decorative background */

.urjaa-footer::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -180px;
    top: -200px;

    border-radius: 50%;

    background: rgba(255, 210, 28, 0.08);

    pointer-events: none;
}

.urjaa-footer::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(245, 130, 32, 0.08);

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.urjaa-footer-main {
    position: relative;

    z-index: 2;

    padding: 75px 0 60px;

    background:
      linear-gradient(135deg, #0b138f 0%, #3c1500 45%, #aa250b 100%);
}


/* =========================================================
   FOOTER ABOUT
========================================================= */

.urjaa-footer-about {
    padding-right: 35px;
}


/* Logo / Name */

.urjaa-footer-logo {
    display: inline-flex;

    align-items: center;

    color: #ffffff !important;

    text-decoration: none;

    font-size: 29px;

    font-weight: 800;

    letter-spacing: -.5px;
}

.urjaa-footer-logo::before {
    /* content: ""; */

    width: 8px;
    height: 32px;

    margin-right: 12px;

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            #ffd21c,
            #faa624
        );
}

.urjaa-footer-logo span {
    color: #ffffff;
}


/* Accent */

.urjaa-footer-accent {
    width: 55px;
    height: 4px;

    margin: 17px 0 28px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #faa624,
            #ffd21c
        );
}


/* =========================================================
   CONTACT
========================================================= */

.urjaa-footer-contact {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.urjaa-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}

.urjaa-contact-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #ffd21c;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 14px;

    transition: all .3s ease;
}

.urjaa-contact-item:hover .urjaa-contact-icon {
    color: #ffffff;

    background: #faa624;

    border-color: #faa624;

    transform: translateY(-2px);
}

.urjaa-contact-text {
    flex: 1;
}

.urjaa-contact-text strong {
    display: block;

    margin-bottom: 4px;

    color: #ffd21c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;
}

.urjaa-contact-text p {
    margin: 0;

    color: rgba(255, 255, 255, .78);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.urjaa-footer-column {
    position: relative;
}

.urjaa-footer-column h4 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;
}


/* Heading decoration */

.urjaa-footer-title-line {
    display: flex;

    align-items: center;

    gap: 5px;

    margin: 14px 0 22px;
}

.urjaa-footer-title-line span {
    width: 35px;
    height: 3px;

    border-radius: 10px;

    background: #faa624;
}

.urjaa-footer-title-line em {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #ffd21c;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.urjaa-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.urjaa-footer-links li {
    margin-bottom: 12px;

    padding: 0;
}

.urjaa-footer-links li:last-child {
    margin-bottom: 0;
}

.urjaa-footer-links a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, .76) !important;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.5;

    transition: all .3s ease;
}

.urjaa-footer-links a em {
    color: #faa624;

    font-size: 9px;

    transition: transform .3s ease;
}

.urjaa-footer-links a:hover {
    color: #ffffff !important;

    transform: translateX(4px);
}

.urjaa-footer-links a:hover em {
    color: #ffd21c;

    transform: translateX(3px);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.urjaa-footer-bottom {
    position: relative;

    z-index: 3;

    border-top: 1px solid rgba(255, 255, 255, .12);

    background: #122575;
}

.urjaa-footer-bottom-inner {
    padding: 22px 0;

    text-align: center;
}

.urjaa-footer-bottom p {
    margin: 0;

    color: #fff;

    font-size: 15px;

    line-height: 1.6;
}

.urjaa-footer-bottom p a {
    color: #ff9d1c !important;

    /* font-weight: 700; */
      font-size: 15px;

    text-decoration: none;

    transition: color .3s ease;
}

.urjaa-footer-bottom p a:hover {
    color: #faa624 !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .urjaa-footer-main {
        padding: 60px 0 45px;
    }

    .urjaa-footer-about {
        padding-right: 0;
    }

}


@media (max-width: 767px) {

    .urjaa-footer-main {
        padding: 50px 0 35px;
    }

    .urjaa-footer-logo {
        font-size: 25px;
    }

    .urjaa-footer-column {
        margin-top: 10px;
    }

    .urjaa-contact-item {
        gap: 12px;
    }

}


@media (max-width: 575px) {

    .urjaa-footer-main {
        padding: 45px 0 30px;
    }

    .urjaa-footer-logo {
        font-size: 23px;
    }

    .urjaa-contact-text p,
    .urjaa-footer-links a {
        font-size: 13px;
    }

    .urjaa-footer-bottom-inner {
        padding: 18px 15px;
    }

}




/* =========================================================
   BACKGROUND
   ========================================================= */

.ngo-paper-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}


/* =========================================================
   SUN
   ========================================================= */

.paper-sun {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -80px;
    top: 70px;
    border-radius: 50%;
    background: var(--ngo-orange);
    opacity: .055;
}


/* =========================================================
   LAYERED LANDSCAPE
   ========================================================= */

.paper-hill {
    position: absolute;
    width: 75vw;
    height: 260px;
    border-radius: 50% 50% 0 0;
    transform: rotate(-4deg);
}

.hill-back {
    left: -15%;
    bottom: -160px;
    background: var(--ngo-blue);
    opacity: .035;
}

.hill-middle {
    right: -20%;
    bottom: -130px;
    background: var(--ngo-green);
    opacity: .045;
}

.hill-front {
    left: 15%;
    bottom: -190px;
    background: var(--ngo-orange);
    opacity: .035;
}


/* =========================================================
   PAPER PEOPLE
   ========================================================= */

.paper-person {
    position: absolute;
    opacity: .07;
}

.paper-person .head {
    display: block;
    width: 42px;
    height: 42px;
    margin: auto;
    border-radius: 50%;
    background: var(--ngo-blue);
}

.paper-person .body {
    display: block;
    width: 82px;
    height: 105px;
    margin-top: 8px;
    border-radius: 45px 45px 5px 5px;
    background: var(--ngo-orange);
}


/* woman / community figure */

.person-one {
    left: 17%;
    bottom: 20%;
    transform: scale(1.1);
}

.person-two {
    left: 27%;
    bottom: 13%;
    transform: scale(.75);
}

.person-three {
    right: 18%;
    bottom: 18%;
    transform: scale(.9);
}


/* =========================================================
   OPEN BOOK
   ========================================================= */

.paper-book {
    position: absolute;
    left: 8%;
    top: 30%;
    width: 120px;
    height: 75px;
    opacity: .06;
}

.paper-book::before,
.paper-book::after {
    content: "";
    position: absolute;
    width: 58px;
    height: 70px;
    background: var(--ngo-blue);
    top: 0;
}

.paper-book::before {
    left: 0;
    border-radius: 5px 0 0 5px;
    transform: skewY(-5deg);
}

.paper-book::after {
    right: 0;
    border-radius: 0 5px 5px 0;
    transform: skewY(5deg);
}

.paper-book span {
    position: absolute;
    z-index: 2;
    width: 3px;
    height: 62px;
    left: 58px;
    top: 4px;
    background: var(--ngo-cream);
}


/* =========================================================
   PLANTS
   ========================================================= */

.paper-plant {
    position: absolute;
    width: 90px;
    height: 150px;
    opacity: .07;
}

.paper-plant em {
    position: absolute;
    width: 5px;
    height: 125px;
    left: 43px;
    bottom: 0;
    background: var(--ngo-green);
    transform: rotate(4deg);
}

.paper-plant b {
    position: absolute;
    width: 48px;
    height: 75px;
    background: var(--ngo-green);
    border-radius: 100% 0 100% 0;
}

.plant-one {
    right: 8%;
    top: 28%;
}

.plant-one b {
    left: 5px;
    top: 15px;
    transform: rotate(-35deg);
}

.plant-two {
    right: 30%;
    bottom: 12%;
    transform: scale(.7);
}

.plant-two b {
    right: 0;
    top: 25px;
    transform: rotate(125deg);
}


/* =========================================================
   PAPER GRAIN
   ========================================================= */

.ngo-paper-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .025;

    background-image:
        radial-gradient(#263B9B .6px, transparent .6px);

    background-size: 8px 8px;
}


/* =========================================================
   SLOW MOVEMENT
   ========================================================= */

.paper-sun {
    animation: sunFloat 12s ease-in-out infinite;
}

.paper-person {
    animation: peopleFloat 9s ease-in-out infinite;
}

.paper-plant {
    animation: plantFloat 8s ease-in-out infinite;
}

@keyframes sunFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

@keyframes peopleFloat {

    0%,
    100% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 8px;
    }
}

@keyframes plantFloat {

    0%,
    100% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(2deg);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .paper-sun {
        width: 180px;
        height: 180px;
        right: -60px;
    }

    .paper-book {
        left: -30px;
        transform: scale(.65);
    }

    .person-one {
        left: 3%;
        transform: scale(.65);
    }

    .person-two {
        display: none;
    }

    .person-three {
        right: 2%;
        transform: scale(.6);
    }

    .plant-one {
        right: -25px;
        transform: scale(.65);
    }

    .plant-two {
        display: none;
    }

    .paper-hill {
        width: 120vw;
    }
}


/* =========================================================
   COMMON
========================================================= */

.uf-education-section,
.uf-aid-section,
.uf-process-section {
    position: relative;
    padding: 90px 0;
}

.uf-aid-section {
    background: var(--uf-light);
}

.uf-process-section {
    background: #ffffff;
}


.uf-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.uf-heading-left {
    text-align: left;
}

.uf-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--uf-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.uf-section-heading h2 {
    margin: 0;
    color: var(--uf-navy);
    font-size: clamp(30px, 4vw, 39px);
    line-height: 1.15;
    font-weight: 800;
}

.uf-heading-line {
    width: 55px;
    height: 4px;
    background: var(--uf-yellow);
    border-radius: 20px;
    margin: 18px auto 0;
}

.uf-heading-left .uf-heading-line {
    margin-left: 0;
}


/* =========================================================
   INTRO
========================================================= */

.uf-intro-box {
    position: relative;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: var(--uf-white);
    border: 1px solid var(--uf-border);
    border-radius: 18px;
    padding: 35px 40px;
    margin-bottom: 30px;
    box-shadow: var(--uf-shadow);
}

.uf-intro-number {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--uf-yellow);
    color: var(--uf-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.uf-intro-box p {
    margin: 0;
    color: var(--uf-text);
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.uf-feature-image {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: var(--uf-shadow);
    background: #eee;
}

.uf-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.uf-feature-image:hover img {
    transform: scale(1.02);
}


/* =========================================================
   PROJECT GRID
========================================================= */

.uf-project-grid {
    align-items: stretch;
}

.uf-content-card,
.uf-gallery-card {
    height: 100%;
    background: var(--uf-white);
    border: 1px solid var(--uf-border);
    border-radius: 20px;
    box-shadow: var(--uf-shadow);
    overflow: hidden;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.uf-content-card {
    padding: 35px;
}

.uf-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.uf-card-number {
    width: 42px;
    height: 42px;
    background: var(--uf-navy);
    color: var(--uf-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
}

.uf-card-label {
    color: var(--uf-navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.uf-content-card p {
    color: var(--uf-text);
    line-height: 1.8;
    font-size: 15px;
}


/* =========================================================
   LIST
========================================================= */

.uf-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.uf-list li {
    position: relative;
    padding: 7px 0 7px 28px;
    color: var(--uf-text);
    line-height: 1.65;
}

.uf-list li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--uf-yellow);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--uf-yellow-light);
}

.uf-subheading {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 14px;
    background: var(--uf-yellow-light);
    color: var(--uf-navy);
    border-radius: 6px;
    font-weight: 800;
}

.uf-highlight-text {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid var(--uf-yellow);
    background: #fafbfd;
    color: var(--uf-text);
    font-size: 14px;
    line-height: 1.75;
    border-radius: 0 10px 10px 0;
}


/* =========================================================
   GALLERY
========================================================= */

.uf-gallery-card {
    padding: 25px;
}

.uf-gallery-heading {
    padding: 5px 5px 20px;
}

.uf-gallery-heading span {
    color: var(--uf-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.uf-gallery-heading h3 {
    margin: 6px 0 0;
    color: var(--uf-navy);
    font-size: 25px;
    font-weight: 800;
}

.uf-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.uf-carousel .carousel-item img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.uf-carousel .carousel-control-prev,
.uf-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: var(--uf-white);
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.uf-carousel-arrow {
    color: var(--uf-navy);
    font-size: 34px;
    line-height: 1;
    margin-top: -4px;
}


/* =========================================================
   AID
========================================================= */

.uf-aid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.uf-aid-card {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--uf-white);
    border: 1px solid var(--uf-border);
    border-radius: 20px;
    box-shadow: var(--uf-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uf-aid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(38, 59, 86, 0.12);
}

.uf-aid-icon {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: var(--uf-yellow);
    color: #Fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.uf-aid-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.uf-aid-title span {
    color: #9ca5b1;
    font-size: 13px;
    font-weight: 800;
}

.uf-aid-title h3 {
    margin: 0;
    color: var(--uf-navy);
    font-size: 25px;
    font-weight: 800;
}

.uf-aid-content p {
    color: var(--uf-text);
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.uf-workshop-box {
    margin-top: 25px;
    padding: 20px;
    background: var(--uf-light);
    border-radius: 12px;
}

.uf-workshop-title {
    color: var(--uf-navy);
    font-weight: 800;
    margin-bottom: 10px;
}


/* =========================================================
   PROCESS
========================================================= */

.uf-process {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.uf-process::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--uf-border);
}

.uf-process-item {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.uf-process-item:last-child {
    margin-bottom: 0;
}

.uf-process-number {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--uf-yellow);
    color: var(--uf-navy);
    border: 7px solid #fff;
    box-shadow: 0 5px 20px rgba(38, 59, 86, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.uf-process-content {
    flex: 1;
    background: var(--uf-white);
    border: 1px solid var(--uf-border);
    border-radius: 15px;
    padding: 22px 28px;
    box-shadow: 0 8px 25px rgba(38, 59, 86, 0.05);
}

.uf-process-content p {
    margin: 0;
    color: var(--uf-text);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .uf-education-section,
    .uf-aid-section,
    .uf-process-section {
        padding: 70px 0;
    }

    .uf-aid-wrapper {
        grid-template-columns: 1fr;
    }

    .uf-carousel .carousel-item img {
        height: 400px;
    }

}


@media (max-width: 767px) {

    .uf-education-section,
    .uf-aid-section,
    .uf-process-section {
        padding: 55px 0;
    }

    .uf-section-heading {
        margin-bottom: 35px;
    }

    .uf-section-heading h2 {
        font-size: 32px;
    }

    .uf-intro-box {
        padding: 25px;
        gap: 18px;
    }

    .uf-intro-number {
        width: 45px;
        height: 45px;
    }

    .uf-content-card {
        padding: 25px;
    }

    .uf-gallery-card {
        padding: 18px;
    }

    .uf-gallery-heading h3 {
        font-size: 22px;
    }

    .uf-carousel .carousel-item img {
        height: 320px;
    }

    .uf-aid-card {
        flex-direction: column;
        padding: 25px;
    }

    .uf-aid-icon {
        width: 52px;
        height: 52px;
    }

    .uf-process::before {
        left: 25px;
    }

    .uf-process-item {
        gap: 18px;
    }

    .uf-process-number {
        width: 52px;
        height: 52px;
        border-width: 5px;
        font-size: 15px;
    }

    .uf-process-content {
        padding: 18px;
    }

}


@media (max-width: 575px) {

    .uf-intro-box {
        display: block;
    }

    .uf-intro-number {
        margin-bottom: 18px;
    }

    .uf-carousel .carousel-item img {
        height: 270px;
    }

    .uf-carousel .carousel-control-prev,
    .uf-carousel .carousel-control-next {
        width: 38px;
        height: 38px;
        margin: 0 8px;
    }

    .uf-carousel-arrow {
        font-size: 27px;
    }

    .uf-process-item {
        align-items: flex-start;
    }

    .uf-process-content p {
        font-size: 14px;
    }

}

 {
    padding: 90px 0;
    background: var(--ngo-cream);
    color: var(--uf-text);
}

.uf-eco-section p {
    color: var(--uf-text);
    line-height: 1.85;
    font-size: 15px;
}


/* =========================================================
   HEADINGS
========================================================= */

.uf-eco-eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--ngo-orange);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.uf-eco-section-heading {
    text-align: center;
    max-width: 900px;
    margin: 85px auto 45px;
}

.uf-eco-section-heading:first-child {
    margin-top: 0;
}

.uf-eco-section-heading h2,
.uf-eco-intro-content h2,
.uf-eco-story-heading h2 {
    color: var(--ngo-blue);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.uf-eco-section-heading h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.uf-eco-intro-content h2 {
    font-size: clamp(30px, 4vw, 36px);
}

.uf-eco-title-line {
    width: 55px;
    height: 4px;

    background: var(--ngo-orange);

    border-radius: 20px;
    margin: 18px auto 0;
}


/* =========================================================
   INTRO
========================================================= */

.uf-eco-intro {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 45px;
    align-items: center;

    padding: 40px;

    background: var(--uf-white);

    border-radius: 25px;
    border: 1px solid var(--uf-border);

    box-shadow: var(--uf-shadow);
}

.uf-eco-intro-content {
    padding: 15px;
}

.uf-eco-intro-content .uf-eco-title-line {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 25px;
}

.uf-eco-intro-content p {
    margin-bottom: 25px;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.uf-eco-intro-image {
    position: relative;
    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(38, 59, 86, .15);
}

.uf-eco-intro-image img {
    width: 100%;
    height: 420px;

    object-fit: cover;
    display: block;

    transition: transform .6s ease;
}

.uf-eco-intro-image:hover img {
    transform: scale(1.04);
}


/* IMAGE LABEL */

.uf-eco-image-label {
    position: absolute;

    left: 20px;
    bottom: 20px;

    background: var(--ngo-green);
    color: var(--uf-white);

    padding: 9px 17px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================================================
   LIST
========================================================= */

.uf-eco-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.uf-eco-list li {
    position: relative;

    padding: 8px 0 8px 30px;

    line-height: 1.7;
    color: var(--uf-text);
}

.uf-eco-list li::before {
    content: "";

    position: absolute;

    left: 3px;
    top: 17px;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--ngo-green);

    box-shadow: 0 0 0 4px rgba(101, 155, 98, 0.15);
}


/* =========================================================
   CAMPAIGN INTRO
========================================================= */

.uf-eco-campaign-intro {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 25px;

    padding: 35px;

    background: var(--uf-white);

    border: 1px solid var(--uf-border);
    border-radius: 20px;

    box-shadow: var(--uf-shadow);

    border-top: 4px solid var(--ngo-green);
}

.uf-eco-campaign-icon {
    width: 65px;
    height: 65px;

    border-radius: 16px;

    background: var(--ngo-blue);
    color: var(--uf-white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;

    box-shadow: 0 8px 20px rgba(38, 59, 155, .18);
}


/* =========================================================
   MESSAGE
========================================================= */

.uf-eco-message {
    display: flex;
    gap: 25px;
    align-items: center;

    margin: 35px 0;

    padding: 28px 35px;

    background: var(--ngo-orange);
    color: var(--uf-white);

    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(245, 130, 32, .18);
}

.uf-eco-message-mark {
    font-size: 65px;

    font-family: Georgia, serif;

    line-height: .7;
}

.uf-eco-message p {
    margin: 0;

    color: var(--uf-white);

    font-weight: 700;
}


/* =========================================================
   STORY
========================================================= */

.uf-eco-story {
    margin-top: 70px;
}

.uf-eco-story-heading {
    margin-bottom: 35px;
}

.uf-eco-story-heading .uf-eco-title-line {
    margin-left: 0;
}

.uf-eco-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.uf-eco-story-card {
    position: relative;

    padding: 30px 30px 30px 75px;

    background: var(--uf-white);

    border: 1px solid var(--uf-border);

    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(38, 59, 86, .05);

    transition: .3s ease;
}

.uf-eco-story-card:hover {
    transform: translateY(-5px);

    border-color: rgba(101, 155, 98, .45);

    box-shadow: 0 15px 35px rgba(38, 59, 86, .10);
}

.uf-eco-story-number {
    position: absolute;

    left: 25px;
    top: 28px;

    color: var(--uf-white);
    background: var(--ngo-green);

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 800;
}

.uf-eco-story-card p {
    margin: 0;
}


/* =========================================================
   IMPACT
========================================================= */

.uf-eco-impact {
    display: flex;
    align-items: center;

    gap: 35px;

    margin: 35px 0;

    padding: 35px 45px;

    border-radius: 20px;

    background: var(--ngo-blue);
    color: var(--uf-white);

    overflow: hidden;

    position: relative;
}

.uf-eco-impact::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    border: 25px solid rgba(255,255,255,.08);
}

.uf-eco-impact-number {
    flex-shrink: 0;

    color: var(--ngo-orange);

    font-size: 65px;
    font-weight: 900;

    line-height: .9;
}

.uf-eco-impact-number span {
    display: block;

    margin-top: 8px;

    font-size: 11px;

    letter-spacing: 2px;

    color: var(--uf-white);
}

.uf-eco-impact-content {
    position: relative;
    z-index: 2;
}

.uf-eco-impact-content span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--ngo-orange);
}

.uf-eco-impact-content p {
    margin: 7px 0 0;

    color: var(--uf-white);
}


/* =========================================================
   STORY WIDE
========================================================= */

.uf-eco-story-wide {
    padding: 10px 0;
}

.uf-eco-story-wide p {
    margin: 0 0 22px;
}


/* Add visual separation to long content */

.uf-eco-story-wide p + p {
    padding-top: 18px;

    border-top: 1px solid var(--uf-border);
}


/* =========================================================
   PROCESS IMAGE
========================================================= */

.uf-eco-process-image {
    padding: 20px;

    background: var(--uf-white);

    border: 1px solid var(--uf-border);

    border-radius: 22px;

    box-shadow: var(--uf-shadow);

    text-align: center;
}

.uf-eco-process-image img {
    display: block;

    width: 100%;
    max-width: 1100px;

    margin: auto;

    border-radius: 12px;
}


/* =========================================================
   INSTITUTIONS
========================================================= */

.uf-eco-institution-heading {
    max-width: 1050px;
}

.uf-eco-institutions {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.uf-eco-institution-column {
    background: var(--uf-white);

    border: 1px solid var(--uf-border);

    border-radius: 20px;

    padding: 12px;

    box-shadow: var(--uf-shadow);
}

.uf-eco-institution-item {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 17px 18px;

    background: var(--ngo-cream);

    border-radius: 12px;

    margin-bottom: 8px;

    transition: all .3s ease;
}

.uf-eco-institution-item:last-child {
    margin-bottom: 0;
}

.uf-eco-institution-item:hover {
    background: rgba(101, 155, 98, .12);

    transform: translateX(5px);
}

.uf-eco-institution-item span {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    border-radius: 8px;

    background: var(--ngo-blue);
    color: var(--uf-white);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 10px;
    font-weight: 800;
}

.uf-eco-institution-item p {
    margin: 0;

    font-size: 14px;

    font-weight: 600;

    color: var(--uf-text);
}


/* =========================================================
   OPTIONAL GREEN ACCENT
========================================================= */

.uf-eco-story-heading::before {
    content: "";

    display: block;

    width: 35px;
    height: 35px;

    margin-bottom: 15px;

    border-radius: 50%;

    background: rgba(101, 155, 98, .15);

    box-shadow:
        12px 0 0 rgba(101, 155, 98, .08),
        24px 0 0 rgba(101, 155, 98, .04);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .uf-eco-section {
        padding: 70px 0;
    }

    .uf-eco-intro {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 30px;
    }

    .uf-eco-intro-image img {
        height: 350px;
    }

}


@media (max-width: 767px) {

    .uf-eco-section {
        padding: 55px 0;
    }

    .uf-eco-section-heading {
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .uf-eco-intro {
        padding: 20px;

        border-radius: 18px;
    }

    .uf-eco-intro-content {
        padding: 5px;
    }

    .uf-eco-intro-content h2 {
        font-size: 32px;
    }

    .uf-eco-intro-image img {
        height: 300px;
    }

    .uf-eco-campaign-intro {
        grid-template-columns: 1fr;

        padding: 25px;
    }

    .uf-eco-message {
        padding: 25px;
    }

    .uf-eco-story-grid {
        grid-template-columns: 1fr;
    }

    .uf-eco-impact {
        gap: 20px;

        padding: 30px;
    }

    .uf-eco-impact-number {
        font-size: 50px;
    }

    .uf-eco-institutions {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575px) {

    .uf-eco-section-heading h2 {
        font-size: 28px;
    }

    .uf-eco-intro-content h2 {
        font-size: 29px;
    }

    .uf-eco-intro-image img {
        height: 250px;
    }

    .uf-eco-story-card {
        padding: 25px 20px 25px 65px;
    }

    .uf-eco-impact {
        display: block;
    }

    .uf-eco-impact-number {
        margin-bottom: 20px;
    }

    .uf-eco-message {
        display: block;
    }

    .uf-eco-message-mark {
        margin-bottom: 15px;
    }

}



/* MAIN SECTION
--------------------------------------------------------- */

.uf-women-section {
    position: relative;
    padding: 70px 0;
    background: var(--uf-white);
    overflow: hidden;
}

.uf-women-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(101, 155, 98, 0.08);
    pointer-events: none;
}

.uf-women-section::after {
    content: "";
    position: absolute;
    bottom: 180px;
    left: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.06);
    pointer-events: none;
}


/* HERO
--------------------------------------------------------- */

.uf-women-hero {
    max-width: 1180px;
    margin: 0 auto 75px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;

    position: relative;
    z-index: 2;
}


/* HERO IMAGE */

.uf-women-hero-image {
    position: relative;
    padding: 14px;
    background: var(--uf-cream);
    border-radius: 24px;
}

.uf-women-hero-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    box-shadow: var(--uf-shadow);
}


/* IMAGE BADGE */

.uf-women-image-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;

    padding: 18px 25px;

    background: var(--ngo-orange);
    color: var(--uf-white);

    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(245, 130, 32, 0.25);
}

.uf-women-image-badge span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.uf-women-image-badge strong {
    display: block;
    font-size: 20px;
    margin-top: 2px;
}


/* HERO CONTENT */

.uf-women-hero-content {
    position: relative;
}

.uf-women-label {
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    background: var(--uf-yellow-light);
    color: var(--ngo-orange);

    border-left: 4px solid var(--ngo-orange);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}

.uf-women-hero-content h2 {
    margin: 0;
    color: var(--ngo-blue);
    font-size: clamp(32px, 4vw, 36px);
    line-height: 1.12;
    font-weight: 800;
}

.uf-women-hero-content h2 span {
    display: block;
    color: var(--uf-navy);
}

.uf-women-title-line {
    width: 75px;
    height: 5px;
    margin: 25px 0;

    background: var(--ngo-orange);
    border-radius: 20px;
}

.uf-women-hero-content p {
    margin: 0;
    max-width: 600px;

    color: var(--uf-muted);
    font-size: 17px;
    line-height: 1.85;
}


/* CONTENT AREA
--------------------------------------------------------- */

.uf-women-content {
    max-width: 1180px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


/* SECTION HEADER */

.uf-women-content-header {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 35px;
}

.uf-women-content-header > span,
.uf-women-process-heading > span {
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
    color: rgba(38, 59, 155, 0.10);
}

.uf-women-content-header small,
.uf-women-process-heading small {
    display: block;
    color: var(--ngo-orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.uf-women-content-header h3 {
    margin: 0;
    color: var(--uf-navy);
    font-size: 28px;
    font-weight: 750;
}


/* TEXT GRID */

.uf-women-text-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.uf-women-text-card {
    position: relative;

    padding: 30px 30px 30px 75px;

    background: var(--uf-light);
    border: 1px solid var(--uf-border);
    border-radius: 18px;

    transition: all 0.3s ease;
}

.uf-women-text-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--uf-shadow);
    border-color: rgba(101, 155, 98, 0.35);
}

.uf-women-text-card p {
    margin: 0;
    color: var(--uf-text);
    font-size: 15px;
    line-height: 1.85;
}


/* NUMBER */

.uf-women-card-number {
    position: absolute;
    left: 25px;
    top: 30px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--ngo-blue);
    color: var(--uf-white);

    font-size: 12px;
    font-weight: 700;
}

.uf-women-text-card-highlight {
    background: var(--ngo-cream);
    border-color: rgba(101, 155, 98, 0.3);
}

.uf-women-text-card-highlight .uf-women-card-number {
    background: var(--ngo-green);
}


/* IMPACT */

.uf-women-impact {
    margin-top: 25px;

    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;

    background: var(--ngo-blue);
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 20px 45px rgba(38, 59, 155, 0.16);
}

.uf-women-impact-icon {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: var(--ngo-orange);
    color: var(--uf-white);
}

.uf-women-impact-icon span {
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
}

.uf-women-impact-icon small {
    margin-top: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.uf-women-impact-content {
    padding: 30px 40px;
}

.uf-women-impact-content p {
    margin: 0 0 15px;
    color: var(--uf-white);
    line-height: 1.8;
}

.uf-women-impact-content p:last-child {
    margin-bottom: 0;
}


/* PROCESS
--------------------------------------------------------- */

.uf-women-process {
    position: relative;
    z-index: 2;

    padding: 75px 20px;

    background: var(--uf-cream);
}

.uf-women-process-heading {
    max-width: 1180px;
    margin: 0 auto 45px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.uf-women-process-heading h2 {
    margin: 0;
    color: var(--ngo-blue);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
}


/* PROCESS GRID */

.uf-women-process-grid {
    max-width: 1180px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}


/* PROCESS IMAGE */

.uf-women-process-image {
    position: sticky;
    top: 30px;

    padding: 12px;

    background: var(--uf-white);
    border-radius: 22px;

    box-shadow: var(--uf-shadow);
}

.uf-women-process-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;

    border-radius: 15px;
}


/* IMAGE OVERLAY */

.uf-women-process-image-overlay {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 18px;

    background: rgba(38, 59, 86, 0.92);
    border-radius: 12px;

    color: var(--uf-white);
}

.uf-women-process-image-overlay span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.uf-women-process-image-overlay strong {
    font-size: 17px;
    color: var(--uf-yellow);
}


/* STEPS */

.uf-women-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.uf-women-step {
    position: relative;

    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;

    padding: 25px;

    background: var(--uf-white);
    border: 1px solid var(--uf-border);
    border-radius: 18px;

    transition: all 0.3s ease;
}

.uf-women-step:hover {
    transform: translateX(6px);
    border-color: rgba(38, 59, 155, 0.25);
    box-shadow: var(--uf-shadow);
}


/* STEP NUMBER */

.uf-step-number {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--ngo-blue);
    color: var(--uf-white);

    font-size: 18px;
    font-weight: 800;
}

.uf-women-step:nth-child(2) .uf-step-number {
    background: var(--ngo-green);
}

.uf-women-step:nth-child(3) .uf-step-number {
    background: var(--ngo-orange);
}

.uf-women-step:nth-child(4) .uf-step-number {
    background: var(--uf-navy);
}

.uf-step-content p {
    margin: 0;

    color: var(--uf-text);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .uf-women-section {
        padding: 55px 0;
    }

    .uf-women-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .uf-women-hero-image img {
        height: 400px;
    }

    .uf-women-image-badge {
        right: 20px;
    }

    .uf-women-process-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .uf-women-process-image {
        position: relative;
        top: auto;
    }

    .uf-women-process-image img {
        height: 400px;
    }
}


@media (max-width: 767px) {

    .uf-women-section {
        padding: 40px 0;
    }

    .uf-women-hero,
    .uf-women-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .uf-women-hero {
        gap: 30px;
    }

    .uf-women-hero-image img {
        height: 300px;
    }

    .uf-women-hero-content h2 {
        font-size: 34px;
    }

    .uf-women-hero-content p {
        font-size: 15px;
    }

    .uf-women-text-grid {
        grid-template-columns: 1fr;
    }

    .uf-women-impact {
        grid-template-columns: 1fr;
    }

    .uf-women-impact-icon {
        min-height: 130px;
    }

    .uf-women-impact-content {
        padding: 25px;
    }

    .uf-women-content-header > span,
    .uf-women-process-heading > span {
        font-size: 38px;
    }

    .uf-women-content-header h3 {
        font-size: 23px;
    }

    .uf-women-process {
        padding: 50px 15px;
    }

    .uf-women-process-heading {
        align-items: flex-start;
    }

    .uf-women-process-heading h2 {
        font-size: 29px;
    }

    .uf-women-process-image img {
        height: 300px;
    }

    .uf-women-step {
        grid-template-columns: 45px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .uf-step-number {
        width: 42px;
        height: 42px;
    }

    .uf-step-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}


@media (max-width: 480px) {

    .uf-women-hero-image {
        padding: 8px;
    }

    .uf-women-hero-image img {
        height: 240px;
    }

    .uf-women-image-badge {
        right: 15px;
        bottom: 20px;
        padding: 12px 16px;
    }

    .uf-women-image-badge strong {
        font-size: 16px;
    }

    .uf-women-hero-content h2 {
        font-size: 29px;
    }

    .uf-women-text-card {
        padding: 25px 20px 25px 65px;
    }

    .uf-women-card-number {
        left: 20px;
        top: 25px;
    }

    .uf-women-impact-icon span {
        font-size: 45px;
    }

    .uf-women-process-image img {
        height: 240px;
    }

    .uf-women-process-image-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

===================================== */

.helping-image-wrap {
    position: relative;
    padding: 0 18px 18px 0;
}

.helping-image-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: var(--uf-shadow);
}

.image-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    /* background: var(--ngo-orange); */
    border-radius: 24px;
    opacity: .14;
}


/* =========================================
   SECTION TITLE
========================================= */

.uf-small-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ngo-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.uf-small-label::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--ngo-orange);
    border-radius: 20px;
}

.section-title h2 {
    color: var(--uf-navy-dark);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
}

.helping-intro {
    background: var(--ngo-cream);
    border-left: 5px solid var(--ngo-green);
    padding: 25px 28px;
    border-radius: 0 18px 18px 0;
}

.helping-intro p {
    margin: 0;
    color: var(--uf-muted);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   IMPACT HEADING
========================================= */

.impact-heading-card {
    height: 100%;
    background: var(--uf-navy);
    color: var(--uf-white);
    padding: 38px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--uf-shadow);
}

.impact-heading-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--ngo-orange);
    opacity: .16;
    right: -55px;
    bottom: -55px;
}

.impact-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uf-yellow);
    color: var(--uf-white);
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 28px;
}

.impact-heading-card > span {
    font-size: 12px;
    letter-spacing: 1.7px;
    font-weight: 800;
    color: var(--uf-yellow);
}

.impact-heading-card h3 {
    font-size: 28px;
    line-height: 1.3;
    margin: 12px 0 22px;
    font-weight: 750;
    color: #fff;
}

.heading-line {
    width: 55px;
    height: 4px;
    border-radius: 10px;
    background: var(--ngo-green);
}


/* =========================================
   SUPPORT ITEMS
========================================= */

.support-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-item {
    display: flex;
    gap: 20px;
    padding: 22px 24px;
    border: 1px solid var(--uf-border);
    background: var(--uf-white);
    border-radius: 17px;
    transition: all .3s ease;
}

.support-item:hover {
    transform: translateX(6px);
    border-color: rgba(245, 130, 32, .35);
    box-shadow: var(--uf-shadow);
}

.support-number {
    min-width: 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uf-yellow-light);
    color: var(--ngo-orange);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.support-item p {
    margin: 0;
    color: var(--uf-muted);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   PROCESS HEADING
========================================= */

.process-heading {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.process-heading h2 {
    color: var(--uf-navy-dark);
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    margin: 5px 0 15px;
}

.process-heading p {
    color: var(--uf-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.process-title-line {
    width: 65px;
    height: 4px;
    background: var(--ngo-orange);
    border-radius: 10px;
    margin: auto;
}


/* =========================================
   PROCESS IMAGE
========================================= */

.process-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--uf-shadow);
}

.process-image-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.process-image-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px 22px;
    background: rgba(29, 46, 69, .94);
    border-radius: 17px;
    color: var(--uf-white);
}

.process-image-caption span {
    display: block;
    color: var(--uf-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.process-image-caption strong {
    font-size: 17px;
    font-weight: 600;
}


/* =========================================
   PROCESS STEPS
========================================= */

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--uf-light);
    border: 1px solid var(--uf-border);
    border-radius: 18px;
    transition: all .3s ease;
}

.process-step:hover {
    background: var(--uf-white);
    transform: translateX(5px);
    border-color: rgba(38, 59, 155, .25);
    box-shadow: var(--uf-shadow);
}

.step-number {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uf-navy);
    color: var(--uf-white);
    font-size: 14px;
    font-weight: 800;
}

.step-content p {
    margin: 0;
    color: var(--uf-muted);
    font-size: 15px;
    line-height: 1.7;
}

.step-content .text-primary {
    color: var(--ngo-orange) !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

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

    .helping-image-wrap img,
    .process-image-card img {
        height: 360px;
    }

    .impact-heading-card {
        padding: 30px;
    }

    .impact-heading-card h3 {
        font-size: 25px;
    }

}

@media (max-width: 767px) {

    .urjaa-helping-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

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

    .helping-image-wrap {
        padding-right: 10px;
        padding-bottom: 10px;
    }

    .helping-image-wrap img,
    .process-image-card img {
        height: 280px;
        border-radius: 18px;
    }

    .helping-intro {
        padding: 20px;
    }

    .impact-heading-card {
        padding: 28px;
        border-radius: 20px;
    }

    .support-item {
        padding: 18px;
        gap: 14px;
    }

    .support-number {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }

    .support-item p,
    .step-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .process-heading h2 {
        font-size: 27px;
    }

    .process-step {
        padding: 18px;
        gap: 13px;
    }

    .step-number {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

}


css
/* =========================================
   URJAA FINANCIAL LITERACY
========================================= */

.urjaa-financial-section {
    --ngo-blue: #263B9B;
    --ngo-orange: #faa624;
    --ngo-green: #659B62;
    --ngo-cream: #F7F8F1;

    --uf-navy: #263B9B;
    --uf-navy-dark: #1d2e45;
    --uf-yellow: #faa624;
    --uf-yellow-light: #fff7cc;
    --uf-text: #000000;
    --uf-muted: #000;
    --uf-white: #ffffff;
    --uf-light: #f6f8fa;
    --uf-border: #e5e9ef;
    --uf-shadow: 0 15px 40px rgba(38, 59, 86, 0.08);

    padding: 80px 0;
    background: var(--uf-white);
}


/* =========================================
   IMAGE
========================================= */

.financial-image-wrap {
    position: relative;
    padding: 0 22px 22px 0;
}

.financial-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--uf-shadow);
}

.financial-image-accent {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 72%;
    height: 72%;
    background: var(--ngo-green);
    opacity: .18;
    border-radius: 26px;
}


/* =========================================
   IMAGE LABEL
========================================= */

.financial-image-tag {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 45px;
    min-width: 210px;
    padding: 18px 22px;
    background: var(--uf-navy-dark);
    color: var(--uf-white);
    border-radius: 16px;
    box-shadow: var(--uf-shadow);
}

.financial-image-tag span {
    display: block;
    color: var(--uf-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.financial-image-tag strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
}


/* =========================================
   CONTENT
========================================= */

.financial-content {
    padding-left: 20px;
}

.financial-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ngo-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    margin-bottom: 15px;
}

.financial-label span {
    width: 30px;
    height: 3px;
    display: inline-block;
    background: var(--ngo-orange);
    border-radius: 10px;
}

.financial-content h2 {
    margin: 0;
    color: var(--uf-navy-dark);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.financial-content h2 strong {
    display: block;
    color: var(--ngo-blue);
    font-weight: 800;
}

.financial-line {
    width: 60px;
    height: 4px;
    background: var(--ngo-orange);
    border-radius: 10px;
    margin: 22px 0;
}

.financial-content > p {
    color: var(--uf-muted);
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
    max-width: 620px;
}


/* =========================================
   HIGHLIGHT
========================================= */

.financial-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 20px;
    max-width: 430px;
    background: var(--ngo-cream);
    border-left: 4px solid var(--ngo-green);
    border-radius: 0 16px 16px 0;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uf-navy);
    color: var(--uf-white);
    border-radius: 13px;
    font-size: 20px;
}

.financial-highlight strong {
    display: block;
    color: var(--uf-navy-dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.financial-highlight span {
    display: block;
    color: var(--uf-muted);
    font-size: 13px;
}


/* =========================================
   HOVER
========================================= */

.financial-image-wrap:hover .financial-image {
    transform: translateY(-4px);
}

.financial-image {
    transition: transform .35s ease;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .urjaa-financial-section {
        padding: 60px 0;
    }

    .financial-content {
        padding-left: 0;
    }

    .financial-content h2 {
        font-size: 34px;
    }

    .financial-image {
        height: 370px;
    }

}

@media (max-width: 767px) {

    .urjaa-financial-section {
        padding: 45px 0;
    }

    .financial-image-wrap {
        padding-right: 12px;
        padding-bottom: 12px;
    }

    .financial-image {
        height: 280px;
        border-radius: 20px;
    }

    .financial-image-tag {
        right: 5px;
        bottom: 25px;
        min-width: 180px;
        padding: 14px 17px;
    }

    .financial-content h2 {
        font-size: 29px;
    }

    .financial-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .financial-highlight {
        max-width: 100%;
    }

}

/* ========================================= MAIN IMAGE ========================================= */ .culture-main-image { position: relative; padding: 0 20px 20px 0; } .culture-main-image img { position: relative; z-index: 2; width: 100%; height: 460px; object-fit: cover; border-radius: 28px; box-shadow: var(--uf-shadow); transition: transform .4s ease; } .culture-main-image:hover img { transform: translateY(-5px); } .culture-image-pattern { position: absolute; left: 0; bottom: 0; width: 75%; height: 70%; background: var(--ngo-orange); opacity: .13; border-radius: 28px; } .culture-image-label { position: absolute; z-index: 3; right: 0; bottom: 45px; padding: 17px 22px; min-width: 245px; background: var(--uf-navy-dark); color: var(--uf-white); border-radius: 16px; box-shadow: var(--uf-shadow); } .culture-image-label span { display: block; color: var(--uf-yellow); font-size: 10px; font-weight: 800; letter-spacing: 1.6px; margin-bottom: 5px; } .culture-image-label strong { font-size: 15px; font-weight: 600; } /* ========================================= LABEL ========================================= */ .culture-label { display: flex; align-items: center; gap: 9px; color: var(--ngo-orange); font-size: 11px; font-weight: 800; letter-spacing: 1.7px; margin-bottom: 15px; } .culture-label span { width: 28px; height: 3px; background: var(--ngo-orange); border-radius: 10px; } /* ========================================= CONTENT ========================================= */ .culture-content { padding-left: 15px; } .culture-content h2 { color: var(--uf-navy-dark); font-size: 40px; line-height: 1.18; font-weight: 800; margin: 0; } .culture-content h2 strong { display: block; color: var(--ngo-blue); font-weight: 800; } .culture-line { width: 60px; height: 4px; background: var(--ngo-orange); border-radius: 10px; margin: 20px 0; } .culture-opening { color: var(--uf-text); font-size: 16px; line-height: 1.75; margin-bottom: 24px; } /* ========================================= CULTURE POINTS ========================================= */ .culture-points { display: flex; flex-direction: column; gap: 13px; } .culture-point { display: flex; align-items: flex-start; gap: 15px; padding: 17px 18px; background: var(--uf-light); border: 1px solid var(--uf-border); border-radius: 15px; transition: all .3s ease; } .culture-point:hover { background: var(--uf-white); border-color: rgba(38, 59, 155, .2); transform: translateX(5px); box-shadow: var(--uf-shadow); } .culture-point-number { flex: 0 0 38px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: var(--uf-navy); color: var(--uf-white); border-radius: 11px; font-size: 11px; font-weight: 800; } .culture-point p { margin: 0; color: var(--uf-muted); font-size: 14px; line-height: 1.7; } /* ========================================= GALLERY HEADING ========================================= */ .culture-gallery-heading { max-width: 800px; margin: 90px auto 40px; } .culture-gallery-heading .culture-label { justify-content: center; } .culture-gallery-heading h3 { color: var(--uf-navy-dark); font-size: 34px; line-height: 1.25; font-weight: 800; margin: 8px 0 17px; } .culture-gallery-heading h3 strong { color: var(--ngo-blue); } .culture-heading-line { width: 60px; height: 4px; background: var(--ngo-orange); border-radius: 10px; margin: auto; } /* ========================================= GALLERY CARDS ========================================= */ .culture-card { height: 100%; background: var(--uf-white); border: 1px solid var(--uf-border); border-radius: 22px; overflow: hidden; box-shadow: 0 8px 30px rgba(38, 59, 86, .06); transition: all .35s ease; } .culture-card:hover { transform: translateY(-8px); box-shadow: var(--uf-shadow); border-color: rgba(245, 130, 32, .25); } /* ========================================= CARD IMAGE ========================================= */ .culture-card-image { position: relative; overflow: hidden; } .culture-card-image img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .5s ease; } .culture-card:hover .culture-card-image img { transform: scale(1.05); } /* ========================================= CARD CONTENT ========================================= */ .culture-card-content { position: relative; padding: 25px 24px 27px; } .culture-card-number { position: absolute; top: -20px; left: 22px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--ngo-orange); color: var(--uf-white); border-radius: 12px; font-size: 11px; font-weight: 800; box-shadow: 0 7px 20px rgba(245, 130, 32, .25); } .culture-card-content p { margin: 8px 0 0; color: var(--uf-muted); font-size: 14px; line-height: 1.75; } /* ========================================= RESPONSIVE ========================================= */ @media (max-width: 991px) { .urjaa-culture-section { padding: 60px 0; } .culture-content { padding-left: 0; } .culture-content h2 { font-size: 34px; } .culture-main-image img { height: 380px; } .culture-gallery-heading { margin-top: 70px; } } @media (max-width: 767px) { .urjaa-culture-section { padding: 45px 0; } .culture-main-image { padding-right: 10px; padding-bottom: 10px; } .culture-main-image img { height: 280px; border-radius: 20px; } .culture-image-label { right: 5px; bottom: 28px; min-width: 200px; padding: 14px 17px; } .culture-content h2 { font-size: 29px; } .culture-opening { font-size: 15px; } .culture-point { padding: 15px; } .culture-point p { font-size: 13.5px; } .culture-gallery-heading { margin-top: 55px; margin-bottom: 30px; } .culture-gallery-heading h3 { font-size: 27px; } .culture-card-image img { height: 250px; } }


/* ========================================= SECTION HEADING ========================================= */ .urjaa-testimonials-heading { max-width: 800px; margin: 0 auto 45px; } .urjaa-testimonials-label { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--ngo-orange); font-size: 11px; font-weight: 800; letter-spacing: 1.8px; margin-bottom: 12px; } .urjaa-testimonials-label span { display: inline-block; width: 30px; height: 3px; background: var(--ngo-orange); border-radius: 20px; } .urjaa-testimonials-heading h2 { margin: 0; color: var(--uf-navy-dark); font-size: 38px; line-height: 1.25; font-weight: 800; } .urjaa-testimonials-heading h2 strong { color: var(--ngo-blue); } .urjaa-heading-line { width: 60px; height: 4px; background: var(--ngo-orange); border-radius: 20px; margin: 18px auto 0; } /* ========================================= TESTIMONIAL CARD ========================================= */ .urjaa-testimonial-card { position: relative; height: 100%; padding: 38px 38px 35px; background: var(--uf-white); border: 1px solid var(--uf-border); border-radius: 22px; box-shadow: 0 8px 30px rgba(38, 59, 86, .05); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; } /* Decorative top line */ .urjaa-testimonial-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient( 90deg, var(--ngo-blue), var(--ngo-orange), var(--ngo-green) ); } /* Decorative circle */ .urjaa-testimonial-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; bottom: -75px; border-radius: 50%; background: var(--ngo-orange); opacity: .055; pointer-events: none; } .urjaa-testimonial-card:hover { transform: translateY(-6px); border-color: rgba(38, 59, 155, .18); box-shadow: var(--uf-shadow); } /* ========================================= QUOTE ICON ========================================= */ .urjaa-quote-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--uf-yellow-light); color: var(--ngo-orange); border-radius: 15px; margin-bottom: 22px; } .urjaa-quote-icon em { font-size: 22px; } /* ========================================= CONTENT ========================================= */ .urjaa-testimonial-content { position: relative; z-index: 2; } .urjaa-testimonial-content h3 { margin: 0 0 18px; color: var(--uf-navy-dark); font-size: 19px; line-height: 1.4; font-weight: 750; } .urjaa-testimonial-content p { margin: 0; color: var(--uf-muted); font-size: 14.5px; line-height: 1.8; text-align: left; } /* ========================================= END QUOTE ========================================= */ .urjaa-quote-end { display: flex; justify-content: flex-end; margin-top: 20px; position: relative; z-index: 2; } .urjaa-quote-end em { color: var(--ngo-orange); font-size: 17px; opacity: .75; } /* ========================================= RESPONSIVE ========================================= */ @media (max-width: 991px) { .urjaa-testimonials { padding: 65px 0; } .urjaa-testimonials-heading h2 { font-size: 33px; } .urjaa-testimonial-card { padding: 32px 30px; } } @media (max-width: 767px) { .urjaa-testimonials { padding: 50px 0; } .urjaa-testimonials-heading { margin-bottom: 32px; } .urjaa-testimonials-heading h2 { font-size: 28px; } .urjaa-testimonials-label { font-size: 10px; letter-spacing: 1.4px; } .urjaa-testimonial-card { padding: 28px 22px 25px; border-radius: 18px; } .urjaa-quote-icon { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 18px; } .urjaa-testimonial-content h3 { font-size: 17px; } .urjaa-testimonial-content p { font-size: 14px; line-height: 1.75; } }

/* ==========================================
   URJAA FOUNDATION - NEWS SECTION
========================================== */

.ufn-news-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.ufn-news-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 70px solid rgba(101, 155, 98, 0.06);
    border-radius: 50%;
    top: -210px;
    right: -170px;
}

.ufn-news-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(245, 130, 32, 0.06);
    border-radius: 50%;
    bottom: -150px;
    left: -120px;
}

.ufn-news-section .container {
    position: relative;
    z-index: 2;
}


/* ==========================================
   HEADING
========================================== */

.ufn-news-heading {
    max-width: 720px;
    margin: 0 auto 50px;
}

.ufn-news-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #faa624;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.ufn-news-heading h2 {
    margin: 0 0 12px;
    color: #263B9B;
    font-size: 38px;
    font-weight: 800;
}

.ufn-news-heading p {
    margin: 0;
    color: #000;
    font-size: 15px;
}


/* ==========================================
   GRID
========================================== */

.ufn-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* ==========================================
   CARD
========================================== */

.ufn-news-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 4px 4px 24px 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(38, 59, 86, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ufn-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(38, 59, 86, 0.14);
}


/* ==========================================
   IMAGE
========================================== */

.ufn-news-media {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #f2f4f5;
}

.ufn-news-media::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.28),
        transparent
    );
    pointer-events: none;
}

.ufn-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ufn-news-card:hover .ufn-news-media img {
    transform: scale(1.08);
}


/* ==========================================
   NUMBER
========================================== */

.ufn-news-number {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #faa624;
    color: #ffffff;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.3);
}


/* ==========================================
   CONTENT
========================================== */

.ufn-news-body {
    padding: 27px 27px 25px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 235px);
}

.ufn-news-tag {
    margin-bottom: 12px;
    color: #659B62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ufn-news-body h2 {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 750;
}

.ufn-news-body h2 a {
    color: #263B9B;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ufn-news-body h2 a:hover {
    color: #faa624;
}

.ufn-news-body p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================================
   READ MORE
========================================== */

.ufn-news-link {
    margin-top: auto;
    padding-top: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    color: #263B9B !important;
    border-top: 1px solid #e8ebef;

    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;

    transition: color 0.3s ease;
}

.ufn-news-link em {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ufn-news-link:hover {
    color: #faa624 !important;
}

.ufn-news-link:hover em {
    transform: translateX(6px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .ufn-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ufn-news-heading h2 {
        font-size: 32px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .ufn-news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ufn-news-heading {
        margin-bottom: 35px;
    }

    .ufn-news-heading h2 {
        font-size: 28px;
    }

    .ufn-news-media {
        height: 220px;
    }

    .ufn-news-body {
        height: auto;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .ufn-news-heading h2 {
        font-size: 25px;
    }

    .ufn-news-heading span {
        letter-spacing: 2px;
    }

    .ufn-news-body {
        padding: 23px 20px;
    }

    .ufn-news-media {
        height: 200px;
    }

}


/* =========================================================
   URJAA FOUNDATION - DONATION APPEAL
========================================================= */

.ufd-appeal-section {
    position: relative;
    padding: 70px 0;
    /* background: #f7f8f1; */
    overflow: hidden;
    color: #000;
}

.ufd-appeal-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 80px solid rgba(101, 155, 98, 0.06);
    top: -220px;
    right: -180px;
}

.ufd-appeal-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 55px solid rgba(245, 130, 32, 0.05);
    bottom: -170px;
    left: -150px;
}

.ufd-appeal-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   INTRO
========================================================= */

.ufd-intro {
    max-width: 1000px;
    margin: 0 auto 35px;
    text-align: center;
}

.ufd-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #faa624;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.ufd-intro .section-title {
    margin-bottom: 18px;
}

.ufd-intro .section-title h2 {
    color: #263B9B;
    font-size: 38px;
    font-weight: 800;
}

.ufd-main-tagline {
    margin: 0;
    color: #263B9B;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
}

.ufd-main-tagline span {
    color: #659B62;
}

.ufd-years {
    margin: 12px 0;
    color: #faa624;
    font-size: 18px;
}

.ufd-intro-text {
    max-width: 850px;
    margin: 0 auto;
}

.ufd-intro-text p {
    margin: 0;
    color: #000;
    line-height: 1.8;
}


/* =========================================================
   IMPACT GRID
========================================================= */

.ufd-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 40px 0;
}

.ufd-impact-box {
    padding: 25px 18px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(38, 59, 86, 0.06);
}

.ufd-impact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    border-radius: 50%;
    background: #fff4e9;
    color: #faa624;
    font-size: 19px;
}

.ufd-impact-box strong {
    display: block;
    color: #263B9B;
    font-size: 25px;
    font-weight: 800;
}

.ufd-impact-box > span:last-child {
    color: #000;
    font-size: 13px;
}


/* =========================================================
   IMPACT PANEL
========================================================= */

.ufd-content-panel {
    padding: 40px;
    margin-bottom: 30px;
    background: #263B9B;
    border-radius: 25px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(38, 59, 155, 0.16);
}

.ufd-panel-heading span {
    color: #faa624;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ufd-panel-heading h3 {
    margin: 7px 0 25px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
}

.ufd-impact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ufd-impact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    color: #ffffff;
    line-height: 1.7;
}

.ufd-list-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faa624;
    border-radius: 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   STORY / APPEAL
========================================================= */

.ufd-story-box {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    align-items: flex-start;
    padding: 35px;
    margin: 30px 0 55px;
    background: #ffffff;
    border-left: 6px solid #faa624;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(38, 59, 86, 0.07);
}

.ufd-story-mark {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff4e9;
    color: #faa624;
    font-size: 23px;
}

.ufd-story-box p {
    margin: 0 0 15px;
    color: #000;
    line-height: 1.8;
}

.ufd-story-box p:last-child {
    margin-bottom: 0;
}

.ufd-story-box strong {
    color: #263B9B;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.ufd-section-heading {
    margin: 55px 0 30px;
}

.ufd-section-heading > span {
    color: #659B62;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.ufd-section-heading .section-title {
    margin: 5px 0 10px;
}

.ufd-section-heading h2 {
    color: #263B9B;
    font-size: 31px;
    font-weight: 800;
}

.ufd-section-heading p {
    margin: 0;
    color: #000;
}


/* =========================================================
   HIGHLIGHT CARDS
========================================================= */

.ufd-highlight-card {
    height: 100%;
    padding: 35px;
    border-radius: 23px;
    box-shadow: 0 15px 40px rgba(38, 59, 86, 0.08);
}

.ufd-blue-card {
    background: #ffffff;
    border-top: 5px solid #263B9B;
}

.ufd-green-card {
    background: #ffffff;
    border-top: 5px solid #659B62;
}

.ufd-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ufd-card-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f0f3ff;
    color: #263B9B;
}

.ufd-green-card .ufd-card-icon {
    background: #eef7ed;
    color: #659B62;
}

.ufd-card-top h3 {
    margin: 0;
    color: #263B9B;
    font-size: 18px;
    line-height: 1.4;
}

.ufd-highlight-card ul {
    margin: 0;
    padding-left: 20px;
}

.ufd-highlight-card li {
    margin-bottom: 9px;
    color: #000;
    font-size: 14px;
    line-height: 1.65;
}

.ufd-highlight-card li::marker {
    color: #faa624;
}

.ufd-card-intro {
    margin-bottom: 18px;
    color: #000;
    line-height: 1.7;
}

.ufd-mini-divider {
    height: 1px;
    margin: 25px 0;
    background: #e5e9ef;
}


/* =========================================================
   HOW YOU CAN HELP
========================================================= */

.ufd-help-section {
    margin-top: 20px;
}

.ufd-help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.ufd-help-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(38, 59, 86, 0.05);
    transition: all 0.3s ease;
}

.ufd-help-item:hover {
    transform: translateY(-4px);
    border-color: #faa624;
    box-shadow: 0 14px 30px rgba(38, 59, 86, 0.09);
}

.ufd-help-item > span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #263B9B;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.ufd-help-item div {
    color: #000;
    font-size: 14px;
    line-height: 1.7;
}

.ufd-help-item strong {
    color: #263B9B;
}


/* =========================================================
   TAX BENEFIT
========================================================= */

.ufd-tax-note {
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 45px auto 0;
    padding: 18px 25px;
    background: #fff7cc;
    border: 1px solid #f3df7a;
    border-radius: 50px;
    text-align: center;
}

.ufd-tax-note > span {
    color: #659B62;
    font-size: 20px;
}

.ufd-tax-note p {
    margin: 0;
    color: #263B9B;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ufd-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ufd-impact-list {
        grid-template-columns: 1fr;
    }

    .ufd-intro .section-title h2 {
        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ufd-appeal-section {
        padding: 50px 0;
    }

    .ufd-intro .section-title h2 {
        font-size: 27px;
    }

    .ufd-main-tagline {
        font-size: 17px;
    }

    .ufd-impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ufd-impact-box {
        padding: 20px 10px;
    }

    .ufd-impact-box strong {
        font-size: 21px;
    }

    .ufd-content-panel {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .ufd-panel-heading h3 {
        font-size: 23px;
    }

    .ufd-story-box {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .ufd-story-mark {
        width: 50px;
        height: 50px;
    }

    .ufd-highlight-card {
        padding: 25px 20px;
    }

    .ufd-help-grid {
        grid-template-columns: 1fr;
    }

    .ufd-section-heading h2 {
        font-size: 27px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ufd-impact-grid {
        grid-template-columns: 1fr;
    }

    .ufd-impact-list li {
        padding: 15px;
    }

    .ufd-tax-note {
        border-radius: 20px;
        padding: 17px;
    }

}


/* =====================================================
   URJAA VOLUNTEER SECTION
===================================================== */

.urj-volunteer-wrap {
    position: relative;
    padding: 70px 0;
    background: #f7f8f1;
    overflow: hidden;
    color: #000;
}

.urj-volunteer-wrap::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 70px solid rgba(101, 155, 98, 0.06);
    top: -220px;
    left: -170px;
}

.urj-volunteer-wrap::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 60px solid rgba(245, 130, 32, 0.05);
    right: -180px;
    bottom: -180px;
}

.urj-volunteer-wrap .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   INTRO
===================================================== */

.urj-volunteer-intro {
    max-width: 850px;
    margin: 0 auto 45px;
}

.urj-volunteer-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #faa624;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.urj-volunteer-intro .section-title {
    margin-bottom: 15px;
}

.urj-volunteer-intro .section-title h2 {
    margin: 0;
    color: #263B9B;
    font-size: 38px;
    font-weight: 800;
}

.urj-volunteer-tagline {
    margin: 0 0 15px;
    color: #697586;
    font-size: 19px;
    font-weight: 600;
}

.urj-certificate {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 50px;
    background: #fff4e9;
    color: #faa624;
    font-size: 14px;
}

.urj-certificate em {
    font-size: 16px;
}


/* =====================================================
   APPEAL
===================================================== */

.urj-volunteer-appeal {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 22px;
    align-items: start;

    max-width: 1050px;
    margin: 0 auto 45px;
    padding: 30px 35px;

    background: #ffffff;
    border-radius: 22px;
    border-left: 5px solid #faa624;

    box-shadow: 0 15px 40px rgba(38, 59, 86, 0.07);
}

.urj-appeal-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #263B9B;
    color: #ffffff;

    font-size: 22px;
}

.urj-volunteer-appeal h3 {
    margin: 0 0 8px;
    color: #263B9B;
    font-size: 21px;
    font-weight: 800;
}

.urj-volunteer-appeal p {
    margin: 0 0 7px;
    color: #697586;
    font-size: 15px;
    line-height: 1.7;
}

.urj-volunteer-appeal p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   VOLUNTEER GRID
===================================================== */

.urj-volunteer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =====================================================
   VOLUNTEER CARD
===================================================== */

.urj-volunteer-card {
    position: relative;
    padding: 28px 25px 25px;

    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 20px;

    box-shadow: 0 12px 32px rgba(38, 59, 86, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.urj-volunteer-card::before {
    content: "";
    position: absolute;
    left: 25px;
    right: 25px;
    top: 0;

    height: 4px;

    background: #263B9B;
    border-radius: 0 0 10px 10px;
}

.urj-volunteer-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 130, 32, 0.35);
    box-shadow: 0 20px 45px rgba(38, 59, 86, 0.11);
}

.urj-volunteer-card:hover::before {
    background: #faa624;
}


/* =====================================================
   CARD HEADER
===================================================== */

.urj-card-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.urj-card-number {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #eef1ff;
    color: #263B9B;

    font-size: 13px;
    font-weight: 800;
}

.urj-volunteer-card:hover .urj-card-number {
    background: #faa624;
    color: #ffffff;
}

.urj-card-category {
    display: block;
    margin-bottom: 4px;

    color: #659B62;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.urj-card-head h3 {
    margin: 0;
    color: #263B9B;
    font-size: 17px;
    line-height: 1.4;
}


/* =====================================================
   CARD LIST
===================================================== */

.urj-volunteer-card ul {
    margin: 0;
    padding-left: 19px;
}

.urj-volunteer-card li {
    margin-bottom: 10px;

    color: #697586;
    font-size: 14px;
    line-height: 1.7;
}

.urj-volunteer-card li:last-child {
    margin-bottom: 0;
}

.urj-volunteer-card li::marker {
    color: #faa624;
}

.urj-volunteer-card li strong {
    color: #263B9B;
}


/* =====================================================
   REGISTER SECTION
===================================================== */

.urj-register-area {
    margin-top: 70px;
}

.urj-register-heading {
    text-align: center;
    margin-bottom: 30px;
}

.urj-register-heading > span {
    color: #659B62;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.urj-register-heading .section-title {
    margin-bottom: 10px;
}

.urj-register-heading .section-title h2 {
    color: #263B9B;
    font-size: 32px;
    font-weight: 800;
}

.urj-register-heading p {
    margin: 0;
    color: #697586;
}


/* =====================================================
   CONTACT CARDS
===================================================== */

.urj-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;

    min-height: 135px;
    padding: 25px 30px;

    background: #ffffff;
    border-radius: 20px;

    border: 1px solid #e5e9ef;

    box-shadow: 0 12px 30px rgba(38, 59, 86, 0.07);

    transition: all 0.3s ease;
}

.urj-contact-card:hover {
    transform: translateY(-5px);
    border-color: #faa624;
}

.urj-contact-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #263B9B;
    color: #ffffff;

    font-size: 18px;
}

.urj-contact-card > div:last-child > span {
    display: block;
    margin-bottom: 3px;

    color: #659B62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.urj-contact-card h3 {
    margin: 0 0 6px;
    color: #263B9B;
    font-size: 18px;
}

.urj-contact-card p {
    margin: 0;
    color: #697586;
    font-size: 14px;
}

.urj-contact-card p em {
    color: #faa624;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .urj-volunteer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urj-volunteer-intro .section-title h2 {
        font-size: 32px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .urj-volunteer-wrap {
        padding: 50px 0;
    }

    .urj-volunteer-intro .section-title h2 {
        font-size: 28px;
    }

    .urj-volunteer-tagline {
        font-size: 17px;
    }

    .urj-volunteer-appeal {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .urj-volunteer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .urj-register-area {
        margin-top: 50px;
    }

    .urj-register-heading .section-title h2 {
        font-size: 27px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .urj-volunteer-intro .section-title h2 {
        font-size: 25px;
    }

    .urj-volunteer-card {
        padding: 25px 20px 22px;
    }

    .urj-volunteer-card::before {
        left: 20px;
        right: 20px;
    }

    .urj-contact-card {
        padding: 22px 20px;
        gap: 15px;
    }

}

/* =========================================
   URJAA CSR SHOWCASE
========================================= */

.uf-csr-showcase {
    position: relative;
    padding: 80px 0;
    background: #f7f8f1;
    overflow: hidden;
}

/* Decorative background */
.uf-csr-showcase::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(101, 155, 98, 0.08);
    top: -120px;
    left: -100px;
}

.uf-csr-showcase::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.07);
    right: -90px;
    bottom: -100px;
}

.uf-csr-showcase .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.uf-csr-heading {
    margin-bottom: 40px;
}

.uf-csr-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #faa624;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.uf-csr-heading h2 {
    margin: 0;
    color: #263b9b;
    font-size: 38px;
    font-weight: 400;
}

.uf-csr-heading h2 strong {
    font-weight: 800;
}

.uf-csr-line {
    width: 65px;
    height: 4px;
    margin-top: 15px;
    border-radius: 20px;
    background: #faa624;
}


/* =========================================
   CSR CAROUSEL
========================================= */

.uf-csr-carousel-box {
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #263b9b;
    box-shadow: 0 18px 45px rgba(38, 59, 155, 0.15);
}

.uf-csr-carousel-box .carousel,
.uf-csr-carousel-box .carousel-inner,
.uf-csr-carousel-box .carousel-item {
    height: 100%;
}

.uf-csr-slide {
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}


/* Image */

.uf-csr-slide-image {
    height: 300px;
    overflow: hidden;
}

.uf-csr-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.uf-csr-slide:hover .uf-csr-slide-image img {
    transform: scale(1.04);
}


/* Content */

.uf-csr-slide-content {
    position: relative;
    flex: 1;
    padding: 28px 32px 50px;
    background: #263b9b;
}

.uf-csr-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 30px;
    background: #faa624;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.uf-csr-slide-content h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.uf-csr-slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
}


/* Controls */

.uf-csr-carousel-box .carousel-control-prev,
.uf-csr-carousel-box .carousel-control-next {
    top: auto;
    bottom: 22px;
    width: auto;
    height: 42px;
    opacity: 1;
}

.uf-csr-carousel-box .carousel-control-prev {
    left: auto;
    right: 72px;
}

.uf-csr-carousel-box .carousel-control-next {
    right: 22px;
}

.uf-csr-control {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transition: all 0.3s ease;
}

.uf-csr-control:hover {
    background: #faa624;
}


/* Indicators */

.uf-csr-carousel-box .carousel-indicators {
    position: absolute;
    justify-content: flex-start;
    left: 32px;
    right: auto;
    bottom: 31px;
    margin: 0;
}

.uf-csr-carousel-box .carousel-indicators button {
    width: 7px;
    height: 7px;
    margin: 0 5px 0 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.uf-csr-carousel-box .carousel-indicators button.active {
    width: 24px;
    border-radius: 10px;
    background: #faa624;
}


/* =========================================
   FEATURED / NEW PROJECT
========================================= */

.uf-featured-project {
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e5e9ef;
    box-shadow: 0 18px 45px rgba(38, 59, 86, 0.08);
}

.uf-featured-image {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.uf-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.uf-featured-project:hover .uf-featured-image img {
    transform: scale(1.04);
}

.uf-project-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    border-radius: 30px;
    background: #faa624;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* Featured Content */

.uf-featured-content {
    padding: 30px;
}

.uf-featured-label {
    display: block;
    margin-bottom: 8px;
    color: #659b62;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.uf-featured-content h3 {
    margin: 0 0 15px;
    color: #263b9b;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 800;
}

.uf-featured-content p {
    margin-bottom: 12px;
    color: #000;
    font-size: 14px;
    line-height: 1.75;
}


/* Project Points */

.uf-project-points {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e9ef;
}

.uf-project-points > div {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.uf-project-points span {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7f8f1;
    color: #659b62;
}

.uf-project-points strong {
    color: #263b9b;
    font-size: 12px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .uf-csr-showcase {
        padding: 60px 0;
    }

    .uf-csr-heading h2 {
        font-size: 32px;
    }

    .uf-csr-carousel-box,
    .uf-csr-slide {
        min-height: 500px;
    }

}

@media (max-width: 767px) {

    .uf-csr-showcase {
        padding: 50px 0;
    }

    .uf-csr-heading {
        margin-bottom: 25px;
    }

    .uf-csr-heading h2 {
        font-size: 28px;
    }

    .uf-csr-carousel-box,
    .uf-csr-slide {
        min-height: 480px;
    }

    .uf-csr-slide-image {
        height: 250px;
    }

    .uf-csr-slide-content {
        padding: 25px 24px 55px;
    }

    .uf-csr-slide-content h3 {
        font-size: 21px;
    }

    .uf-featured-image {
        height: 230px;
    }

    .uf-featured-content {
        padding: 25px;
    }

    .uf-featured-content h3 {
        font-size: 23px;
    }

    .uf-project-points {
        gap: 8px;
    }

    .uf-project-points > div {
        flex-direction: column;
        text-align: center;
    }

    .uf-project-points strong {
        font-size: 11px;
    }

}

.uf-logo-strip {
    padding: 75px 0;
    background: #f7f8f1;
}

.uf-logo-heading {
    margin-bottom: 38px;
}

.uf-logo-heading > span {
    color: #faa624;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.uf-logo-heading h2 {
    margin: 8px 0 0;
    color: #263b9b;
    font-size: 34px;
    font-weight: 400;
}

.uf-logo-heading h2 strong {
    font-weight: 800;
}

.uf-logo-heading-line {
    width: 55px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 20px;
    background: #659b62;
}


/* Direct carousel */

#ufPartnersSlider {
    position: relative;
    padding: 0 55px;
}

.uf-logo-track {
    display: flex;
    gap: 18px;
    width: 100%;
     align-items: center;
    justify-content: center;
}

.uf-logo-item {
    flex: 0 0 calc(20% - 15px);
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 18px;

    transition: all 0.3s ease;
     align-items: center;
    justify-content: center;
}

.uf-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;

    /* filter: grayscale(100%); */
    /* opacity: 0.7; */

    transition: all 0.3s ease;
     align-items: center;
    justify-content: center;
}

.uf-logo-item:hover {
    border-color: #faa624;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(38, 59, 86, 0.10);
}

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


/* Arrows */

.uf-logo-prev,
.uf-logo-next {
    width: 42px;
    opacity: 1;
}

.uf-logo-arrow {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #263b9b;
    color: #ffffff;

    transition: all 0.3s ease;
}

.uf-logo-arrow:hover {
    background: #faa624;
}


/* Tablet */

@media (max-width: 991px) {

    .uf-logo-item {
        flex: 0 0 calc(33.333% - 12px);
    }

}


/* Mobile */

@media (max-width: 575px) {

    .uf-logo-strip {
        padding: 55px 0;
    }

    .uf-logo-heading h2 {
        font-size: 27px;
    }

    #ufPartnersSlider {
        padding: 0 42px;
    }

    .uf-logo-track {
        gap: 12px;
    }

    .uf-logo-item {
        flex: 0 0 calc(50% - 6px);
        height: 110px;
        padding: 15px;
        border-radius: 14px;
    }

    .uf-logo-item img {
        max-height: 60px;
    }

    .uf-logo-arrow {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

}

.bg-danger{
background-color:#f25e46!important;
}