/* ==========================================================================
   BeKind NGO - Modern Premium Frontend Redesign Stylesheet
   Color theme refreshed to match the "Be Kind India" rainbow logo palette
   ========================================================================== */

/* 1. Global Redesign & CSS variables */
:root {
  /* Logo-inspired rainbow palette */
  --primary-red: #F44336;
  --primary-orange: #F57C00;
  --primary-yellow: #FFD600;
  --primary-green: #00C853;
  --primary-teal: #1A237E;
  --primary-blue: #1A237E;
  --primary-purple: #7C4DFF;
  --primary-pink: #F57C00;

  /* Legacy variable names kept for compatibility with existing rules below */
  --primary-color: #F44336;
  --primary-hover: #D32F2F;
  --secondary-color: #1A237E;
  --dark-color: #0F172A;
  --light-bg: #F8FAFC;

  /* Backgrounds */
  --bg-main: #F8FAFC;
  --bg-light: #FFFFFF;
  --bg-soft: #EEF5FF;

  /* Text */
  --text-dark: #1E293B;
  --text-light: #64748B;
  --heading: #0F172A;

  /* Border */
  --border-color: #E2E8F0;

  /* Gradients */
  --rainbow-gradient: linear-gradient(135deg, #F44336, #F57C00, #FFD600, #00C853, #1A237E, #1A237E, #7C4DFF);
  --rainbow-gradient-heading: linear-gradient(90deg, #F44336, #F57C00, #FFD600, #00C853, #1A237E, #1A237E, #7C4DFF);

  /* Shadows */
  --premium-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 10px 25px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --hover-shadow: 0 25px 45px rgba(15, 23, 42, 0.15), 0 18px 16px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --border-radius-lg: 20px;
  --border-radius-sm: 14px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-light);
  font-family: 'Figtree', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--heading);
  font-weight: 750;
  letter-spacing: -0.02em;
}

/* Selection & Scrollbar polish */
::selection {
  background: var(--primary-blue);
  color: #ffffff;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #f1f5f9;
}

*::-webkit-scrollbar-thumb {
  background: var(--rainbow-gradient);
  border-radius: 10px;
}

/* 2. News Marquee Bar Styling */
.news-marquee-bar {
  background: #0b1a17;
  color: #ffffff;
  font-size: 13.5px;
  height: 38px;
  line-height: 38px;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1050;
  font-family: 'Figtree', sans-serif;
  border-bottom: 2px solid rgba(244, 67, 54, 0.3);
}

.marquee-label {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-pink) 100%);
  color: #ffffff;
  padding: 0 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}

.marquee-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 10px solid var(--primary-pink);
  z-index: 4;
}

.marquee-content-wrap {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-block;
  padding-right: 60px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.marquee-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.marquee-item a:hover {
  color: var(--primary-yellow);
  text-decoration: underline;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ==========================================================================
   3. HEADER & NAVIGATION — single consolidated block
   (previously this was spread across 4 separate, conflicting sections that
   kept overriding each other's logo size / header height — replaced with
   one clean set of rules below)
   ========================================================================== */

.main-header-three {
  position: relative !important;
  top: auto !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.tier4-nav-bar {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background-color: #0e2c27 !important;
}

.tier4-nav-links > li > a {
  color: #ffffff !important;
}

.tier4-nav-links > li:hover > a,
.tier4-nav-links > li.current > a {
  color: #ff6b35 !important;
}

.stricky-header {
  display: none !important;
}

/* Top info bar (email / address / login) intentionally hidden — compact header style */
.main-menu-three__top {
  display: none !important;
}

/* Header shell height */
.main-menu-three__wrapper {
  height: 110px !important;
  border-bottom: none;
}

.main-menu-three__wrapper-inner {
  height: 110px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px !important;
}

/* Left side: logo */
.main-menu-three__left {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu-three__logo {
  padding: 0 !important;
  margin: 0 35px 0 0 !important;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu-three__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.main-menu-three__logo img,
.header-logo-img {
  height: 90px !important;
  width: auto !important;
  max-height: 90px !important;
  max-width: 220px !important;
  object-fit: contain !important;
  position: static !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

.header-logo-img:hover {
  transform: scale(1.05);
}

/* Menu box */
.main-menu-three__main-menu-box {
  margin-left: 40px !important;
  display: flex;
  align-items: center;
  flex: 1;
}

.main-menu-three__main-menu-box > .main-menu__list {
  display: flex;
  align-items: center;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 20px !important;
}

.main-menu-three__main-menu-box > .main-menu__list > li > a {
  height: 110px !important;
  line-height: 110px !important;
  padding: 0 15px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--heading) !important;
  transition: color 0.3s ease !important;
}

.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 10px !important;
}

.main-menu .main-menu__list > li.dropdown > a:after {
  font-size: 12px !important;
}

/* Hover / active menu links pick up the logo gradient */
.main-menu-three__main-menu-box > .main-menu__list > li:hover > a,
.main-menu-three__main-menu-box > .main-menu__list > li.current > a {
  background: var(--rainbow-gradient-heading) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Dropdown Menu Redesign */
.main-menu__list li ul {
  border-radius: var(--border-radius-sm) !important;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  padding: 10px 0 !important;
}

.main-menu__list li ul li a {
  height: auto !important;
  line-height: normal !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  transition: all 0.3s ease !important;
}

.main-menu__list li ul li a:hover {
  background: var(--bg-soft) !important;
  color: var(--primary-red) !important;
  padding-left: 25px !important;
}

/* Right side: Donate button — always visible */
.main-menu-three__right {
  display: flex !important;
  align-items: center !important;
  height: 100%;
  margin-left: auto !important;
}

.main-menu-three__btn-box {
  display: flex !important;
  align-items: center;
}

/* Premium Buttons Redesign */
.thm-btn {
  background: linear-gradient(135deg, #0D1B4B 0%, #1A237E 50%, #283593 100%) !important;
  border-radius: 14px !important;
  padding: 12px 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.30) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.thm-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 25px rgba(30, 136, 229, 0.45) !important;
}

/* Sticky header (shows once user scrolls past the header) */
/* .stricky-header.main-menu-three {
  background-color: #ffffff !important;
}

.stricky-header .main-menu-three__wrapper,
.stricky-header .main-menu-three__wrapper-inner {
  height: 78px !important;
}

.stricky-header .main-menu__list > li > a {
  height: 178px !important;
  line-height: 78px !important;
}

.stricky-header .header-logo-img {
  height: 60px !important;
  max-height: 60px !important;
} */

/* Footer logo (unrelated to header, kept as-is) */
.footer-widget-two__about-logo a img,
.footer-logo-img {
  height: 200px !important;
  width: 200px !important;
  max-height: 200px !important;
  max-width: 200px !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  object-fit: contain !important;
}

/* 4. Hero Section & Slides Fix Layout */
.banner-one {
  background-color: #ffffff !important;
  padding: 180px 0 160px !important;
}

.banner-one__content {
  max-width: 540px !important;
  width: 100% !important;
  position: relative !important;
  z-index: 10 !important;
}

.banner-one__title {
  font-size: 52px !important;
  line-height: 1.16 !important;
  font-weight: 850 !important;
  color: #0f172a !important; /* Dark Navy Blue */
  max-width: 520px !important;
}

.banner-one__title span {
  color: #f97316 !important;
}

/* 5. Modern Cards Styling (General, Causes, Projects, Teams, Blogs) */
.card, 
.causes-one__single, 
.project-one__single, 
.team-one__single,
.blog-three__single,
.process-one__single-inner {
  background: #ffffff !important;
  border-radius: var(--border-radius-lg) !important;
  box-shadow: var(--premium-shadow) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1px solid rgba(15, 23, 42, 0.03) !important;
  overflow: hidden;
}

.card:hover, 
.causes-one__single:hover, 
.project-one__single:hover, 
.team-one__single:hover,
.blog-three__single:hover,
.process-one__single-inner:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: var(--hover-shadow) !important;
  border-color: rgba(244, 67, 54, 0.18) !important;
}

/* Process One (Our Donating Work Process) Compact Height */
.process-one {
  padding: 60px 0 30px !important;
}
.process-one__single-inner {
  padding-bottom: 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  max-width: 360px !important;
  margin: 0 auto 30px !important;
}
.process-one__single {
  padding-top: 15px !important;
}
.process-one__img {
  max-width: 220px !important;
  height: 220px !important;
  width: 220px !important;
  margin: 0 auto !important;
}
.process-one__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.process-one__icon {
  width: 54px !important;
  height: 54px !important;
  bottom: 8px !important;
}
.process-one__icon span {
  font-size: 22px !important;
}
.process-one__count-inner {
  width: 65px !important;
  height: 50px !important;
  margin: -14px auto 0 !important;
}
.process-one__count {
  width: 56px !important;
  height: 42px !important;
}
.process-one__count:before {
  font-size: 20px !important;
  line-height: 20px !important;
}
.process-one__content {
  padding: 10px 16px 0 !important;
  text-align: center !important;
}
.process-one__title {
  font-size: 19px !important;
  line-height: 1.35 !important;
  margin-bottom: 4px !important;
}
.process-one__text {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

/* Smooth zoom on images */
.causes-one__img, 
.project-one__img, 
.team-one__img, 
.blog-three__img {
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
}

.causes-one__img img, 
.project-one__img img, 
.team-one__img img, 
.blog-three__img img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.causes-one__single:hover .causes-one__img img, 
.project-one__single:hover .project-one__img img, 
.team-one__single:hover .team-one__img img, 
.blog-three__single:hover .blog-three__img img {
  transform: scale(1.08) !important;
}

/* Section Title Redesign */
.section-title__title {
  font-size: 42px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* Highlighted words inside section titles */
.section-title__title span,
.section-title__title span *,
.sec-title-animation .section-title__title span,
.sec-title-animation .section-title__title span div {
  color: #f44336 !important;
  -webkit-text-fill-color: #f44336 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline !important;
  font-weight: 800 !important;
}

.section-title__tagline-box {
  background-color: rgba(244, 67, 54, 0.08) !important;
  border-radius: 30px !important;
  padding: 6px 18px !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.section-title__tagline {
  color: var(--primary-red) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
}

/* 6. Form Fields Redesign */
.form-control, 
input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea, 
select {
  border-radius: var(--border-radius-sm) !important;
  border: 2px solid var(--border-color) !important;
  padding: 12px 20px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
}

.form-control:focus, 
input[type="text"]:focus, 
input[type="email"]:focus, 
textarea:focus, 
select:focus {
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.15) !important;
  outline: none !important;
}

/* 7. Footer Redesign */
.site-footer-two {
  background-color: #0F172A !important;
  border-top: 5px solid var(--primary-red) !important;
  color: #a0aec0 !important;
}

.site-footer-two__top {
  padding: 80px 0 0 !important;
}

.footer-widget-two__title {
  color: #ffffff !important;
  font-weight: 700 !important;
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-two__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--rainbow-gradient-heading);
  border-radius: 2px;
}

.footer-widget-two__services-list li a {
  color: #a0aec0 !important;
  transition: all 0.3s ease !important;
}

.footer-widget-two__services-list li a:hover {
  color: var(--primary-pink) !important;
  padding-left: 6px;
}

.site-footer-two__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 25px 0 !important;
  background: #081422 !important;
}

/* Circular logo styling in footer center hands graphic */
.site-footer-two__content-img {
  position: absolute !important;
  bottom: -40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 160px !important;
  height: 160px !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.site-footer-two__content-img img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  padding: 0 !important;
  background-color: transparent !important;
}

/* 8. Responsiveness Overrides */
@media (max-width: 991px) {
  .news-marquee-bar {
    font-size: 12.5px;
    height: 34px;
    line-height: 34px;
  }
  
  .marquee-label {
    padding: 0 12px;
    font-size: 10px;
  }
  
  .banner-one {
    padding: 140px 0 100px !important;
  }
  
  .banner-one__title {
    font-size: 42px !important;
  }
  
  .section-title__title {
    font-size: 32px !important;
  }
}

@media (max-width: 575px) {
  .banner-one__title {
    font-size: 34px !important;
  }
  
  .thm-btn {
    padding: 10px 22px !important;
    font-size: 14px !important;
  }
}

/* ==========================================================================
   9. New Overrides - Icons Fix & Breadcrumbs Removal
   ========================================================================== */

/* Hide Breadcrumbs globally */
.thm-breadcrumb {
  display: none !important;
}

/* Fix icomoon font-family override on icon boxes and their child elements */
.icon-box, 
.icon-box * {
  font-family: inherit !important;
}

.icon-box i, .icon-box span {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome" !important;
  font-weight: 900 !important;
}

/* Redesign Icon Boxes to look modern, clear, and with proper colors.
   Each variant borrows a different logo color so service/feature cards
   read as a colorful, coordinated set rather than one repeated tone. */
.icon-box {
  background: rgba(244, 67, 54, 0.08) !important; /* Soft red for default/primary */
  color: var(--primary-red) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04) !important;
}

.icon-box.bg-primary {
  background: rgba(244, 67, 54, 0.08) !important;
  color: var(--primary-red) !important;
}

.icon-box.bg-success {
  background: rgba(0, 200, 83, 0.08) !important;
  color: var(--primary-green) !important;
}

.icon-box.bg-secondary {
  background: rgba(0, 188, 212, 0.08) !important;
  color: var(--primary-teal) !important;
}

.icon-box.bg-info {
  background: rgba(30, 136, 229, 0.08) !important;
  color: var(--primary-blue) !important;
}

.icon-box.bg-warning {
  background: rgba(236, 64, 122, 0.08) !important;
  color: var(--primary-pink) !important;
}

.icon-box.bg-danger {
  background: rgba(236, 64, 122, 0.08) !important;
  color: var(--primary-pink) !important;
}

.icon-box.bg-purple {
  background: rgba(124, 77, 255, 0.08) !important;
  color: var(--primary-purple) !important;
}

/* About Us Cards Redesign */
.mission-vision-section {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 1) 100%) !important;
  position: relative;
  overflow: hidden;
}

.about-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.03);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  transition: all 0.5s ease;
}

.about-card--mission::before {
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-pink) 100%);
}
.about-card--vision::before {
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--primary-teal) 100%);
}
.about-card--values::before {
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
}

.about-card__icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-card--mission .about-card__icon-wrap {
  background: rgba(244, 67, 54, 0.06);
  color: var(--primary-red);
}
.about-card--vision .about-card__icon-wrap {
  background: rgba(0, 200, 83, 0.06);
  color: var(--primary-green);
}
.about-card--values .about-card__icon-wrap {
  background: rgba(30, 136, 229, 0.06);
  color: var(--primary-blue);
}

.about-card__icon {
  font-size: 2.2rem;
  transition: all 0.5s ease;
}

.about-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading);
  transition: all 0.5s ease;
}

.about-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0;
  flex-grow: 1;
}

.about-card__list {
  text-align: left;
  width: 100%;
  margin-bottom: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-card__list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  border-radius: 12px;
  background: rgba(30, 136, 229, 0.02);
  border: 1px solid rgba(30, 136, 229, 0.05);
  transition: all 0.3s ease;
}

.about-card__list li:hover {
  background: rgba(30, 136, 229, 0.05);
  transform: translateX(5px);
}

.about-card__list-icon {
  color: var(--primary-blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card__list-text {
  font-size: 14.5px;
  font-weight: 700;
  color: #475569;
}

.about-card__bg-pattern {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.015) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  transition: all 0.5s ease;
}

.about-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border-color: rgba(15, 23, 42, 0.06);
}

.about-card:hover::before {
  height: 10px;
}

.about-card:hover .about-card__icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.about-card--mission:hover .about-card__icon-wrap {
  background: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(244, 67, 54, 0.2);
}
.about-card--vision:hover .about-card__icon-wrap {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 200, 83, 0.2);
}
.about-card--values:hover .about-card__icon-wrap {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
}

.about-card:hover .about-card__bg-pattern {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(244, 67, 54, 0.03) 0%, rgba(0,0,0,0) 70%);
}

/* Transparency & Document Cards */
.document-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.document-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--premium-shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.document-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--hover-shadow);
  border-color: rgba(244, 67, 54, 0.18);
}

.document-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.document-card__icon-container {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.document-card--certificate .document-card__icon-container {
  background: rgba(244, 67, 54, 0.08);
  color: var(--primary-red);
}
.document-card--registration .document-card__icon-container {
  background: rgba(0, 200, 83, 0.08);
  color: var(--primary-green);
}
.document-card--audit .document-card__icon-container {
  background: rgba(0, 188, 212, 0.08);
  color: var(--primary-teal);
}

.document-card__title-box {
  flex-grow: 1;
}

.document-card__category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  margin-bottom: 6px;
}

.document-card--certificate .document-card__category {
  background: rgba(244, 67, 54, 0.08);
  color: var(--primary-red);
}
.document-card--registration .document-card__category {
  background: rgba(0, 200, 83, 0.08);
  color: var(--primary-green);
}
.document-card--audit .document-card__category {
  background: rgba(0, 188, 212, 0.08);
  color: var(--primary-teal);
}

.document-card__title {
  font-size: 18px;
  font-weight: 750;
  color: var(--heading);
  margin: 0;
  line-height: 1.3;
}

.document-card__description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.document-card__meta {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding-top: 15px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.document-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.document-card__meta-item i {
  width: 16px;
  text-align: center;
}

.document-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.document-card__btn {
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.document-card__btn--view {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid var(--border-color);
}
.document-card__btn--view:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.document-card__btn--download {
   background: linear-gradient(135deg, #0D1B4B 0%, #1A237E 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(30, 136, 229, 0.20);
}
.document-card__btn--download:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(30, 136, 229, 0.35);
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
}

/* ==========================================================================
   Responsiveness & Horizontal Scrollbar Fixes
   ========================================================================== */

/* Document-level layout overflow containment */
html,
body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

body {
  position: relative !important;
}

/* Containing background decorative shapes in footer */
.site-footer-two {
  overflow: hidden !important;
}

/* Contain search popup boundaries */
.search-popup {
  max-width: 100% !important;
}

@media (max-width: 991px) {
  /* Prevent off-screen carousel slides from calculation as scrollable bounds */
  .services-two__carousel.owl-carousel .owl-stage-outer,
  .testimonial-three__carousel.owl-carousel .owl-stage-outer {
    overflow: hidden !important;
  }
}

@media (max-width: 767px) {
  /* Hero Banner buttons stacking & centering */
  .banner-one__btn-box {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 25px !important;
    width: 100% !important;
  }
  .banner-one__btn {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
  }
  .banner-one__btn .thm-btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .banner-one__video-link {
    margin-top: 10px !important;
    margin-left: 0 !important;
  }
}

/* ==========================================================================
   Header responsive rules (consolidated — replaces the old scattered
   1199px / 991px / 767px / 575px header overrides that were fighting
   the fixed 82px/110px heights above)
   ========================================================================== */

@media (max-width: 1199px) {
  .main-menu-three__main-menu-box {
    margin-left: 0 !important;
  }
  .main-menu .main-menu__list > li + li,
  .stricky-header .main-menu__list > li + li {
    margin-left: 14px !important;
  }
}
/* Mobile: push hamburger to the right */
@media (max-width: 991px) {
  .main-menu-three__main-menu-box {
    display: flex !important;
    align-items: center;
    justify-content: flex-end !important; /* toggler goes right */
    flex: 1;
  }

  .main-menu-three__main-menu-box .mobile-nav__toggler {
    order: 2;
    margin-left: auto !important;
    font-size: 24px;
    color: var(--heading);
    padding: 6px 10px;
  }

  /* Hide the desktop horizontal menu on mobile — the toggler opens the real mobile-nav panel instead */
  .main-menu-three__main-menu-box > .main-menu__list {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .main-menu-three__wrapper,
  .main-menu-three__wrapper-inner {
    height: 90px !important;
  }
  .main-menu-three__wrapper-inner {
    flex-wrap: nowrap !important;
    gap: 10px;
    padding: 0 20px !important;
  }
  .main-menu-three__logo img,
  .header-logo-img {
    height: 70px !important;
    max-height: 70px !important;
  }
  .main-menu-three__right {
    margin-left: auto !important;
  }
  .main-menu-three__btn-box .thm-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 575px) {
  .main-menu-three__wrapper,
  .main-menu-three__wrapper-inner {
    height: 74px !important;
  }
  .main-menu-three__logo img,
  .header-logo-img {
    height: 54px !important;
    max-height: 54px !important;
  }
  .main-menu-three__btn-box .thm-btn-text {
    display: none;
  }
  .main-menu-three__btn-box .thm-btn {
    padding: 10px 14px !important;
  }
  .main-menu-three__btn-box {
    display: none !important;
  }
}
/* ==========================================================
   MOBILE SIDEBAR DRAWER & NAVIGATION STYLES
   ========================================================== */

.mobile-nav__wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  transition: opacity 300ms ease, visibility 300ms ease !important;
}

.mobile-nav__wrapper.expanded {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

.mobile-nav__wrapper .mobile-nav__overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: rgba(5, 15, 13, 0.78) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  cursor: pointer !important;
  z-index: 1 !important;
}

.mobile-nav__wrapper .mobile-nav__content {
  width: 320px !important;
  max-width: 86vw !important;
  background: linear-gradient(180deg, #091715 0%, #0d2822 50%, #071513 100%) !important;
  z-index: 2 !important;
  position: relative !important;
  height: 100% !important;
  overflow-y: auto !important;
  padding: 24px 18px 30px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-100%) !important;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 10px 0 35px rgba(0,0,0,0.7) !important;
  border-right: 2px solid rgba(255, 152, 0, 0.3) !important;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  transform: translateX(0%) !important;
}

.mobile-nav__content::-webkit-scrollbar {
  width: 5px;
}
.mobile-nav__content::-webkit-scrollbar-thumb {
  background: rgba(255, 152, 0, 0.4);
  border-radius: 4px;
}

/* Floating WhatsApp Quick Action Button for Mobile */
.mobile-floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 20px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-floating-whatsapp:hover,
.mobile-floating-whatsapp:active {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

.mobile-floating-whatsapp::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

@media (min-width: 992px) {
  .mobile-floating-whatsapp {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .custom-cursor__cursor,
  .custom-cursor__cursor-two,
  .custom-cursor__hover,
  .custom-cursor__innerhover {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .tier4-mobile-wrapper .mobile-nav__toggler {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    position: relative !important;
    z-index: 9999 !important;
    cursor: pointer !important;
  }
}

/* Global High Contrast & Legibility Enhancements */
.bg-dark .text-muted, 
.card.bg-dark .text-muted, 
.card-text.text-muted {
  color: #cbd5e1 !important; /* Bright silver slate for high contrast on dark cards */
}

.bg-dark .text-white {
  color: #ffffff !important;
}

.table-dark th {
  color: #94a3b8 !important;
  font-weight: 700;
}

.table-dark td {
  color: #f8fafc !important;
}

.badge.bg-secondary {
  background-color: #334155 !important;
  color: #f8fafc !important;
}

/* ==========================================================================
   PROJECT & CAMPAIGN DETAIL PAGE STYLING
   ========================================================================== */

.project-details-section {
  background-color: #f8fafc;
}

.hover-warning {
  transition: color 0.2s ease !important;
}
.hover-warning:hover {
  color: #ff9800 !important;
}

.amount-preset-btn {
  border: 1px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #1e293b !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  transition: all 0.2s ease !important;
}

.amount-preset-btn:hover {
  border-color: #ff9800 !important;
  background: rgba(255, 152, 0, 0.08) !important;
  color: #ea580c !important;
  transform: translateY(-1px);
}

.amount-preset-btn.active {
  border-color: #ff9800 !important;
  background: rgba(255, 152, 0, 0.15) !important;
  color: #ea580c !important;
  box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.25) !important;
}

.animate-pulse {
  animation: heartPulse 1.5s infinite;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shadow-2xs {
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.accordion-button:not(.collapsed) {
  color: #ea580c !important;
  background-color: rgba(255, 152, 0, 0.08) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: rgba(255, 152, 0, 0.3) !important;
}

/* ==========================================================================
   About Us Section (Homepage) - Exact Original Template Dimensions & Layout
   ========================================================================== */
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-two__left {
  position: relative;
  display: block;
}

.about-two__right {
  position: relative !important;
  display: block !important;
  margin-left: 90px !important;
  margin-right: 100px !important;
}

.about-two__img-box {
  position: relative !important;
  display: block !important;
  width: 440px !important;
  height: 440px !important;
  margin: 0 auto !important;
}

/* Card 1: Main Image (Original Fixed 440x440) */
.about-two__img {
  position: relative !important;
  display: block !important;
  width: 440px !important;
  height: 440px !important;
  max-width: 440px !important;
  max-height: 440px !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.about-two__img img {
  width: 440px !important;
  height: 440px !important;
  max-width: 440px !important;
  max-height: 440px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 30px !important;
}

/* Card 2: Bottom-Right Image (Original Fixed 250x250) */
.about-two__img-2 {
  position: absolute !important;
  right: -100px !important;
  bottom: -61px !important;
  left: auto !important;
  top: auto !important;
  width: 250px !important;
  height: 250px !important;
  max-width: 250px !important;
  max-height: 250px !important;
  border-top: 15px solid #ffffff !important;
  border-left: 15px solid #ffffff !important;
  border-top-left-radius: 20px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
  background-color: #ffffff !important;
  z-index: 2 !important;
}

.about-two__img-2 img {
  width: 250px !important;
  height: 250px !important;
  max-width: 250px !important;
  max-height: 250px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  display: block !important;
}

/* Card 3: Left-Floating Vertical Card (Original Fixed 140x215) */
.about-two__img-3 {
  position: absolute !important;
  left: -70px !important;
  top: 61px !important;
  right: auto !important;
  bottom: auto !important;
  width: 140px !important;
  height: 215px !important;
  max-width: 140px !important;
  max-height: 215px !important;
  border: 12px solid #ffffff !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
  background-color: #ffffff !important;
  z-index: 3 !important;
}

.about-two__img-3 img {
  width: 140px !important;
  height: 215px !important;
  max-width: 140px !important;
  max-height: 215px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  display: block !important;
}

/* Video Play Link Button */
.about-two__video-link {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translateX(33%) translateY(-6%) !important;
  z-index: 4 !important;
}

.about-two__video-icon {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 70px !important;
  height: 70px !important;
  font-size: 20px !important;
  color: #f44336 !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.about-two__video-icon:hover {
  background-color: #f44336 !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
}

/* 24 Hour Support Badge */
.about-two__support {
  position: absolute !important;
  bottom: -35px !important;
  left: -40px !important;
  z-index: 5 !important;
  display: block !important;
}

.about-two__support h3 {
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 35px !important;
  color: var(--heading, #0f172a) !important;
  font-family: 'Caveat', cursive !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8) !important;
}

.about-two__support h3 span {
  color: #f44336 !important;
}

/* Decorative Dashed Ring */
.about-two__shape-1 {
  position: absolute !important;
  top: 75px !important;
  left: 90px !important;
  width: 400px !important;
  height: 400px !important;
  border: 2px dashed #f44336 !important;
  border-radius: 50% !important;
  z-index: 0 !important;
  display: block !important;
  opacity: 0.6 !important;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .about-two__right {
    margin-left: 50px !important;
    margin-right: 50px !important;
    margin-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .about-two__right {
    margin-left: 20px !important;
    margin-right: 20px !important;
    display: flex !important;
    justify-content: center !important;
  }
  .about-two__img-box {
    width: 320px !important;
    height: 320px !important;
  }
  .about-two__img,
  .about-two__img img {
    width: 320px !important;
    height: 320px !important;
  }
  .about-two__img-2,
  .about-two__img-2 img {
    width: 170px !important;
    height: 170px !important;
    right: -30px !important;
    bottom: -30px !important;
  }
  .about-two__img-3,
  .about-two__img-3 img {
    width: 100px !important;
    height: 140px !important;
    left: -20px !important;
    top: 30px !important;
  }
}

/* ==========================================================================
   Services Two Section - Fixed Uniform Card & Image Heights
   ========================================================================== */
.services-two__carousel .item {
  height: 100% !important;
  display: flex !important;
  padding: 10px 5px !important;
}

.services-two__single {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 480px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.services-two__single:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15) !important;
}

.services-two__img-box {
  position: relative !important;
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}

.services-two__img {
  position: relative !important;
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  overflow: hidden !important;
  -webkit-mask: none !important;
  mask: none !important;
}

.services-two__img img {
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s ease !important;
  border-radius: 0 !important;
}

.services-two__single:hover .services-two__img img {
  transform: scale(1.08) !important;
}

.services-two__content {
  position: relative !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 30px 24px 22px !important;
  background-color: #ffffff !important;
  border-radius: 0 0 20px 20px !important;
  box-shadow: none !important;
}

.services-two__icon-inner {
  position: absolute !important;
  top: -30px !important;
  right: 20px !important;
  z-index: 5 !important;
}

.services-two__title {
  font-size: 20px !important;
  font-weight: 750 !important;
  line-height: 28px !important;
  margin: 0 0 10px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  height: 56px !important;
}

.services-two__title a {
  color: var(--heading, #0f172a) !important;
  transition: color 0.2s ease !important;
}

.services-two__title a:hover {
  color: #f44336 !important;
}

.services-two__text {
  font-size: 14px !important;
  line-height: 22px !important;
  color: #64748b !important;
  margin: 0 0 15px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  height: 44px !important;
}

.services-two__read-more {
  margin-top: auto !important;
  padding-top: 10px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.services-two__read-more a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #f44336 !important;
  transition: gap 0.2s ease !important;
}

.services-two__read-more a:hover {
  gap: 10px !important;
  color: #d32f2f !important;
}

/* ==========================================================================
   Services Three (Tabs Section) - Fixed Uniform Card & Image Heights
   ========================================================================== */
.services-three {
  padding: 100px 0 100px !important;
}

.services-three__tab-box .tab-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.services-three__tab-box .tab-buttons .tab-btn {
  margin: 0 !important;
}

.services-three__tab-box .tab-buttons .tab-btn span {
  padding: 30px 20px !important;
  font-size: 20px !important;
  border-radius: 18px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
  transition: all 0.3s ease !important;
}

.services-three__tab-box .tab-buttons .tab-btn.active-btn span {
  box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3) !important;
}

.services-three__single {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 35px !important;
  height: 380px !important;
  min-height: 380px !important;
  max-height: 380px !important;
  border-radius: 24px !important;
  padding: 25px 30px !important;
  background-color: #ffffff !important;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  overflow: hidden !important;
}

.services-three__img {
  position: relative !important;
  display: block !important;
  width: 340px !important;
  min-width: 340px !important;
  max-width: 340px !important;
  height: 330px !important;
  min-height: 330px !important;
  max-height: 330px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  -webkit-mask: none !important;
  mask: none !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1) !important;
}

.services-three__img img {
  width: 100% !important;
  height: 100% !important;
  min-height: 330px !important;
  max-height: 330px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 20px !important;
  transition: transform 0.6s ease !important;
}

.services-three__single:hover .services-three__img img {
  transform: scale(1.05) !important;
}

.services-three__content {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0 !important;
}

.services-three__title {
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 32px !important;
  margin: 0 0 18px 0 !important;
  color: var(--heading, #0f172a) !important;
}

.services-three__points-box li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  margin-bottom: 16px !important;
}

.services-three__points-box li:last-child {
  margin-bottom: 0 !important;
}

.services-three__points-box li .icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.services-three__points-box li h4 {
  font-size: 17px !important;
  font-weight: 750 !important;
  line-height: 24px !important;
  margin: 0 0 4px 0 !important;
  color: var(--heading, #0f172a) !important;
}

.services-three__points-box li p {
  font-size: 13.5px !important;
  line-height: 20px !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Tablet & Mobile responsive for Tabs */
@media (max-width: 991px) {
  .services-three__tab-box .tab-buttons {
    flex-direction: row !important;
    margin-bottom: 30px !important;
  }
  .services-three__tab-box .tab-buttons .tab-btn {
    flex: 1 !important;
  }
  .services-three__tab-box .tab-buttons .tab-btn span {
    padding: 18px 10px !important;
    font-size: 16px !important;
  }
  .services-three__single {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    flex-direction: column !important;
    padding: 24px !important;
  }
  .services-three__img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 250px !important;
    min-height: 250px !important;
    max-height: 250px !important;
  }
}

/* ==========================================================================
   HOMEPAGE CONTACT SECTION — FLUSH RIGHT CORNER IMAGE + VISIBLE CURVED MASK
   ========================================================================== */
.contact-one {
  position: relative !important;
  overflow: hidden !important;
}

.contact-one__wrap {
  position: relative !important;
  z-index: 2 !important;
  padding: 55px 0 55px !important;
}

.contact-one__left .section-title {
  margin-bottom: 10px !important;
}

.contact-one__left .section-title__tagline {
  font-size: 13px !important;
  margin-bottom: 4px !important;
}

.contact-one__left .section-title__title {
  font-size: 30px !important;
  line-height: 38px !important;
}

.contact-one__text {
  font-size: 14px !important;
  line-height: 22px !important;
  margin-bottom: 0 !important;
}

.contact-one__form {
  margin-top: 15px !important;
}

.contact-one__input-box {
  margin-bottom: 12px !important;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
  height: 46px !important;
  line-height: 46px !important;
  font-size: 14px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
}

.contact-one__input-box .nice-select {
  height: 46px !important;
  line-height: 46px !important;
  font-size: 14px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
}

.contact-one__input-box .nice-select:after {
  top: 19px !important;
}

.contact-one__input-box textarea,
.contact-one__input-box.text-message-box {
  height: 85px !important;
  min-height: 85px !important;
  max-height: 85px !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
}

.contact-one__btn-box .thm-btn {
  padding: 10px 26px !important;
  font-size: 14px !important;
  border-radius: 8px !important;
}

.contact-one__img-1 {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 60% !important;
  max-width: 60% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-end !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

.contact-one__img-1 img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: right center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.contact-one__call-box {
  position: absolute !important;
  bottom: 15px !important;
  right: 25px !important;
  left: auto !important;
  margin: 0 !important;
  z-index: 10 !important;
  background: rgba(10, 20, 35, 0.90) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 14px !important;
  padding: 10px 20px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
  max-width: calc(100% - 50px) !important;
}

.contact-one__call-list {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.contact-one__call-list li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
}

.contact-one__call-icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  background: #ff6b35 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 15px !important;
}

.contact-one__call-box .contact-one__content p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 11px !important;
  margin: 0 !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.contact-one__call-box .contact-one__content h4 {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  margin: 2px 0 0 0 !important;
  line-height: 1.2 !important;
}

.contact-one__call-box .contact-one__content h4 a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.contact-one__call-box .contact-one__content h4 a:hover {
  color: #ff6b35 !important;
}

@media (max-width: 1199px) {
  .contact-one__img-1 {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .contact-one__call-box {
    position: static !important;
    margin: 20px auto 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .contact-one__call-list {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }
}

/* ==========================================================================
   COMPLETE MOBILE VIEW REDESIGN (SMARTPHONES & TABLETS: <= 991px & <= 767px)
   ========================================================================== */

/* ── 1. Global Mobile Fixes & Overflow Prevention ── */
@media (max-width: 991px) {
  html, body, .page-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-title {
    margin-bottom: 24px !important;
  }

  .section-title__tagline {
    font-size: 12.5px !important;
    padding: 3px 12px !important;
    letter-spacing: 0.8px !important;
  }

  .section-title__title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-top: 6px !important;
  }

  /* ── 2. Header & Sticky Nav Mobile Layout ── */
  .tier4-mobile-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 3px 4px !important;
  }

  .tier4-mobile-logo {
    height: 38px !important;
    width: 38px !important;
    object-fit: cover !important;
    border: 2px solid #ff6b35 !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4) !important;
  }

  .tier4-mobile-brand-title {
    font-size: 1rem !important;
    font-weight: 850 !important;
    color: #ffffff !important;
    font-family: 'Figtree', sans-serif !important;
    letter-spacing: 0.5px !important;
  }

  .tier4-mobile-donate-btn {
    font-size: 0.76rem !important;
    font-weight: 800 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(255, 87, 34, 0.4) !important;
    letter-spacing: 0.4px !important;
    text-decoration: none !important;
    transition: transform 0.2s ease !important;
  }

  .tier4-mobile-donate-btn:active {
    transform: scale(0.95) !important;
  }

  .mobile-nav__toggler {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    transition: all 0.2s ease !important;
  }

  .mobile-nav__toggler:active {
    background: rgba(255, 152, 0, 0.3) !important;
    transform: scale(0.92) !important;
  }

  /* ── 3. Banner One (Hero Section) Mobile Redesign ── */
  .banner-one {
    padding: 60px 0 45px !important;
    min-height: auto !important;
  }

  .banner-one__title {
    font-size: 30px !important;
    line-height: 1.25 !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }

  .banner-one__sub-title {
    font-size: 13px !important;
  }

  .banner-one__sub-title-box {
    margin-bottom: 12px !important;
  }

  .banner-one__btn-box {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .banner-one__btn .thm-btn {
    padding: 10px 22px !important;
    font-size: 13.5px !important;
    border-radius: 30px !important;
  }

  .banner-one__video-link {
    margin-left: 5px !important;
  }

  .banner-one__video-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 14px !important;
  }

  /* ── 4. Process One Mobile Redesign ── */
  .process-one {
    padding: 45px 0 25px !important;
  }

  .process-one__single-inner {
    max-width: 100% !important;
    margin: 0 auto 20px !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
  }

  .process-one__img {
    width: 170px !important;
    height: 170px !important;
    max-width: 170px !important;
  }

  .process-one__icon {
    width: 44px !important;
    height: 44px !important;
    bottom: 4px !important;
  }

  .process-one__icon span {
    font-size: 18px !important;
  }

  .process-one__title {
    font-size: 1.1rem !important;
  }

  /* ── 5. About Two Mobile Redesign ── */
  .about-two {
    padding: 45px 0 35px !important;
  }

  .about-two__points-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
  }

  .about-two__points-list li {
    padding: 12px 6px !important;
    text-align: center !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .about-two__points-icon {
    width: 44px !important;
    height: 44px !important;
    margin: 0 auto 8px !important;
    font-size: 18px !important;
  }

  .about-two__count-title {
    font-size: 0.78rem !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }

  .about-two__count {
    font-size: 1.15rem !important;
  }

  .about-two__right {
    margin-top: 30px !important;
  }

  .about-two__img-box {
    max-width: 100% !important;
    height: auto !important;
  }

  .about-two__img img {
    border-radius: 20px !important;
  }

  .about-two__img-2,
  .about-two__img-3 {
    display: none !important;
  }

  .about-two__support {
    bottom: 15px !important;
    right: 15px !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
  }

  .about-two__support h3 {
    font-size: 13px !important;
  }

  /* ── 6. Counter One (2x2 Grid) ── */
  .counter-one {
    padding: 35px 0 25px !important;
  }

  .counter-one__count-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .counter-one__count-list li {
    width: 100% !important;
    margin: 0 !important;
  }

  .counter-one__single {
    padding: 16px 12px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .counter-one__icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    margin: 0 auto !important;
  }

  .counter-one__count {
    font-size: 1.45rem !important;
    line-height: 1.2 !important;
    margin: 4px 0 0 !important;
  }

  .counter-one__text {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
  }

  /* ── 7. Services Three (Tabbed Section) Mobile Polish ── */
  .services-three {
    padding: 45px 0 30px !important;
  }

  .services-three .tab-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
    justify-content: center !important;
  }

  .services-three .tab-btn {
    width: auto !important;
    padding: 8px 18px !important;
    border-radius: 25px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .services-three__single {
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 20px 18px !important;
    gap: 20px !important;
    border-radius: 20px !important;
  }

  .services-three__img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    border-radius: 16px !important;
  }

  .services-three__img img {
    width: 100% !important;
    height: 100% !important;
    min-height: 220px !important;
    max-height: 220px !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  .services-three__content {
    width: 100% !important;
    text-align: left !important;
  }

  .services-three__title {
    font-size: 1.25rem !important;
    margin-bottom: 15px !important;
  }

  .services-three__points-box li {
    margin-bottom: 14px !important;
  }

  .services-three__points-box li h4 {
    font-size: 0.95rem !important;
  }

  .services-three__points-box li p {
    font-size: 0.85rem !important;
  }

  /* ── 8. Causes / Projects Mobile Polish ── */
  .causes-three,
  .causes-one {
    padding: 45px 0 30px !important;
  }

  .causes-three__single,
  .causes-one__single {
    margin-bottom: 24px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .causes-three__img,
  .causes-one__img {
    height: 210px !important;
    overflow: hidden !important;
  }

  .causes-three__img img,
  .causes-one__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ── 9. Contact One Mobile Form Polish ── */
  .contact-one {
    padding: 0 !important;
  }

  .contact-one__wrap {
    padding: 40px 16px !important;
    mask: none !important;
    -webkit-mask: none !important;
  }

  .contact-one__left {
    margin-right: 0 !important;
  }

  .contact-one__left .section-title__title {
    font-size: 26px !important;
    line-height: 34px !important;
  }

  .contact-one__form {
    margin-top: 14px !important;
  }

  .contact-one__input-box {
    margin-bottom: 10px !important;
  }

  .contact-one__input-box input[type="text"],
  .contact-one__input-box input[type="email"],
  .contact-one__input-box .nice-select {
    height: 44px !important;
    line-height: 44px !important;
    font-size: 13.5px !important;
    border-radius: 8px !important;
  }

  .contact-one__input-box textarea,
  .contact-one__input-box.text-message-box {
    height: 80px !important;
    min-height: 80px !important;
    font-size: 13.5px !important;
    border-radius: 8px !important;
  }

  .contact-one__btn-box .thm-btn {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
  }

  /* ── 10. Blog & Footer Mobile Polish ── */
  .blog-three,
  .blog-one {
    padding: 45px 0 25px !important;
  }

  .blog-three__single,
  .blog-one__single {
    margin-bottom: 22px !important;
    border-radius: 18px !important;
  }

  /* ── 10. Compact Footer Mobile Redesign (Reduced Height) ── */
  .site-footer-two,
  .site-footer-three {
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-footer-two__content-and-social-box {
    padding: 24px 14px 36px !important;
    border-radius: 18px !important;
    margin-bottom: 0 !important;
  }

  .site-footer-two__content-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

  .site-footer-two__content-text {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    margin: 6px 0 14px !important;
  }

  .site-footer-two__content-img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    bottom: -30px !important;
  }

  .donate-two__btn-box .thm-btn {
    padding: 8px 20px !important;
    font-size: 13px !important;
  }

  .site-footer-three .site-footer-two__top {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .site-footer-three .site-footer-two__top-inner,
  .site-footer-two__top-inner {
    padding: 40px 0 15px !important;
  }

  .footer-widget,
  .footer-widget-two__about,
  .footer-widget-two__services,
  .footer-widget-two__links,
  .footer-widget-two__contact {
    margin-bottom: 18px !important;
  }

  .footer-widget-two__about-logo img,
  .footer-logo-img {
    max-height: 42px !important;
    width: auto !important;
    margin-bottom: 8px !important;
  }

  .footer-widget-two__about-text {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  .footer-widget-two__form {
    max-width: 100% !important;
    margin-top: 8px !important;
  }

  .footer-widget-two__input input {
    height: 40px !important;
    font-size: 13px !important;
    padding-left: 12px !important;
  }

  .footer-widget-two__btn {
    height: 40px !important;
    width: 44px !important;
  }

  .footer-widget-two__title {
    font-size: 15px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .footer-widget-two__services-list li {
    margin-bottom: 5px !important;
    font-size: 12.5px !important;
  }

  .footer-widget-two__services-list li a {
    font-size: 12.5px !important;
    padding: 2px 0 !important;
  }

  .footer-widget-two__contact-list li {
    margin-bottom: 6px !important;
    gap: 8px !important;
    font-size: 12.5px !important;
  }

  .footer-widget-two__contact-list li .icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 12px !important;
  }

  .footer-widget-two__contact-list li p,
  .footer-widget-two__contact-list li p a {
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .site-footer-two__bottom {
    padding: 12px 0 !important;
  }

  .site-footer-two__copyright-text {
    font-size: 11.5px !important;
    margin: 0 !important;
  }

  /* ── 11. Hide Testimonial Section on Mobile View ── */
  .testimonial-three,
  .testimonial-one,
  .testimonial-two,
  .testimonials-page-section {
    display: none !important;
  }

  /* ── 12. Floating Buttons (WhatsApp & Scroll to Top) ── */
  .mobile-floating-whatsapp {
    position: fixed !important;
    bottom: 22px !important;
    right: 20px !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: #25d366 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5) !important;
    z-index: 99999 !important;
    text-decoration: none !important;
    animation: pulseWhatsApp 2s infinite !important;
  }

  @keyframes pulseWhatsApp {
    0% { transform: scale(1); box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5); }
    50% { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7); }
    100% { transform: scale(1); box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5); }
  }

  /* Completely hide rotated "Go Back Top" button and text on mobile to prevent overlap */
  .scroll-to-top,
  .scroll-to-top__text,
  .scroll-to-top__wrapper,
  .scroll-to-top__inner,
  .scroll-to-target {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* ── Extra Small Screen Tweaks (<= 575px) ── */
@media (max-width: 575px) {
  .banner-one__title {
    font-size: 26px !important;
  }

  .about-two__points-list {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .about-two__points-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    text-align: left !important;
  }

  .about-two__points-icon {
    margin: 0 !important;
  }

  .about-two__count-title {
    margin: 0 auto 0 12px !important;
    font-size: 0.88rem !important;
  }

  .about-two__count {
    margin: 0 !important;
  }
}

/* ==========================================================================
   Hero Section Customization:
   1. Left-most part converted to White
   2. Buttons converted to Orange (Donate) and Sky Blue (Apply)
   ========================================================================== */

/* Left-most part white styling & Dark Navy Blue text */
.banner-one {
  background-color: #ffffff !important;
}

.banner-one__shape-1 {
  background: transparent !important;
}

.banner-one__shape-1 img {
  filter: brightness(0) invert(1) !important; /* Converts left shape image to clean white */
  opacity: 1 !important;
}

.banner-one__shape-bg {
  background-color: #ffffff !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.banner-one__sub-title {
  color: #0f172a !important; /* Dark Navy Blue */
  font-weight: 700 !important;
}

.banner-one__sub-title-shape {
  background-color: #f97316 !important;
}

/* Hero Section Buttons */
/* 1. Donate Now Button - Vibrant Orange */
.banner-one__btn .thm-btn.btn-hero-donate,
.banner-one__btn-box .banner-one__btn:first-child .thm-btn {
  background-color: #f97316 !important;
  background: linear-gradient(135deg, #ff7448 0%, #f97316 100%) !important;
  border-color: #f97316 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4) !important;
}

.banner-one__btn .thm-btn.btn-hero-donate::before,
.banner-one__btn-box .banner-one__btn:first-child .thm-btn::before {
  background-color: #ea580c !important;
}

.banner-one__btn .thm-btn.btn-hero-donate .thm-btn-text,
.banner-one__btn-box .banner-one__btn:first-child .thm-btn .thm-btn-text {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.banner-one__btn .thm-btn.btn-hero-donate .thm-btn-icon-box,
.banner-one__btn-box .banner-one__btn:first-child .thm-btn .thm-btn-icon-box {
  background-color: #ffffff !important;
  color: #f97316 !important;
}

.banner-one__btn .thm-btn.btn-hero-donate:hover,
.banner-one__btn-box .banner-one__btn:first-child .thm-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
  border-color: #ea580c !important;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.55) !important;
  transform: translateY(-2px) !important;
}

.banner-one__btn .thm-btn.btn-hero-donate:hover .thm-btn-icon-box,
.banner-one__btn-box .banner-one__btn:first-child .thm-btn:hover .thm-btn-icon-box {
  background-color: #ffffff !important;
  color: #ea580c !important;
}

/* 2. Apply Now Button - Sky Blue */
.banner-one__btn .thm-btn.btn-hero-apply,
.banner-one__btn-box .banner-one__btn:nth-child(2) .thm-btn {
  background-color: #0ea5e9 !important;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
  border-color: #0ea5e9 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.4) !important;
}

.banner-one__btn .thm-btn.btn-hero-apply::before,
.banner-one__btn-box .banner-one__btn:nth-child(2) .thm-btn::before {
  background-color: #0284c7 !important;
}

.banner-one__btn .thm-btn.btn-hero-apply .thm-btn-text,
.banner-one__btn-box .banner-one__btn:nth-child(2) .thm-btn .thm-btn-text {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.banner-one__btn .thm-btn.btn-hero-apply .thm-btn-icon-box,
.banner-one__btn-box .banner-one__btn:nth-child(2) .thm-btn .thm-btn-icon-box {
  background-color: #ffffff !important;
  color: #0ea5e9 !important;
}

.banner-one__btn .thm-btn.btn-hero-apply:hover,
.banner-one__btn-box .banner-one__btn:nth-child(2) .thm-btn:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  border-color: #0284c7 !important;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.55) !important;
  transform: translateY(-2px) !important;
}

.banner-one__btn .thm-btn.btn-hero-apply:hover .thm-btn-icon-box,
.banner-one__btn-box .banner-one__btn:nth-child(2) .thm-btn:hover .thm-btn-icon-box {
  background-color: #ffffff !important;
  color: #0284c7 !important;
}