/*
====================================
[ CSS TABLE CONTENT ]
------------
    1.0 - General
    2.0 - Typography
    3.0 - Global Style
    4.0 - Navigation
    5.0 - Search Box
    6.0 - Page Title Section
    7.0 - Slider Section
    8.0 - Creative Section
    9.0 - Recent Project Section
    9.1 - Overlay and hover effect
    10.0 - Magnific Popup CSS
    11.0 - Feature Section
    12.0 - About Section
    13.0 - Counter Section
    14.0 - Team Section
    15.0 - Video Section
    16.0 - Service Section
    17.0 - Process Section
    18.0 - Portfolio Section
    19.0 - Portfolio Single Page
    20.0 - Partner Section
    21.0 - Case study section
    22.0 - Map Section
    23.0 - Contact Section
    24.0 - Footer Section
    25.0 - Preloader
    26.0 - Homepage Two
    27.0 - Homepage Three
    28.0 - About us Page
    29.0 - About us page two
    30.0 - Blog Page
    31.0 - Blog Page Version Two
    32.0 - Full Width Section
    33.0 - Call to action section
    34.0 - Client Testimonial Style
    35.0 - Parallax Homepage
    36.0 - Contact Page
    37.0 - 404 page
    38.0 - Flex slider customization
	39.0 - Owl slider customization
-------------
[ END CSS TABLE CONTENT ]
=====================================
*/

/* =============================================
            	Theme Reset Style
============================================= */
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("../css/bootstrap.min.css");
@import url("../css/custom-icons.min.css");
@import url("../css/transitions.css");
@import url("../css/flexslider.css");
@import url("../css/bootsnav.css");
@import url("../css/owl.carousel.css");
@import url("../css/animate.css");
@import url("../css/all.min.css");

* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  position: relative;
  height: 100%;
}
body {
  color: #888;
  background: #f1f1f1;
  font-size: 15px;
  font-family: "Inter", sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   AWARDS HERO SECTION
═══════════════════════════════════════════════════════════ */

.awards-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.awards-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Background Video ─── */
.awards-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ─── Overlays ─── */
.awards-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 20, 0.65);
  z-index: 1;
}

.awards-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    radial-gradient(ellipse at center top, rgba(233, 97, 47, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at center bottom, rgba(0, 77, 77, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0, 30, 30, 0.4) 0%, transparent 30%, rgba(0, 20, 20, 0.75) 100%);
}

.awards-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ─── Corner Frames ─── */
.awards-hero-frame {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(233, 97, 47, 0.25);
  z-index: 4;
  pointer-events: none;
}

.awards-hero-frame-tl {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.awards-hero-frame-br {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
}

/* ─── Floating Decoration ─── */
.awards-hero-deco {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0.1;
  animation: awardsFloatIcon 4s ease-in-out infinite;
}

.awards-hero-deco-icon {
  font-size: 100px;
  display: block;
}

@keyframes awardsFloatIcon {
  0%, 100% { 
    transform: translateY(-50%) rotate(-5deg) scale(1); 
  }
  50% { 
    transform: translateY(-55%) rotate(5deg) scale(1.05); 
  }
}

/* ─── Content Container ─── */
.awards-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Breadcrumb ─── */
.awards-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 0.2s forwards;
}

.awards-breadcrumb-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.awards-breadcrumb-link:hover {
  color: #027a7a;
  text-decoration: none;
}

.awards-breadcrumb-sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.awards-breadcrumb-current {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── Tag/Eyebrow ─── */
.awards-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(2, 122, 122, 0.8);
  /* border: 1px solid rgba(233, 97, 47, 0.35); */
  border-radius: 30px;
  margin-bottom: 28px;
  margin-top:48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 0.35s forwards;
}

.awards-hero-tag-icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.awards-hero-tag-text {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ─── Title ─── */
.awards-hero-title {
  margin: 0 0 20px;
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 0.5s forwards;
}

.awards-title-small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 8px;
}

.awards-title-main {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 4px;
}

.awards-title-accent {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #027a7a;
  text-transform: uppercase;
  letter-spacing: 12px;
  line-height: 1.2;
}

/* ─── Divider ─── */
.awards-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 0.65s forwards;
}

.awards-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 71, 0.5), transparent);
}

.awards-divider-icon {
  color: #027a7a;
  font-size: 14px;
}

/* ─── Subtitle ─── */
.awards-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 12px;
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 0.8s forwards;
}

/* ─── Award Badges Preview ─── */
.awards-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 0.9s forwards;
}

.awards-hero-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.awards-hero-badge:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.awards-hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

/* ─── Action Buttons ─── */
.awards-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: awardsFadeInUp 0.7s ease 1s forwards;
}

/* Primary Button */
.awards-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #027a7a;
  border: 2px solid #027a7a;
  border-radius: 50px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.awards-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ff7a47;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: 0;
}

.awards-btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.awards-btn-primary span,
.awards-btn-primary i {
  position: relative;
  z-index: 1;
}

.awards-btn-primary:hover {
  border-color: #ff7a47;
  color: #fff;
  text-decoration: none;
}

.awards-btn-primary i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.awards-btn-primary:hover i {
  transform: translateY(4px);
}

/* Outline Button */
.awards-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.awards-btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #004d4d;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: 0;
}

.awards-btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.awards-btn-outline span,
.awards-btn-outline i {
  position: relative;
  z-index: 1;
}

.awards-btn-outline:hover {
  border-color: #004d4d;
  color: #fff;
  text-decoration: none;
}

.awards-btn-outline i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.awards-btn-outline:hover i {
  transform: translateX(4px);
}

/* ─── Vertical Text ─── */
.awards-hero-vertical-text {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  z-index: 10;
}

.awards-hero-vertical-text span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
}

/* ─── Scroll Indicator ─── */
.awards-hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: awardsFadeIn 0.7s ease 1.2s forwards;
}

.awards-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 12px;
  position: relative;
}

.awards-scroll-wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: awardsScrollWheel 1.5s ease-in-out infinite;
}

@keyframes awardsScrollWheel {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 18px; }
}

.awards-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ─── Animations ─── */
@keyframes awardsFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes awardsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE STYLES - HERO
═══════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .awards-title-main {
    font-size: 60px;
  }
  .awards-title-accent {
    font-size: 40px;
    letter-spacing: 10px;
  }
  .awards-hero-frame {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 991px) {
  .awards-hero {
    height: 90vh;
    min-height: 650px;
  }
  .awards-title-main {
    font-size: 50px;
    letter-spacing: 2px;
  }
  .awards-title-accent {
    font-size: 34px;
    letter-spacing: 8px;
  }
  .awards-title-small {
    font-size: 15px;
    letter-spacing: 6px;
  }
  .awards-hero-vertical-text {
    display: none;
  }
  .awards-hero-deco {
    display: none;
  }
  .awards-hero-frame {
    width: 60px;
    height: 60px;
  }
  .awards-hero-frame-tl {
    top: 24px;
    left: 24px;
  }
  .awards-hero-frame-br {
    bottom: 24px;
    right: 24px;
  }
  .awards-hero-badge {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .awards-hero {
    height: 100svh;
    min-height: 620px;
  }
  .awards-hero-content {
    padding: 0 16px;
  }
  .awards-title-main {
    font-size: 38px;
    letter-spacing: 1px;
  }
  .awards-title-accent {
    font-size: 26px;
    letter-spacing: 5px;
  }
  .awards-title-small {
    font-size: 13px;
    letter-spacing: 4px;
  }
  .awards-hero-subtitle {
    font-size: 14px;
    max-width: 320px;
  }
  .awards-hero-badges {
    gap: 16px;
  }
  .awards-hero-badge {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .awards-hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  .awards-btn-primary,
  .awards-btn-outline {
    width: 260px;
    justify-content: center;
  }
  .awards-hero-frame {
    display: none;
  }
  .awards-hero-scroll {
    bottom: 30px;
  }
  .awards-hero-tag {
    padding: 8px 18px;
  }
  .awards-hero-tag-text {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .awards-divider-line {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .awards-title-main {
    font-size: 32px;
  }
  .awards-title-accent {
    font-size: 22px;
    letter-spacing: 4px;
  }
  .awards-hero-breadcrumb {
    margin-bottom: 24px;
  }
  .awards-breadcrumb-link,
  .awards-breadcrumb-current {
    font-size: 10px;
  }
  .awards-btn-primary,
  .awards-btn-outline {
    width: 240px;
    padding: 14px 24px;
  }
  .awards-hero-badge {
    width: 110px;
    height: 110px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CERTIFICATE POPUP - REDESIGNED
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   CERTIFICATE POPUP - CENTERED
═══════════════════════════════════════════════════════════ */

.cert-popup-overlay {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: certOverlayIn 0.3s ease forwards;
}

@keyframes certOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cert-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  animation: certPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes certPopIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ─── Close Button ─── */
.cert-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.cert-popup-close:hover {
  background: #004d4d;
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
}

/* ─── Image Area ─── */
.cert-popup-image-area {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Decorative inner border */
.cert-popup-image-area::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
}

.cert-popup-image-area img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - POPUP
═══════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .cert-popup-overlay {
    padding: 30px;
  }

  .cert-popup {
    max-width: 92vw;
  }

  .cert-popup-close {
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .cert-popup-image-area {
    padding: 12px;
    border-radius: 10px;
  }

  .cert-popup-image-area img {
    max-height: 75vh;
  }
}

@media (max-width: 767px) {
  .cert-popup-overlay {
    padding: 20px;
  }

  .cert-popup {
    max-width: 95vw;
  }

  .cert-popup-close {
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .cert-popup-image-area {
    padding: 10px;
    border-radius: 8px;
  }

  .cert-popup-image-area::before {
    inset: 5px;
  }

  .cert-popup-image-area img {
    max-height: 70vh;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .cert-popup-overlay {
    padding: 14px;
  }

  .cert-popup-close {
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-width: 1.5px;
  }

  .cert-popup-image-area {
    padding: 8px;
  }

  .cert-popup-image-area::before {
    inset: 4px;
  }

  .cert-popup-image-area img {
    max-height: 65vh;
  }
}

/* ─── View Certificate Button (changed to button) ─── */
.award-btn-certificate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  background: transparent;
  color: #4a5a5a;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.award-btn-certificate:hover {
  border-color: #027a7a;
  color: #027a7a;
  background: rgba(233, 97, 47, 0.04);
}

.award-btn-certificate i {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   AWARDS GALLERY SECTION
═══════════════════════════════════════════════════════════ */

.awards-gallery-section {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.awards-gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.awards-gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 77, 77, 0.08);
  border: 1px solid rgba(0, 77, 77, 0.15);
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.awards-gallery-tag i {
  font-size: 12px;
}

.awards-gallery-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a2a2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.awards-gallery-title span {
  color: #027a7a;
}

.awards-gallery-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a6a6a;
  line-height: 1.8;
  margin: 0;
}

.awards-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-award-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.gallery-award-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f3 0%, #e8edec 100%);
}

.gallery-award-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-award-card:hover .gallery-award-image-wrap img {
  transform: scale(1.08);
}

.gallery-award-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-award-card:hover .gallery-award-overlay {
  opacity: 1;
}

.gallery-view-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1a2a2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-award-card:hover .gallery-view-btn {
  transform: translateY(0);
}

.gallery-view-btn:hover {
  background: #1a2a2a;
  color: #fff;
}

.gallery-view-btn i {
  font-size: 14px;
}

.gallery-award-year {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-award-info {
  padding: 24px;
}

.gallery-award-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  line-height: 1.3;
}

.gallery-award-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6a7a7a;
  line-height: 1.7;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.gallery-cert-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.gallery-cert-link:hover::after {
  width: 100%;
}

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

.gallery-cert-link:hover i {
  transform: translateX(3px) translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - GALLERY & POPUP
═══════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .awards-gallery-grid {
    gap: 24px;
  }
  .awards-gallery-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .awards-gallery-section {
    margin-top: 70px;
    padding-top: 60px;
  }
  .awards-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-popup {
    max-width: 90%;
  }
  .cert-popup-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .awards-gallery-section {
    margin-top: 50px;
    padding-top: 50px;
  }
  .awards-gallery-header {
    margin-bottom: 40px;
  }
  .awards-gallery-title {
    font-size: 26px;
  }
  .awards-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-award-image-wrap {
    height: 200px;
  }
  .cert-popup-overlay {
    padding: 16px;
  }
  .cert-popup {
    max-width: 95%;
  }
  .cert-popup-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .awards-gallery-title {
    font-size: 22px;
  }
  .gallery-award-image-wrap {
    height: 180px;
  }
  .gallery-award-info {
    padding: 20px;
  }
  .gallery-award-name {
    font-size: 17px;
  }
  .cert-popup-overlay {
    padding: 12px;
  }
  .cert-popup-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
/* ═══════════════════════════════════════════════════════════
   AWARDS SHOWCASE SECTION
═══════════════════════════════════════════════════════════ */

.awards-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 50%, #f5f7f6 100%);
  position: relative;
  overflow: hidden;
}

.awards-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 77, 77, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

/* ─── Section Header ─── */
.awards-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.awards-section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 77, 77, 0.08);
  border: 1px solid rgba(0, 77, 77, 0.15);
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.awards-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px;
  line-height: 1.2;
}

.awards-section-title span {
  color: #027a7a;
}

.awards-section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5a6a6a;
  line-height: 1.8;
  margin: 0;
}

/* ─── Awards List ─── */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ─── Award Card ─── */
.award-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.award-card-reverse {
  direction: rtl;
}

.award-card-reverse > * {
  direction: ltr;
}

/* ─── Award Image ─── */
.award-card-image {
  position: relative;
}

.award-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.award-image-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  transform: rotate(-3deg);
}

.award-image-wrapper img {
  position: relative;
  z-index: 2;
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.award-card:hover .award-image-wrapper img {
  transform: scale(1.05) rotate(2deg);
}

.award-year-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 10px 20px;
  border-radius: 25px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Decorative Elements */
.award-image-deco {
  position: absolute;
  border: 2px dashed;
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.award-image-deco-1 {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  animation: rotateSlow 30s linear infinite;
}

.award-image-deco-2 {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  animation: rotateSlow 25s linear infinite reverse;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── Award Content ─── */
.award-card-content {
  padding: 20px 0;
}

.award-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.award-category i {
  font-size: 14px;
}

.award-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color:#004d4d ;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.award-org {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #5a6a6a;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.award-org i {
  color: #004d4d;
}

.award-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4a5a5a;
  line-height: 1.9;
  margin: 0 0 28px;
}

/* ─── Award Highlights ─── */
.award-highlights {
  background: #f8faf9;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
}

.award-highlights-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a2a2a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.award-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.award-highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4a5a5a;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 10px;
  color: #fff;
}

/* ─── Award Actions ─── */
.award-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.award-btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.award-btn-learn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: #fff;
  text-decoration: none;
}

.award-btn-learn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.award-btn-learn:hover i {
  transform: translateX(4px);
}

.award-btn-certificate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  color: #4a5a5a;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.award-btn-certificate:hover {
  border: none;
  background: #004d4d;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.award-btn-certificate i {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   AWARDS STATS SECTION
═══════════════════════════════════════════════════════════ */

.awards-stats {
  margin-top: 100px;
  padding: 60px 0;
  background: linear-gradient(135deg, #004d4d 0%, #003535 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.awards-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.awards-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.award-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.award-stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-stat-icon i {
  font-size: 22px;
  color: #fff;
}

.award-stat-content {
  display: flex;
  flex-direction: column;
}

.award-stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.award-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.award-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   AWARDS TIMELINE SECTION
═══════════════════════════════════════════════════════════ */

.awards-timeline {
  margin-top: 80px;
  text-align: center;
}

.awards-timeline-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1a2a2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 50px;
}

.awards-timeline-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 0 40px;
}

.awards-timeline-track::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e0e5e3, #e0e5e3, transparent);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 140px;
  position: relative;
  z-index: 1;
}

.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #004d4d;
  letter-spacing: 1px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e0e5e3;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-dot.active {
  background: #027a7a;
  box-shadow: 0 4px 15px rgba(233, 97, 47, 0.4);
}

.timeline-content {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5a6a6a;
  text-align: center;
  max-width: 120px;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE STYLES - SHOWCASE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .award-card {
    gap: 40px;
  }
  .award-title {
    font-size: 30px;
  }
  .awards-section-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .awards-showcase {
    padding: 80px 0;
  }
  .award-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .award-card-reverse {
    direction: ltr;
  }
  .award-image-wrapper {
    max-width: 300px;
  }
  .awards-stats-inner {
    gap: 30px;
  }
  .award-stat-divider {
    display: none;
  }
  .award-stat-item {
    flex: 0 0 45%;
    justify-content: center;
  }
  .awards-timeline-track {
    flex-wrap: wrap;
    gap: 30px;
  }
  .awards-timeline-track::before {
    display: none;
  }
  .timeline-item {
    min-width: 100px;
  }
}

@media (max-width: 767px) {
  .awards-showcase {
    padding: 60px 0;
  }
  .awards-section-header {
    margin-bottom: 50px;
  }
  .awards-section-title {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .awards-list {
    gap: 50px;
  }
  .award-title {
    font-size: 26px;
  }
  .award-description {
    font-size: 14px;
  }
  .award-highlights-list {
    grid-template-columns: 1fr;
  }
  .award-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .award-btn-learn,
  .award-btn-certificate {
    width: 100%;
    justify-content: center;
  }
  .awards-stats {
    margin-top: 60px;
    padding: 40px 20px;
    border-radius: 16px;
  }
  .award-stat-item {
    flex: 0 0 100%;
    justify-content: flex-start;
  }
  .award-stat-number {
    font-size: 28px;
  }
  .awards-timeline {
    margin-top: 50px;
  }
  .awards-timeline-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .timeline-item {
    min-width: 80px;
  }
  .timeline-content {
    font-size: 11px;
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .awards-section-title {
    font-size: 28px;
  }
  .award-image-wrapper {
    max-width: 250px;
  }
  .award-highlights {
    padding: 20px 16px;
  }
  .timeline-item {
    min-width: 70px;
  }
  .timeline-year {
    font-size: 14px;
  }
  
}

/* Toast message */
.toast-wrapper {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  min-width: 300px;
  max-width: 380px;
  pointer-events: none;
}

.toast-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.toast-box.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-box.success {
  background: #e6f4ea;
  color: #2d5a27;
  border: 1px solid #a8d5a2;
}

.toast-box.error {
  background: #fce8e8;
  color: #a32d2d;
  border: 1px solid #f09595;
}

.toast-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.5;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
}

.toast-close:hover {
  opacity: 1;
}

/* ══════════════════════════════════════
   Event Detail Section — Green/Nature Theme
   ══════════════════════════════════════ */

.event-detail-section {
  padding: 80px 0px 60px;
  background-color: #f7faf3;
}

/* ── Media Block ── */
.eds-media-block {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(59, 109, 17, 0.12);
  margin-bottom: 32px;
  background: #fff;
}

.eds-main-swiper {
  width: 100%;
  height: 460px;
}

.eds-slide-wrap {
  position: relative;
  width: 100%;
  height: 460px;
}

.eds-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eds-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(23, 52, 4, 0.55), transparent);
  pointer-events: none;
}

/* Custom Nav */
.eds-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
}

.eds-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #027a7a;
  background: #fff;
  color: #027a7a;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}

.eds-nav-btn:hover {
  background: #027a7a;
  border-color: #027a7a;
  color: #fff;
}

.eds-pagination {
  display: flex;
  gap: 6px;
  align-items: center;
}

.eds-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #027a7a;
  opacity: 1;
  border-radius: 50%;
}

.eds-pagination .swiper-pagination-bullet-active {
  background: #027a7a;
  width: 22px;
  border-radius: 4px;
}

/* Thumbnails */
.eds-thumb-swiper {
  padding: 10px 12px 12px;
  background: #fff;
}

.eds-thumb-img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  display: block;
}

.swiper-slide-thumb-active .eds-thumb-img {
  border-color: #027a7a;
}

/* Single image */
.eds-single-img-wrap {
  position: relative;
  height: 460px;
}

.eds-single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Post Info ── */
.eds-post-info {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #e8f3d8;
}

.eds-meta {
  margin-bottom: 16px;
}

.eds-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eaf3de;
  color: #027a7a;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #027a7a;
}

.eds-title {
  font-size: 26px;
  font-weight: 700;
  color: #027a7a;
  margin: 0 0 20px;
  line-height: 1.35;
}

.eds-leaf-icon {
  color: #027a7a;
  margin-right: 10px;
  font-size: 22px;
}

.eds-body {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* ── Share Bar ── */
.eds-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 32px;
  border: 1px solid #e8f3d8;
}

.eds-share-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eds-share-label {
  font-size: 13px;
  font-weight: 600;
  color: #027a7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eds-share-icons {
  display: flex;
  gap: 8px;
}

.eds-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  border: 1.5px solid #027a7a;
  color: #027a7a;
  background: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.eds-share-btn:hover {
  background: #027a7a;
  color: #fff;
  border-color: #027a7a;
}

.eds-comments-count {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #888;
}

.eds-comments-count i {
  color: #027a7a;
}

/* ── Sidebar ── */
.eds-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eds-sidebar-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e8f3d8;
}

.eds-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #027a7a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eds-sidebar-title i {
  color: #027a7a;
  font-size: 14px;
}

/* Search */
.eds-search-form {
  display: flex;
  gap: 0;
  border: 1.5px solid #027a7a;
  border-radius: 8px;
  overflow: hidden;
}

.eds-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  background: #fff;
}

.eds-search-btn {
  background: #027a7a;
  border: none;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.2s;
}

.eds-search-btn:hover {
  background: #027a7a;
}

/* Address */
.eds-address p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.eds-address p:last-child {
  margin-bottom: 0;
}

.eds-addr-icon {
  color: #027a7a;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
}

.eds-address a {
  color: #027a7a;
  text-decoration: none;
  word-break: break-all;
}

.eds-address a:hover {
  text-decoration: underline;
}

/* Map */
.eds-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8f3d8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .eds-main-swiper,
  .eds-slide-wrap,
  .eds-single-img-wrap {
    height: 260px;
  }

  .eds-post-info {
    padding: 20px;
  }

  .eds-title {
    font-size: 20px;
  }

  .eds-share-bar {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .eds-sidebar {
    margin-top: 32px;
  }
}

/* ── Trusted Partner Section ── */
/* ── Trusted Partner Section ── */
.trusted-partner-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
  border-top: 2px solid #027a7a;
  background-color: #eaf3de;
  text-align: center;
}

/* KPMG text watermark */
.tp-watermark {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #027a7a;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

/* Content sits above watermark */
.tp-content {
  position: relative;
  z-index: 1;
}

/* Card wrap */
.tp-card-wrap {
  display: flex;
  justify-content: center;
}

.tp-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1.5px solid #027a7a;
  border-radius: 12px;
  padding: 20px 36px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.tp-card:hover {
  border-color: #639922;
  text-decoration: none;
}

.tp-logo {
  height: 38px;
  width: auto;
  display: block;
}

.tp-divider {
  width: 1px;
  height: 48px;
  background-color: #027a7a;
  flex-shrink: 0;
}

.tp-info {
  text-align: left;
}

.tp-name {
  font-size: 15px;
  font-weight: 600;
  color: #027a7a;
  margin: 0 0 3px;
  line-height: 1.3;
}

.tp-tagline {
  font-size: 12px;
  color: #027a7a;
  margin: 0;
}

.tp-badge {
  margin-left: 4px;
  background-color: #eaf3de;
  color: #027a7a;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #027a7a;
  white-space: nowrap;
}

/* =============================================
   Plantation Gallery Item Card
============================================= */

/* ─── Card wrapper ─── */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #011a1a;
  cursor: pointer;
}

/* ─── Image ─── */
.gallery-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition:
    transform 0.55s ease,
    filter 0.4s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

/* ─────────────────────────────────────────────
   HOVER OVERLAY
───────────────────────────────────────────── */
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  /* Leave bottom strip space */
  bottom: 44px;
  background: linear-gradient(
    to bottom,
    rgba(0, 30, 30, 0) 0%,
    rgba(0, 60, 60, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

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

/* ── Title area ── */
.gallery-card-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  transition:
    transform 0.35s ease 0.05s,
    opacity 0.35s ease 0.05s;
}

.gallery-card:hover .gallery-card-title-wrap {
  transform: translateY(0);
  opacity: 1;
}

.gallery-card-title-icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.gallery-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
}

/* ── Action buttons ── */
.gallery-card-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.35s ease 0.1s,
    opacity 0.35s ease 0.1s;
}

.gallery-card:hover .gallery-card-actions {
  transform: translateY(0);
  opacity: 1;
}

.gallery-card-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}

.gallery-card-btn-zoom {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-card-btn-zoom:hover {
  background: #004d4d;
  border-color: #94dfa6;
  color: #94dfa6;
  transform: scale(1.12);
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   BOTTOM LABEL STRIP (always visible)
───────────────────────────────────────────── */
.gallery-card-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: #004d4d;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  z-index: 3;
  transition: background 0.25s;
}

.gallery-card:hover .gallery-card-strip {
  background: #006666;
}

.gallery-card-strip-title {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.gallery-card-strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94dfa6;
  flex-shrink: 0;
}

.gallery-card-strip-label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(148, 223, 166, 0.7);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE IMAGE HEIGHT
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .gallery-card-img {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .gallery-card-img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .gallery-card-img {
    height: 200px;
  }
  .gallery-card-title {
    font-size: 12px;
  }
}

/* =============================================
   Plantation Galleries Section
============================================= */

/* ─── Section wrapper ─── */
.gallery-section {
  background: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   HEADING
───────────────────────────────────────────── */

.gallery-heading {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.gallery-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06a8a8;
  box-shadow: 0 0 8px rgba(6, 168, 168, 0.5);
  flex-shrink: 0;
}

.gallery-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #004d4d;
}

.gallery-title {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.gallery-title-accent {
  color: #027a7a;
  margin-bottom: 4px;
}

.gallery-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 16px auto 16px;
}

.gallery-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 300;
  margin: 0;
}

/* ─────────────────────────────────────────────
   FILTER TABS
───────────────────────────────────────────── */
.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.gallery-filter-btn:hover {
  background: #e8f7f7;
  border-color: #06a8a8;
  color: #004d4d;
  transform: translateY(-1px);
}

.gallery-filter-active {
  background: #004d4d !important;
  border-color: #004d4d !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 77, 77, 0.25) !important;
}

.gallery-filter-icon {
  font-size: 10px;
  opacity: 0.7;
}

/* Count badge inside active filter */
.gallery-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #94dfa6;
  color: #004d4d;
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* ─────────────────────────────────────────────
   CONTACT BANNER
───────────────────────────────────────────── */
.gallery-contact-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  background: #f4fbfb;
  border: 1px solid #c2e8e8;
  border-left: 4px solid #004d4d;
  border-radius: 4px;
  padding: 18px 24px;
  margin-bottom: 36px;
  animation: galleryFadeIn 0.3s ease;
}

/* Estate name block */
.gallery-contact-estate {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.gallery-contact-estate-icon {
  width: 36px;
  height: 36px;
  background: #004d4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #94dfa6;
  flex-shrink: 0;
}

.gallery-contact-estate-name {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-contact-estate-tag {
  display: inline-block;
  background: #e8f7f7;
  border: 1px solid #c2e8e8;
  color: #006666;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Vertical separator */
.gallery-contact-sep {
  width: 1px;
  height: 40px;
  background: #c2e8e8;
  flex-shrink: 0;
}

/* Contact cards row */
.gallery-contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

/* Individual contact card */
.gallery-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #ddf0f0;
  border-radius: 8px;
  padding: 8px 14px 8px 8px;
  box-shadow: 0 2px 8px rgba(0, 77, 77, 0.06);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}

.gallery-contact-card:hover {
  border-color: #06a8a8;
  box-shadow: 0 4px 14px rgba(0, 77, 77, 0.1);
  transform: translateY(-1px);
}

/* Avatar circle */
.gallery-contact-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004d4d, #06a8a8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Name + phone block */
.gallery-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-contact-name {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.gallery-contact-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #004d4d;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.gallery-contact-phone:hover {
  color: #06a8a8;
  text-decoration: none;
}

.gallery-contact-phone-icon {
  font-size: 10px;
  color: #06a8a8;
}

/* ─────────────────────────────────────────────
   GALLERY GRID
───────────────────────────────────────────── */
.gallery-grid-wrap {
  animation: galleryFadeIn 0.4s ease;
}

.gallery-grid {
  /* Inherits existing portfolio-grid styles */
  margin: 0;
  padding: 0;
}

/* ─────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────── */
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: #aaa;
}

.gallery-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  color: #ddd;
}

.gallery-empty p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #aaa;
}

/* ─────────────────────────────────────────────
   ANIMATION
───────────────────────────────────────────── */
@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .gallery-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 70px 0 80px;
  }
  .gallery-title {
    font-size: 30px;
  }
  .gallery-contact-sep {
    display: none;
  }
  .gallery-contact-banner {
    gap: 12px;
    padding: 16px 18px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 56px 0 64px;
  }
  .gallery-title {
    font-size: 26px;
  }
  .gallery-heading {
    margin-bottom: 36px;
  }
  .gallery-filter-wrap {
    gap: 6px;
  }
  .gallery-filter-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  .gallery-contact-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gallery-contact-cards {
    gap: 10px;
  }
  .gallery-contact-card {
    padding: 7px 12px 7px 7px;
  }
}

/* =============================================
   Branch Network Section
============================================= */

/* ─── Section wrapper ─── */
.branch-section {
  background: #f1f1f1;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   HEADING
───────────────────────────────────────────── */
.branch-heading {
  margin-bottom: 48px;
}

.branch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.branch-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06a8a8;
  box-shadow: 0 0 8px rgba(6, 168, 168, 0.5);
  flex-shrink: 0;
}

.branch-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #004d4d;
}

.branch-title {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.branch-title-accent {
  color: #027a7a;
}

.branch-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 16px 0 14px 0;
}

.branch-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 300;
  margin: 20px 0 0 0;
}

/* ─────────────────────────────────────────────
   TAB PILL NAVIGATION
───────────────────────────────────────────── */
.branch-tabs-wrap {
  margin-bottom: 36px;
  position: relative;
}

/* Scrollable pill bar */
.branch-tabs-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 4px;
}

/* Each tab pill */
.branch-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.branch-tab-btn:hover {
  border-color: #004d4d;
  color: #004d4d;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 77, 77, 0.1);
}

/* Active pill */
.branch-tab-active {
  background: #004d4d !important;
  border-color: #004d4d !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 77, 77, 0.25) !important;
}

/* HQ / Corp tag inside pill */
.branch-tab-tag {
  display: inline-block;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 8px;
  line-height: 1.4;
}

.branch-tab-active .branch-tab-tag {
  background: #94dfa6;
  color: #004d4d;
}

/* ─────────────────────────────────────────────
   CONTENT AREA
───────────────────────────────────────────── */
.branch-content {
  animation: branchFadeIn 0.35s ease;
}

.branch-content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* ─────────────────────────────────────────────
   INFO CARD
───────────────────────────────────────────── */
.branch-info-col {
  margin-bottom: 24px;
}

.branch-info-card {
  background: #fff;
  border: 1px solid #e8f0f0;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 77, 77, 0.07);
  border-left: 4px solid #004d4d;
}

/* Card header */
.branch-info-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  background: #004d4d;
}

.branch-info-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(148, 223, 166, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-info-icon {
  font-size: 18px;
  color: #94dfa6;
}

.branch-info-name {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.branch-info-tag {
  display: inline-block;
  background: #94dfa6;
  color: #004d4d;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Separator */
.branch-info-sep {
  height: 1px;
  background: #eef7f7;
}

/* Info rows */
.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid #f4fafa;
  transition: background 0.2s;
}

.branch-info-row:hover {
  background: #f8fffe;
}

.branch-info-row-icon {
  width: 32px;
  height: 32px;
  background: #e8f7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #06a8a8;
  margin-top: 2px;
}

.branch-info-row-label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}

.branch-info-row-value {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
  font-weight: 400;
}

.branch-info-row-link {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #004d4d;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.branch-info-row-link:hover {
  color: #06a8a8;
  text-decoration: none;
}

/* Footer */
.branch-info-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  margin-top: auto;
  background: #f8fffe;
  border-top: 1px solid #eef7f7;
}

.branch-info-counter {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #004d4d;
  line-height: 1;
}

.branch-info-footer-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  flex: 1;
}

/* Prev/Next nav buttons */
.branch-nav-btns {
  display: flex;
  gap: 8px;
}

.branch-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddf0f0;
  color: #004d4d;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}

.branch-nav-btn:hover {
  background: #004d4d;
  border-color: #004d4d;
  color: #fff;
  transform: scale(1.08);
}

/* ─────────────────────────────────────────────
   MAP
───────────────────────────────────────────── */
.branch-map-col {
  padding-left: 8px !important;
}

.branch-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 77, 77, 0.1);
  border: 1px solid #e8f0f0;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

/* Map header bar */
.branch-map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #004d4d;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.branch-map-header-icon {
  color: #94dfa6;
  font-size: 14px;
}

.branch-map-frame {
  flex: 1;
  min-height: 340px;
}

.branch-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: none;
}

/* ─────────────────────────────────────────────
   ANIMATION
───────────────────────────────────────────── */
@keyframes branchFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .branch-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .branch-section {
    padding: 70px 0 80px;
  }
  .branch-title {
    font-size: 30px;
  }
  .branch-map-col {
    padding-left: 15px !important;
  }
  .branch-map-wrap {
    min-height: 320px;
  }
  .branch-map-frame {
    min-height: 300px;
  }
  .branch-map-frame iframe {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .branch-section {
    padding: 56px 0 64px;
  }
  .branch-title {
    font-size: 28px;
  }
  .branch-tabs-scroll {
    gap: 6px;
  }
  .branch-tab-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  .branch-info-col {
    margin-bottom: 20px;
  }
  .branch-map-col {
    padding-left: 15px !important;
  }
  .branch-map-wrap {
    min-height: 280px;
  }
  .branch-map-frame,
  .branch-map-frame iframe {
    min-height: 260px;
  }
}

/* =============================================
   Our Brands / Group of Companies Section
============================================= */

/* ─── Section wrapper ─── */
.brands-section {
  position: relative;
  background: #f1f1f1;
  padding: 56px 0;
  overflow: hidden;
}

/* ─── Top & bottom accent bars ─── */
.brands-top-bar {
  display: none;
}

.brands-bottom-bar {
  display: none;
}

/* ─────────────────────────────────────────────
   HEADING
───────────────────────────────────────────── */
.brands-heading {
  text-align: center;
  margin-bottom: 40px;
}

.brands-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 10px;
}

.brands-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(6, 168, 168, 0.5);
  flex-shrink: 0;
}

.brands-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ─────────────────────────────────────────────
   SLIDER OUTER — full bleed
───────────────────────────────────────────── */
.brands-slider-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

/* Left & right fade edges */
.brands-fade-left,
.brands-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.brands-fade-left {
  left: 0;
  background: linear-gradient(to right, #f1f1f1, transparent);
}

.brands-fade-right {
  right: 0;
  background: linear-gradient(to left, #f1f1f1, transparent);
}

/* ─── Swiper ─── */
.brands-swiper {
  width: 100%;
  padding: 8px 0 !important;
}

/* Continuous scroll — no transition gap */
.brands-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}

/* ─── Slide ─── */
.brands-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
}

/* ─── Card ─── */
.brands-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.brands-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 110px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 20px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brands-card-inner:hover {
  background: #fff;
  border-color: #06a8a8;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 77, 77, 0.12);
}

/* ─── Logo image ─── */
.brands-logo {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  /* Show logos in their natural colors */
  filter: none;
  opacity: 0.75;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.brands-card-inner:hover .brands-logo {
  opacity: 1;
  transform: scale(1.05);
}

/* ─────────────────────────────────────────────
   STAT STRIP
───────────────────────────────────────────── */
.brands-stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e0eded;
}

.brands-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.brands-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #004d4d;
  line-height: 1;
  margin-bottom: 4px;
}

.brands-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

.brands-stat-sep {
  width: 1px;
  height: 40px;
  background: #e0eded;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 991px) {
  .brands-section {
    padding: 48px 0;
  }
  .brands-card-inner {
    width: 160px;
    height: 95px;
    padding: 16px;
  }
  .brands-stat-num {
    font-size: 26px;
  }
  .brands-stat-item {
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  .brands-section {
    padding: 40px 0;
  }
  .brands-heading {
    margin-bottom: 32px;
  }
  .brands-card-inner {
    width: 140px;
    height: 85px;
    padding: 14px;
  }
  .brands-card {
    padding: 0 12px;
  }
  .brands-fade-left,
  .brands-fade-right {
    width: 60px;
  }
  .brands-stat-strip {
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    margin-top: 32px;
  }
  .brands-stat-item {
    flex: 1 1 30%;
  }
  .brands-stat-sep {
    display: none;
  }
}

/* =============================================
   Our Plantations — Who We Section
============================================= */

/* ─── Section wrapper ─── */
.plantation-who-section {
  position: relative;
  background: #f1f1f1;
  padding: 90px 0 100px;
  overflow: hidden;
}

/* ─── Background glow ─── */
.plantation-who-bg-glow {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 168, 168, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* ─── Flex row ─── */
.plantation-who-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════
   CONTENT COLUMN
═══════════════════════════════════════ */
.plantation-who-content-col {
  padding-right: 56px !important;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Eyebrow ── */
.plantation-who-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.plantation-who-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06a8a8;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(6, 168, 168, 0.5);
}

.plantation-who-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #004d4d;
}

/* ── Title ── */
.plantation-who-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.plantation-who-title-accent {
  color: #027a7a;
}

/* ── Divider ── */
.plantation-who-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 20px 0 24px 0;
}

/* ── Feature pills ── */
.plantation-who-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  margin-top: 28px;
}

.plantation-who-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #ddf0f0;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #004d4d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    background 0.2s,
    border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 77, 77, 0.06);
}

.plantation-who-feature-pill:hover {
  background: #e8f7f7;
  border-color: #06a8a8;
}

.plantation-who-pill-icon {
  font-size: 11px;
  color: #004d4d;
}

/* ── Body text ── */
.plantation-who-body p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  margin-bottom: 14px;
}

.plantation-who-body p strong {
  color: #004d4d;
  font-weight: 600;
}

/* ── Expandable section ── */
.plantation-who-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.55s ease,
    opacity 0.45s ease;
}

.plantation-who-expand.plantation-who-expanded {
  max-height: 700px;
  opacity: 1;
}

/* ── Toggle button ── */
.plantation-who-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 28px;
  height: 46px;
  background: transparent;
  color: #004d4d;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #004d4d;
  border-radius: 23px;
  cursor: pointer;
  transition:
    color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.plantation-who-toggle-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #004d4d;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  border-radius: 23px;
}

.plantation-who-toggle-btn:hover::before {
  transform: translateX(0);
}

.plantation-who-toggle-btn span {
  position: relative;
  z-index: 1;
}

.plantation-who-toggle-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.plantation-who-toggle-icon {
  display: flex;
  align-items: center;
  font-size: 11px;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 1;
}

.plantation-who-toggle-icon.plantation-who-icon-up {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════
   IMAGE COLUMN
═══════════════════════════════════════ */
.plantation-who-img-col {
  padding-left: 16px !important;
  position: relative;
  z-index: 1;
}

.plantation-who-img-frame {
  position: relative;
  padding: 20px 0 20px 20px;
}

/* Corner accents */
.plantation-who-corner {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 3;
  pointer-events: none;
}

.plantation-who-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid #06a8a8;
  border-left: 3px solid #06a8a8;
}

.plantation-who-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #004d4d;
  border-right: 3px solid #004d4d;
}

/* Image wrapper */
.plantation-who-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 56px rgba(0, 77, 77, 0.14);
  background: #e8f7f7;
}

.plantation-who-img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.plantation-who-img-wrap:hover .plantation-who-img {
  transform: scale(1.04);
}

/* Bottom tint on image */
.plantation-who-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(0, 40, 40, 0.4) 100%
  );
  pointer-events: none;
}

/* Floating stat badge — bottom left */
.plantation-who-float-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 4;
  background: rgba(0, 77, 77, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 2px;
  border-left: 3px solid #027a7a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.plantation-who-badge-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.plantation-who-badge-num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.plantation-who-badge-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

/* Floating location pill — top right */
.plantation-who-float-pill {
  position: absolute;
  top: 36px;
  right: 8px;
  z-index: 4;
  background: #fff;
  border: 1px solid #ddf0f0;
  border-radius: 20px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #004d4d;
  box-shadow: 0 4px 16px rgba(0, 77, 77, 0.1);
}

.plantation-who-pill-loc-icon {
  color: #06a8a8;
  font-size: 12px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .plantation-who-title {
    font-size: 40px;
  }
  .plantation-who-content-col {
    padding-right: 40px !important;
  }
  .plantation-who-img {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .plantation-who-section {
    padding: 70px 0 80px;
  }
  .plantation-who-content-col {
    padding-right: 15px !important;
    margin-bottom: 48px;
  }
  .plantation-who-img-col {
    padding-left: 15px !important;
  }
  .plantation-who-title {
    font-size: 34px;
  }
  .plantation-who-img {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .plantation-who-section {
    padding: 56px 0 64px;
  }
  .plantation-who-title {
    font-size: 28px;
  }
  .plantation-who-img {
    height: 280px;
  }
  .plantation-who-img-frame {
    padding: 14px 0 14px 14px;
  }
  .plantation-who-float-badge {
    bottom: 20px;
    left: 20px;
    padding: 10px 14px;
  }
  .plantation-who-badge-num {
    font-size: 16px;
  }
  .plantation-who-float-pill {
    top: 20px;
    right: 4px;
    padding: 5px 12px;
    font-size: 10px;
  }
  .plantation-who-features {
    gap: 6px;
  }
}

/* =============================================
   Core Values Section
============================================= */

/* ─── Section wrapper ─── */
.corevalues-section {
  position: relative;
  background: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}

/* ─── Decorative arc background ─── */
.corevalues-bg-arc {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 168, 168, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────
   HEADING
───────────────────────────────────────────── */
.corevalues-heading {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.corevalues-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 16px;
}

.corevalues-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: #06a8a8;
  opacity: 0.5;
}

.corevalues-title {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 14px 0;
}

.corevalues-title-accent {
  color: #027a7a;
}

.corevalues-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888;
  margin: 0;
}

/* ─────────────────────────────────────────────
   TABS WRAPPER
───────────────────────────────────────────── */
.corevalues-tabs-wrap {
  position: relative;
  z-index: 1;
}

/* ─── Tab nav buttons ─── */
.corevalues-tab-nav {
  display: flex;
  align-items: stretch;
  background: #f4fbfb;
  border: 1px solid #dff0f0;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.corevalues-tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 12px;
  background: transparent;
  border: none;
  border-right: 1px solid #dff0f0;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
}

.corevalues-tab-btn:last-child {
  border-right: none;
}

.corevalues-tab-btn:hover {
  background: #eef7f7;
}

.corevalues-tab-active {
  background: #fff !important;
}

/* Icon wrap */
.corevalues-tab-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f7f7;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.corevalues-tab-btn:hover .corevalues-tab-icon-wrap {
  transform: scale(1.06);
}

.corevalues-tab-active .corevalues-tab-icon-wrap {
  background: linear-gradient(135deg, #004d4d, #06a8a8);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 77, 77, 0.25);
}

.corevalues-tab-icon {
  font-size: 22px;
  color: #004d4d;
  transition: color 0.25s;
}

.corevalues-tab-active .corevalues-tab-icon {
  color: #fff;
}

/* Label */
.corevalues-tab-label {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  transition: color 0.25s;
}

.corevalues-tab-active .corevalues-tab-label {
  color: #004d4d;
  font-weight: 600;
}

/* ─── Sliding indicator bar ─── */
.corevalues-indicator-bar {
  position: relative;
  height: 3px;
  background: #dff0f0;
}

.corevalues-indicator-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 0 0 2px 2px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────────
   TAB CONTENT
───────────────────────────────────────────── */
.corevalues-tab-content {
  background: #fff;
  border: 1px solid #dff0f0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

/* Each pane */
.corevalues-tab-pane {
  position: absolute;
  inset: 0;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}

.corevalues-pane-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Pane inner — flex row */
.corevalues-pane-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

/* ── Left: big icon ── */
.corevalues-pane-icon-col {
  flex-shrink: 0;
}

.corevalues-pane-icon-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corevalues-pane-icon {
  font-size: 48px;
  color: #004d4d;
  position: relative;
  z-index: 1;
}

.corevalues-pane-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(6, 168, 168, 0.2);
  animation: corevaluesPulse 2.5s ease-in-out infinite;
}

.corevalues-pane-icon-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(6, 168, 168, 0.06);
}

/* ── Right: text block ── */
.corevalues-pane-text-col {
  flex: 1;
  position: relative;
}

.corevalues-pane-num {
  position: absolute;
  top: -12px;
  right: 0;
  font-family: "Oswald", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(0, 77, 77, 0.05);
  line-height: 1;
  user-select: none;
}

.corevalues-pane-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.corevalues-pane-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin-bottom: 16px;
}

.corevalues-pane-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #666;
  font-weight: 300;
  margin-bottom: 18px;
}

.corevalues-pane-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f7f7;
  border: 1px solid #c2e8e8;
  border-radius: 20px;
  padding: 5px 16px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #004d4d;
}

.corevalues-pane-highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06a8a8;
  flex-shrink: 0;
}

/* ─── Step dots ─── */
.corevalues-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.corevalues-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dde8e8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    width 0.3s,
    border-radius 0.3s;
}

.corevalues-dot-active {
  background: #004d4d;
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────
   ANIMATION
───────────────────────────────────────────── */
@keyframes corevaluesPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.5;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .corevalues-title {
    font-size: 36px;
  }
  .corevalues-tab-pane {
    padding: 40px 40px;
  }
}

@media (max-width: 991px) {
  .corevalues-section {
    padding: 70px 0 80px;
  }
  .corevalues-title {
    font-size: 30px;
  }
  .corevalues-pane-inner {
    gap: 32px;
  }
  .corevalues-pane-icon-wrap {
    width: 80px;
    height: 80px;
  }
  .corevalues-pane-icon {
    font-size: 38px;
  }
  .corevalues-tab-pane {
    padding: 36px 32px;
  }
}

@media (max-width: 767px) {
  .corevalues-section {
    padding: 56px 0 64px;
  }
  .corevalues-title {
    font-size: 26px;
  }
  .corevalues-heading {
    margin-bottom: 40px;
  }
  .corevalues-tab-label {
    display: none;
  }
  .corevalues-tab-btn {
    padding: 18px 8px;
  }
  .corevalues-tab-icon-wrap {
    width: 44px;
    height: 44px;
  }
  .corevalues-tab-icon {
    font-size: 18px;
  }
  .corevalues-pane-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .corevalues-pane-divider {
    margin: 12px auto 14px;
  }
  .corevalues-pane-num {
    display: none;
  }
  /* Keep absolute so height never jumps */
  .corevalues-tab-content {
    min-height: 360px;
  }
  .corevalues-tab-pane {
    padding: 32px 24px;
    position: absolute;
    inset: 0;
    align-items: flex-start;
  }
  /* Active pane drives the container height */
  .corevalues-pane-active {
    position: relative !important;
    inset: auto !important;
  }
  .corevalues-tab-content {
    min-height: unset;
  }
}

/* =============================================
   About Agro Section — Who We Are
============================================= */

/* ─── Section wrapper ─── */
.about-agro-section {
  background: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* ─── Flex row ─── */
.about-agro-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════
   CONTENT COLUMN
═══════════════════════════════════════ */
.about-agro-content-col {
  padding-right: 56px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Eyebrow ── */
.about-agro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.about-agro-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06a8a8;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(6, 168, 168, 0.5);
}

.about-agro-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #027a7a;
}

/* ── Title ── */
.about-agro-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.about-agro-title-accent {
  color: #027a7a;
}

/* ── Divider ── */
.about-agro-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 20px 0 28px 0;
}

/* ── Body text ── */
.about-agro-body p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  margin-bottom: 14px;
  margin-top:28px;
}

.about-agro-body p strong {
  color: #004d4d;
  font-weight: 600;
}

.about-agro-body p:last-child {
  margin-bottom: 0;
}

/* ── Expandable section ── */
.about-agro-expand-wrap {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.about-agro-expand-wrap.about-agro-expanded {
  max-height: 600px;
  opacity: 1;
}

.about-agro-expand-wrap p {
  margin-top: 14px;
}

/* ── Toggle button ── */
.about-agro-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 28px;
  height: 46px;
  background: transparent;
  color: #004d4d;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #004d4d;
  border-radius: 23px;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.about-agro-toggle-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #004d4d;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  border-radius: 23px;
}

.about-agro-toggle-btn:hover::before {
  transform: translateX(0);
}

.about-agro-toggle-btn span {
  position: relative;
  z-index: 1;
}

.about-agro-toggle-btn:hover {
  color: #fff;
  border-color: #004d4d;
  transform: translateY(-2px);
}

.about-agro-toggle-icon {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 1;
  font-size: 11px;
}

.about-agro-toggle-icon.about-agro-icon-up {
  transform: rotate(180deg);
}

/* ── Stats row ── */
.about-agro-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  border: 1px solid #e8f0f0;
  border-radius: 4px;
  background: #f8fffe;
  overflow: hidden;
}

.about-agro-stat {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid #e8f0f0;
  position: relative;
  transition: background 0.2s;
}

.about-agro-stat:last-child {
  border-right: none;
}

.about-agro-stat:hover {
  background: #eef7f7;
}

.about-agro-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, #06a8a8, #027a7a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-agro-stat:hover::after {
  transform: scaleX(1);
}

.about-agro-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #004d4d;
  line-height: 1;
  margin-bottom: 4px;
}

.about-agro-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  line-height: 1.3;
  text-align: center;
}

/* ═══════════════════════════════════════
   IMAGE COLUMN
═══════════════════════════════════════ */
.about-agro-img-col {
  padding-left: 16px !important;
}

.about-agro-img-frame {
  position: relative;
  padding: 20px 0 20px 20px;
}

/* Corner accents */
.about-agro-corner {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 2;
  pointer-events: none;
}

.about-agro-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid #06a8a8;
  border-left: 3px solid #06a8a8;
}

.about-agro-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #004d4d;
  border-right: 3px solid #004d4d;
}

/* Image */
.about-agro-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 20px 56px rgba(0, 77, 77, 0.15);
}

.about-agro-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.about-agro-img-wrap:hover .about-agro-img {
  transform: scale(1.04);
}

/* Subtle green tint at bottom of image */
.about-agro-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(0, 40, 40, 0.45) 100%
  );
  pointer-events: none;
}

/* Floating badge */
.about-agro-float-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 4;
  background: rgba(0, 77, 77, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  border-left: 3px solid #027a7a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.about-agro-badge-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.about-agro-badge-title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.about-agro-badge-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #027a7a;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   PARALLAX BANNER
═══════════════════════════════════════ */
.about-agro-parallax {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
  background-color: #1f4e04;
}

.about-agro-parallax-overlay {
  position: absolute;
  inset: 0;
  background: #1a4d4e;
  z-index: 1;
}

.about-agro-parallax .container {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.about-agro-parallax-eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

/* Title */
.about-agro-parallax-title {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 0 0 24px 0;
}

.about-agro-parallax-accent {
  color: #027a7a;
  font-style: italic;
}

/* Leaf divider */
.about-agro-parallax-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.about-agro-parallax-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(148, 223, 166, 0.35);
}

.about-agro-parallax-leaf {
  font-size: 20px;
  line-height: 1;
}

/* Subtitle */
.about-agro-parallax-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  margin: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .about-agro-title {
    font-size: 40px;
  }
  .about-agro-content-col {
    padding-right: 40px !important;
  }
  .about-agro-parallax-title {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .about-agro-section {
    padding: 70px 0;
  }
  .about-agro-content-col {
    padding-right: 15px !important;
    margin-bottom: 48px;
  }
  .about-agro-img-col {
    padding-left: 15px !important;
  }
  .about-agro-title {
    font-size: 34px;
  }
  .about-agro-img {
    height: 400px;
  }
  .about-agro-parallax-title {
    font-size: 28px;
  }
  .about-agro-stat {
    flex: 1 1 50%;
  }
  .about-agro-stat:nth-child(2) {
    border-right: none;
  }
  .about-agro-stat:nth-child(3) {
    border-top: 1px solid #e8f0f0;
    border-right: 1px solid #e8f0f0;
  }
  .about-agro-stat:last-child {
    border-top: 1px solid #e8f0f0;
  }
}

@media (max-width: 767px) {
  .about-agro-section {
    padding: 56px 0;
  }
  .about-agro-title {
    font-size: 28px;
  }
  .about-agro-img {
    height: 300px;
  }
  .about-agro-img-frame {
    padding: 14px 0 14px 14px;
  }
  .about-agro-parallax {
    padding: 72px 0;
  }
  .about-agro-parallax-title {
    font-size: 22px;
    letter-spacing: 0.5px;
  }
  .about-agro-stat {
    flex: 1 1 50%;
  }
  .about-agro-float-badge {
    bottom: 20px;
    left: 20px;
  }
}

/* =============================================
   Hero Slider Section
============================================= */

/* ─── Outer wrapper ─── */
.hero-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ─── Swiper container ─── */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 680px;
}

/* ─── Each slide ─── */
.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   BACKGROUND IMAGE
───────────────────────────────────────────── */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  /* Ken Burns zoom effect on active slide */
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-swiper .swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

/* ─────────────────────────────────────────────
   OVERLAYS
───────────────────────────────────────────── */

/* Dark base overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: rgba(0, 15, 15, 0.52);
  z-index: 1;
}

/* Gradient from bottom for text readability */
.hero-slide-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 30, 30, 0.75) 0%,
    rgba(0, 30, 30, 0.15) 40%,
    rgba(0, 30, 30, 0.3) 100%
  );
}

/* ─────────────────────────────────────────────
   SLIDE CONTENT
───────────────────────────────────────────── */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 120px;
}

/* ── Eyebrow ── */
.hero-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.3s,
    transform 0.7s ease 0.3s;
}

.hero-swiper .swiper-slide-active .hero-slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(148, 223, 166, 0.6);
  flex-shrink: 0;
}

.hero-slide-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 1px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #027a7a;
  font-weight: 800;
  white-space: nowrap;
}

/* ── Light title (h2) ── */
.hero-slide-title-light {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  margin: 0 0 6px 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease 0.5s,
    transform 0.7s ease 0.5s;
}

.hero-swiper .swiper-slide-active .hero-slide-title-light {
  opacity: 1;
  transform: translateY(0);
}

/* ── Bold title (h1) ── */
.hero-slide-title-bold {
  font-family: "Oswald", sans-serif;
  font-size: 76px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin: 0 0 24px 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease 0.65s,
    transform 0.7s ease 0.65s;
}

.hero-swiper .swiper-slide-active .hero-slide-title-bold {
  opacity: 1;
  transform: translateY(0);
}

/* ── Leaf divider ── */
.hero-slide-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 0.7s ease 0.8s;
}

.hero-swiper .swiper-slide-active .hero-slide-divider {
  opacity: 1;
}

.hero-slide-divider-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(148, 223, 166, 0.4);
}

.hero-slide-divider-leaf {
  font-size: 18px;
  line-height: 1;
}

/* ── Subtitle ── */
.hero-slide-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 0.9s,
    transform 0.7s ease 0.9s;
}

.hero-swiper .swiper-slide-active .hero-slide-subtitle {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA buttons ── */
.hero-slide-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease 1.05s,
    transform 0.7s ease 1.05s;
}

.hero-swiper .swiper-slide-active .hero-slide-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Primary button */
.hero-slide-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  height: 52px;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #004d4d;
  border-radius: 26px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-slide-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #06a8a8;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  border-radius: 26px;
}

.hero-slide-btn-primary:hover::before {
  transform: translateX(0);
}

.hero-slide-btn-primary span,
.hero-slide-btn-icon {
  position: relative;
  z-index: 1;
}

.hero-slide-btn-primary:hover {
  color: #fff;
  border-color: #06a8a8;
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-slide-btn-icon {
  font-size: 11px;
  transition: transform 0.2s;
}

.hero-slide-btn-primary:hover .hero-slide-btn-icon {
  transform: translateX(4px);
}

/* Secondary button */
.hero-slide-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 26px;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s,
    transform 0.2s;
}

.hero-slide-btn-secondary:hover {
  border-color: #027a7a;
  color: #027a7a;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   SLIDE COUNTER (bottom right)
───────────────────────────────────────────── */
.hero-slide-counter {
  position: absolute;
  bottom: 90px;
  right: 48px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slide-num {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-slide-count-sep {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-slide-total {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

/* ─────────────────────────────────────────────
   CUSTOM NAVIGATION ARROWS
───────────────────────────────────────────── */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 77, 77, 0.55);
  border: 1px solid rgba(148, 223, 166, 0.25);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-nav-btn:hover {
  background: #004d4d;
  border-color: #027a7a;
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev {
  left: 28px;
}

.hero-nav-next {
  right: 28px;
}

/* ─────────────────────────────────────────────
   CUSTOM PAGINATION DOTS
───────────────────────────────────────────── */
.hero-swiper-pagination {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Override Swiper's default bullet styles */
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  cursor: pointer;
  transition:
    background 0.25s,
    width 0.3s,
    border-radius 0.3s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #027a7a;
  width: 28px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-slide-title-bold {
    font-size: 62px;
  }
  .hero-slide-title-light {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hero-swiper {
    height: 90vh;
    min-height: 580px;
  }
  .hero-slide-title-bold {
    font-size: 50px;
  }
  .hero-slide-title-light {
    font-size: 34px;
  }
  .hero-slide-subtitle {
    font-size: 14px;
  }
  .hero-slide-counter {
    display: none;
  }
  .hero-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }
  .hero-nav-prev {
    left: 16px;
  }
  .hero-nav-next {
    right: 16px;
  }
}

@media (max-width: 767px) {
  .hero-swiper {
    height: 100svh;
    min-height: 560px;
  }
  .hero-slide-content {
    padding: 80px 0 100px;
  }
  .hero-slide-title-bold {
    font-size: 38px;
    letter-spacing: 1px;
  }
  .hero-slide-title-light {
    font-size: 26px;
    letter-spacing: 3px;
  }
  .hero-slide-subtitle {
    font-size: 13px;
    max-width: 320px;
  }
  .hero-slide-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-slide-btn-primary,
  .hero-slide-btn-secondary {
    width: 260px;
    justify-content: center;
  }
  .hero-nav-btn {
    display: none;
  }
}

/* =============================================
   Why Choose Us Section
============================================= */

/* ─── Section wrapper ─── */
.whychoose-section {
  position: relative;
  background: #004d4d;
  padding: 90px 0 0;
  overflow: hidden;
}

/* ─── Background gradient overlay ─── */
.whychoose-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(6, 168, 168, 0.15) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(148, 223, 166, 0.08) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}

/* ─── Subtle grid pattern ─── */
.whychoose-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────────── */
.whychoose-heading {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.whychoose-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.whychoose-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(148, 223, 166, 0.5);
  flex-shrink: 0;
}

.whychoose-main-title {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 12px 0;
}

.whychoose-title-accent {
  color: #027a7a;
}

.whychoose-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ─────────────────────────────────────────────
   CARDS ROW
───────────────────────────────────────────── */
.whychoose-cards-row {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}

.whychoose-card-wrap {
  padding: 0 10px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  float: none;
}

/* ─── Card ─── */
.whychoose-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px 28px 32px;
  text-align: center;
  overflow: hidden;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.whychoose-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 223, 166, 0.3);
  transform: translateY(-6px);
}

/* Top accent bar (visible on hover) */
.whychoose-card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #004d4d, #06a8a8, #027a7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.whychoose-card:hover .whychoose-card-top-bar {
  transform: scaleX(1);
}

/* Number watermark */
.whychoose-card-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ─── Icon ─── */
.whychoose-icon-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whychoose-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(148, 223, 166, 0.2);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.whychoose-card:hover .whychoose-icon-ring {
  border-color: rgba(148, 223, 166, 0.6);
  transform: scale(1.1);
}

.whychoose-icon {
  font-size: 28px;
  color: #fff;
  position: relative;
  z-index: 1;
  transition:
    transform 0.3s ease,
    color 0.3s;
  background: rgba(148, 223, 166, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 60px;
  text-align: center;
}

.whychoose-card:hover .whychoose-icon {
  background: rgba(148, 223, 166, 0.18);
  transform: scale(1.08);
}

/* ─── Card title ─── */
.whychoose-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 12px 0;
}

/* ─── Highlight pill ─── */
.whychoose-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(148, 223, 166, 0.1);
  border: 1px solid rgba(148, 223, 166, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
  transition: background 0.25s;
}

.whychoose-card:hover .whychoose-highlight-pill {
  background: rgba(148, 223, 166, 0.18);
}

.whychoose-highlight-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* ─── Divider ─── */
.whychoose-card-divider {
  width: 32px;
  height: 2px;
  background: rgba(148, 223, 166, 0.25);
  border-radius: 1px;
  margin: 0 auto 16px;
  transition:
    width 0.3s ease,
    background 0.3s;
}

.whychoose-card:hover .whychoose-card-divider {
  width: 56px;
  background: rgba(148, 223, 166, 0.6);
}

/* ─── Description ─── */
.whychoose-card-desc {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin: 0;
  flex: 1;
}

/* ─── Bottom accent bar (hover) ─── */
.whychoose-card-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(6, 168, 168, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whychoose-card:hover .whychoose-card-bottom-bar {
  opacity: 1;
}

/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */
.whychoose-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 60px;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}

.whychoose-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.whychoose-trust-item:hover {
  color: rgba(255, 255, 255, 0.75);
}

.whychoose-trust-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.whychoose-trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .whychoose-main-title {
    font-size: 36px;
  }
  .whychoose-trust-item {
    padding: 0 24px;
  }
}

@media (max-width: 991px) {
  .whychoose-section {
    padding: 70px 0 0;
  }
  .whychoose-main-title {
    font-size: 30px;
  }
  .whychoose-card-wrap {
    margin-bottom: 20px;
  }
  .whychoose-trust-strip {
    gap: 16px;
    padding: 20px 16px;
  }
  .whychoose-trust-sep {
    display: none;
  }
  .whychoose-trust-item {
    padding: 0 16px;
  }
}

/* Force 4 cards in a single horizontal row on desktop */
@media (min-width: 992px) {
  .whychoose-card-wrap {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .whychoose-card-wrap {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  .whychoose-section {
    padding: 56px 0 0;
  }
  .whychoose-main-title {
    font-size: 26px;
  }
  .whychoose-heading {
    margin-bottom: 40px;
  }
  .whychoose-card {
    padding: 28px 22px 24px;
  }
  .whychoose-card-wrap {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .whychoose-trust-strip {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .whychoose-trust-item {
    justify-content: center;
  }
}

/* =============================================
   Overseas Operations Section
============================================= */

/* ─── Section wrapper ─── */
.oversea-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
  background: #fff;
}

/* ═══════════════════════════════════════
   LEFT — Image column
═══════════════════════════════════════ */
.oversea-image-col {
  position: relative;
  width: 50%;
  min-height: 620px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Uses existing .about-us-bg from your master CSS */
.oversea-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}

.oversea-section:hover .oversea-image-bg {
  transform: scale(1.04);
}

/* Dark tint overlay */
.oversea-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 30, 30, 0.6) 0%,
    rgba(0, 77, 77, 0.35) 60%,
    rgba(0, 30, 30, 0.25) 100%
  );
  z-index: 1;
}

/* Corner frame accents */
.oversea-img-frame-tl,
.oversea-img-frame-br {
  position: absolute;
  width: 64px;
  height: 64px;
  z-index: 3;
  pointer-events: none;
}

.oversea-img-frame-tl {
  top: 24px;
  left: 24px;
  border-top: 3px solid rgba(148, 223, 166, 0.6);
  border-left: 3px solid rgba(148, 223, 166, 0.6);
}

.oversea-img-frame-br {
  bottom: 24px;
  right: 24px;
  border-bottom: 3px solid rgba(148, 223, 166, 0.4);
  border-right: 3px solid rgba(148, 223, 166, 0.4);
}

/* ── Markets floating grid ── */
.oversea-markets-grid {
  position: absolute;
  bottom: 36px;
  left: 24px;
  right: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.oversea-market-card {
  background: rgba(0, 30, 30, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 223, 166, 0.18);
  border-left: 3px solid #06a8a8;
  border-radius: 2px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.oversea-market-card:hover {
  background: rgba(0, 77, 77, 0.85);
  border-left-color: #027a7a;
}

.oversea-market-icon {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
}

.oversea-market-count {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #027a7a;
  line-height: 1;
}

.oversea-market-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════
   RIGHT — Content column
═══════════════════════════════════════ */
.oversea-content-col {
  width: 50%;
  background: #f8fffe;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Left accent bar */
.oversea-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #004d4d, #06a8a8, #027a7a);
  z-index: 2;
}

/* Watermark */
.oversea-bg-watermark {
  position: absolute;
  bottom: 0px;
  right: -20px;
  font-family: "Oswald", sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(0, 77, 77, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}

/* Inner content wrapper */
.oversea-content-inner {
  padding: 72px 60px 72px 72px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Eyebrow */
.oversea-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 18px;
}

.oversea-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06a8a8;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(6, 168, 168, 0.5);
}

.oversea-eyebrow-line {
  display: block;
  width: 36px;
  height: 1.5px;
  background: #06a8a8;
  opacity: 0.5;
}

/* Title */
.oversea-title {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0;
}

.oversea-title-accent {
  color: #027a7a;
}

/* Divider */
.oversea-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 20px 0 28px 0;
}

/* Callout block */
.oversea-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #004d4d;
  padding: 18px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
  margin-top:24px
}

.oversea-callout-icon {
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.oversea-callout-text {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  letter-spacing: 0.3px;
}

/* Body text */
.oversea-body {
  margin-bottom: 24px;
}

.oversea-body p {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.85;
  color: #666;
  font-weight: 300;
  margin-bottom: 12px;
}

.oversea-body p:last-child {
  margin-bottom: 0;
}

/* Feature list */
.oversea-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oversea-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #555;
  font-weight: 400;
}

.oversea-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f7f7;
  border: 1px solid #c2e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oversea-feature-check i {
  font-size: 9px;
  color: #004d4d;
}

/* CTA */
.oversea-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.oversea-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  height: 50px;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #004d4d;
  border-radius: 25px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.oversea-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #06a8a8;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  border-radius: 25px;
}

.oversea-btn-primary:hover::before {
  transform: translateX(0);
}

.oversea-btn-primary span,
.oversea-btn-icon {
  position: relative;
  z-index: 1;
}

.oversea-btn-primary:hover {
  color: #fff;
  border-color: #06a8a8;
  transform: translateY(-2px);
  text-decoration: none;
}

.oversea-btn-icon {
  font-size: 12px;
  transition: transform 0.2s;
}

.oversea-btn-primary:hover .oversea-btn-icon {
  transform: translateX(3px) rotate(-15deg);
}

/* CTA note */
.oversea-cta-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #888;
  letter-spacing: 0.5px;
}

.oversea-note-icon {
  color: #027a7a;
  font-size: 12px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .oversea-content-inner {
    padding: 60px 48px 60px 56px;
  }
  .oversea-title {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .oversea-section {
    flex-direction: column;
  }
  .oversea-image-col {
    width: 100%;
    min-height: 400px;
  }
  .oversea-content-col {
    width: 100%;
  }
  .oversea-content-inner {
    padding: 52px 40px;
  }
  .oversea-title {
    font-size: 28px;
  }
  .oversea-markets-grid {
    grid-template-columns: repeat(4, 1fr);
    bottom: 20px;
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 767px) {
  .oversea-image-col {
    min-height: 320px;
  }
  .oversea-content-inner {
    padding: 44px 24px;
  }
  .oversea-title {
    font-size: 26px;
  }
  .oversea-markets-grid {
    grid-template-columns: 1fr 1fr;
  }
  .oversea-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .oversea-btn-primary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
  .oversea-bg-watermark {
    font-size: 80px;
  }
}

/* =============================================
   Our Principal Virtues Section
   Add this entire block to your master CSS file
============================================= */

/* ─── Section wrapper ─── */
.virtues-section {
  position: relative;
  background: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}

/* ─── Background glow ─── */
.virtues-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 168, 168, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ─── Dot pattern background ─── */
.virtues-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 77, 77, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────────── */
.virtues-heading {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.virtues-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #004d4d;
  margin-bottom: 16px;
}

.virtues-eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: #06a8a8;
  flex-shrink: 0;
}

.virtues-main-title {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 16px 0;
}

.virtues-title-accent {
  color: #027a7a;
}

.virtues-title-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   CONTENT ROW
───────────────────────────────────────────── */
.virtues-content-row {
  position: relative;
  z-index: 1;
  align-items: center;
}

/* ─────────────────────────────────────────────
   VIRTUE CARDS
───────────────────────────────────────────── */
.virtues-col-left,
.virtues-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
}

.virtue-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8f0f0;
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 77, 77, 0.06);
}

.virtue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 77, 77, 0.14);
}

.virtue-card-inner {
  padding: 28px 24px 24px;
  position: relative;
}

/* Number watermark */
.virtue-number {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 77, 77, 0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Icon */
.virtue-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f7f7, #c2e8e8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition:
    background 0.3s,
    transform 0.3s;
  flex-shrink: 0;
}

.virtue-card:hover .virtue-icon-wrap {
  background: linear-gradient(135deg, #004d4d, #06a8a8);
  transform: scale(1.05);
}

.virtue-icon {
  font-size: 22px;
  color: #004d4d;
  transition: color 0.3s;
}

.virtue-card:hover .virtue-icon {
  color: #fff;
}

/* Text */
.virtue-title {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 8px 0;
}

.virtue-desc {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: #666;
  font-weight: 300;
  margin: 0;
}

/* Bottom bar accent */
.virtue-card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.virtue-card:hover .virtue-card-bar {
  transform: scaleX(1);
}

/* ─────────────────────────────────────────────
   CENTER IMAGE COLUMN
───────────────────────────────────────────── */
.virtues-col-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.virtues-center-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
}

/* Decorative rings */
.virtues-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 77, 77, 0.12);
  pointer-events: none;
}

.virtues-ring-outer {
  inset: -24px;
  border-style: dashed;
  animation: virtuesRotate 20s linear infinite;
}

.virtues-ring-inner {
  inset: 10px;
  border-color: rgba(6, 168, 168, 0.2);
}

/* Image circle */
.virtues-img-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8f7f7;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 3px rgba(6, 168, 168, 0.2),
    0 20px 60px rgba(0, 77, 77, 0.2);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.virtues-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.virtues-img-wrap:hover .virtues-img {
  transform: scale(1.06);
}

/* Center badge */
.virtues-center-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: #004d4d;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 77, 77, 0.3);
}

.virtues-badge-icon {
  font-size: 14px;
}

.virtues-badge-text {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

/* Stat pills */
.virtues-stat-pill {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 24px rgba(0, 77, 77, 0.12);
  border: 1px solid #e0f0f0;
  border-left: 3px solid #06a8a8;
}

.virtues-stat-top {
  top: -10px;
  right: -10px;
}

.virtues-stat-bottom {
  bottom: 20px;
  left: -20px;
}

.virtues-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #004d4d;
  line-height: 1;
}

.virtues-stat-lbl {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-top: 2px;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes virtuesRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .virtues-main-title {
    font-size: 34px;
  }
  .virtues-center-wrap {
    width: 280px;
    height: 280px;
  }
  .virtues-img-wrap {
    width: 224px;
    height: 224px;
  }
}

@media (max-width: 991px) {
  .virtues-section {
    padding: 70px 0 80px;
  }
  .virtues-main-title {
    font-size: 28px;
  }
  .virtues-col-center {
    order: -1;
    margin-bottom: 40px;
  }
  .virtues-center-wrap {
    width: 240px;
    height: 240px;
    margin: 70px auto 48px;
  }
  .virtues-img-wrap {
    width: 192px;
    height: 192px;
  }
  .virtues-stat-top,
  .virtues-stat-bottom {
    display: none;
  }
}

@media (max-width: 767px) {
  .virtues-section {
    padding: 56px 0 64px;
  }
  .virtues-main-title {
    font-size: 24px;
  }
  .virtues-heading {
    margin-bottom: 40px;
  }
  .virtues-col-left,
  .virtues-col-right {
    gap: 16px;
  }
  .virtue-card-inner {
    padding: 22px 18px 20px;
  }
}

/* We agro section */
/* ─── Section wrapper ─── */
.weagro-section {
  position: relative;
  background: #f1f1f1;
  padding: 0;
  overflow: hidden;
}

/* ─── Top accent bar ─── */
.weagro-bg-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #004d4d, #06a8a8, #027a7a, transparent);
  z-index: 2;
}

/* ─── Subtle diagonal background pattern ─── */
.weagro-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(0, 77, 77, 0.018) 40px,
    rgba(0, 77, 77, 0.018) 41px
  );
  pointer-events: none;
  z-index: 0;
}

/* ─── Flex row ─── */
.weagro-flex-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  min-height: 560px;
  align-items: stretch;
}

/* ═══════════════════════════════════════
   LEFT COLUMN — Identity block
═══════════════════════════════════════ */
.weagro-left-col {
  padding: 0 !important;
  position: relative;
  background: #004d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
}

/* Large decorative background text */
.weagro-bg-text {
  position: absolute;
  bottom: -20px;
  left: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  letter-spacing: -5px;
  pointer-events: none;
  user-select: none;
}

.weagro-identity-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  width: 100%;
}

/* Brand mark circle */
.weagro-brand-mark {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weagro-brand-icon {
  font-size: 40px;
  position: relative;
  z-index: 2;
  animation: weagroFloat 3s ease-in-out infinite;
}

.weagro-brand-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(148, 223, 166, 0.35);
  animation: weagroPulseRing 2.5s ease-in-out infinite;
}

.weagro-brand-ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(148, 223, 166, 0.18);
}

/* Title block */
.weagro-title-wrap {
  margin-bottom: 32px;
}

.weagro-we {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.weagro-company-name {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 8px 0;
}

.weagro-company-name span {
  color: #027a7a;
}

.weagro-tagline {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Vertical divider */
.weagro-v-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(148, 223, 166, 0.5), transparent);
  margin: 0 auto 28px;
}

/* Est. badge */
.weagro-est-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 223, 166, 0.2);
  padding: 14px 28px;
  border-radius: 2px;
}

.weagro-est-label {
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.weagro-est-year {
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.weagro-est-country {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════
   RIGHT COLUMN — Content
═══════════════════════════════════════ */
.weagro-right-col {
  padding: 72px 40px 72px 64px !important;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow */
.weagro-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.weagro-eyebrow-line {
  display: block;
  flex: 0 0 36px;
  height: 1px;
  background: #06a8a8;
}

.weagro-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #004d4d;
  white-space: nowrap;
}

/* Headline */
.weagro-headline {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #004d4d;
  line-height: 1.2;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.weagro-headline-accent {
  color: #027a7a;
}

/* Divider */
.weagro-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 20px 0 28px 0;
}

/* Body text */
.weagro-body-lead {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  font-weight: 300;
  margin-bottom: 16px;
}

.weagro-body-lead strong {
  color: #004d4d;
  font-weight: 600;
}

.weagro-body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #666;
  font-weight: 300;
  margin-bottom: 32px;
}

/* Feature pillars */
.weagro-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid #e0eded;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 77, 77, 0.06);
}

.weagro-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #eef7f7;
  transition: background 0.2s;
}

.weagro-pillar:last-child {
  border-bottom: none;
}

.weagro-pillar:hover {
  background: #f4fbfb;
}

.weagro-pillar-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: #e8f7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.weagro-pillar-title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.weagro-pillar-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

/* CTA row */
.weagro-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.weagro-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  height: 50px;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #004d4d;
  border-radius: 25px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.weagro-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #06a8a8;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  border-radius: 25px;
}

.weagro-btn-primary:hover::before {
  transform: translateX(0);
}

.weagro-btn-primary span,
.weagro-btn-icon {
  position: relative;
  z-index: 1;
}

.weagro-btn-primary:hover {
  color: #fff;
  border-color: #06a8a8;
  transform: translateY(-2px);
  text-decoration: none;
}

.weagro-btn-icon {
  font-size: 11px;
  transition: transform 0.2s;
}

.weagro-btn-primary:hover .weagro-btn-icon {
  transform: translateX(4px);
}

/* Trust badge */
.weagro-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  border-left: 3px solid #06a8a8;
  background: #fff;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 4px 12px rgba(0, 77, 77, 0.08);
}

.weagro-trust-num {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #004d4d;
  line-height: 1;
}

.weagro-trust-label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes weagroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes weagroPulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.5;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .weagro-right-col {
    padding: 60px 32px 60px 48px !important;
  }
  .weagro-headline {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .weagro-left-col {
    width: 100% !important;
    min-height: 320px;
    padding: 48px 24px !important;
  }
  .weagro-identity-block {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 32px;
    padding: 40px 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .weagro-brand-mark {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .weagro-title-wrap {
    margin-bottom: 0;
  }
  .weagro-v-line {
    display: none;
  }
  .weagro-right-col {
    padding: 52px 24px !important;
  }
  .weagro-headline {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .weagro-identity-block {
    flex-direction: column;
    text-align: center;
  }
  .weagro-company-name {
    font-size: 34px;
  }
  .weagro-right-col {
    padding: 44px 20px !important;
  }
  .weagro-headline {
    font-size: 24px;
  }
  .weagro-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .weagro-btn-primary {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
  .weagro-pillars {
    margin-bottom: 28px;
  }
}

/* Our Main section */
/* ─── Section wrapper ─── */
.produce-section {
  position: relative;
  background: #f1f1f1;
  padding: 90px 0 100px;
  overflow: hidden;
}

/* ─── Decorative background shapes ─── */
.produce-bg-circle {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 168, 168, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.produce-bg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    #004d4d,
    #06a8a8,
    transparent
  );
  opacity: 0.3;
  z-index: 0;
}

/* ─── Section heading ─── */
.produce-heading {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.produce-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #004d4d;
  margin-bottom: 16px;
}

.produce-eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #06a8a8;
  flex-shrink: 0;
}

.produce-main-title {
  font-family: "Oswald", sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0 0 20px 0;
}

.produce-title-accent {
  color: #027a7a;
}

.produce-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.produce-title-divider::before,
.produce-title-divider::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #004d4d);
}

.produce-title-divider::after {
  background: linear-gradient(to left, transparent, #004d4d);
}

.produce-divider-leaf {
  font-size: 20px;
  line-height: 1;
}

/* ─── Content row ─── */
.produce-content-row {
  position: relative;
  z-index: 1;
  align-items: center;
}

/* ─────────────────────────────────────────────
   TEXT COLUMN
───────────────────────────────────────────── */
.produce-text-col {
  padding-right: 48px;
}

/* Latin name badge */
.produce-latin-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #dff0f0;
  border-left: 4px solid #06a8a8;
  padding: 12px 18px;
  margin-bottom: 22px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 77, 77, 0.07);
}

.produce-latin-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.produce-latin-label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #027a7a;
  line-height: 1.2;
}

.produce-latin-name {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: 22px;
  color: #004d4d;
  line-height: 1.3;
}

/* Tags */
.produce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.produce-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #e8f7f7;
  border: 1px solid #c2e8e8;
  border-radius: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: #004d4d;
  text-transform: uppercase;
}

.produce-tag-dot {
  width: 5px;
  height: 5px;
  background: #06a8a8;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Quote callout */
.produce-callout {
  position: relative;
  background: #004d4d;
  padding: 20px 24px 20px 36px;
  margin-bottom: 28px;
  border-radius: 2px;
}

.produce-callout-quote {
  position: absolute;
  top: -10px;
  left: 14px;
  font-size: 72px;
  line-height: 1;
  color: rgba(148, 223, 166, 0.25);
  font-family: Georgia, serif;
}

.produce-callout-text {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin: 0;
  font-style: italic;
}

/* Body text */
.produce-body {
  margin-bottom: 32px;
}

.produce-body p {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  margin-bottom: 14px;
}

.produce-body p:last-child {
  margin-bottom: 0;
}

/* Stats row */
.produce-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #e8f0f0;
  border-radius: 3px;
  padding: 20px 0;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 77, 77, 0.06);
}

.produce-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.produce-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #004d4d;
  line-height: 1;
  margin-bottom: 4px;
}

.produce-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

.produce-stat-divider {
  width: 1px;
  height: 36px;
  background: #e0eded;
  flex-shrink: 0;
}

/* CTA */
.produce-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.produce-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  height: 50px;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #004d4d;
  border-radius: 25px;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.produce-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #06a8a8;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
  border-radius: 25px;
}

.produce-btn-primary:hover::before {
  transform: translateX(0);
}

.produce-btn-primary span,
.produce-btn-icon {
  position: relative;
  z-index: 1;
}

.produce-btn-primary:hover {
  color: #fff;
  border-color: #06a8a8;
  transform: translateY(-2px);
  text-decoration: none;
}

.produce-btn-icon {
  font-size: 11px;
  transition: transform 0.2s;
}

.produce-btn-primary:hover .produce-btn-icon {
  transform: translateX(4px);
}

.produce-btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  color: #004d4d;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #004d4d;
  border-radius: 25px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s;
}

.produce-btn-secondary:hover {
  background: #004d4d;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ─────────────────────────────────────────────
   IMAGE COLUMN
───────────────────────────────────────────── */
.produce-img-col {
  position: relative;
}

.produce-img-frame {
  position: relative;
  padding: 20px 0 20px 20px;
}

/* Corner accent decorations */
.produce-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.produce-corner-tl {
  top: 0;
  left: 0;
  border-top: 3px solid #06a8a8;
  border-left: 3px solid #06a8a8;
}

.produce-corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #004d4d;
  border-right: 3px solid #004d4d;
}

/* Main image */
.produce-img-main-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 77, 77, 0.18);
}

.produce-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.produce-img-main-wrap:hover .produce-img-main {
  transform: scale(1.04);
}

.produce-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 40, 40, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Origin badge — overlays bottom-left of image */
.produce-origin-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(0, 77, 77, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  border-left: 3px solid #027a7a;
}

.produce-origin-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.produce-origin-label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #027a7a;
  line-height: 1.2;
}

.produce-origin-value {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* Floating sustainability card */
.produce-float-card {
  position: absolute;
  top: 40px;
  right: -20px;
  z-index: 4;
  background: #fff;
  border-radius: 3px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 77, 77, 0.15);
  border-top: 3px solid #06a8a8;
  max-width: 210px;
}

.produce-float-card-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.produce-float-card-title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.produce-float-card-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .produce-main-title {
    font-size: 52px;
  }
  .produce-text-col {
    padding-right: 32px;
  }
  .produce-img-main {
    height: 460px;
  }
}

@media (max-width: 991px) {
  .produce-section {
    padding: 70px 0 80px;
  }
  .produce-main-title {
    font-size: 44px;
  }
  .produce-text-col {
    padding-right: 15px;
    margin-bottom: 48px;
  }
  .produce-img-main {
    height: 380px;
  }
  .produce-float-card {
    right: 0;
    top: 24px;
  }
}

@media (max-width: 767px) {
  .produce-section {
    padding: 56px 0 64px;
  }
  .produce-main-title {
    font-size: 36px;
    letter-spacing: 2px;
  }
  .produce-heading {
    margin-bottom: 48px;
  }
  .produce-img-main {
    height: 300px;
  }
  .produce-float-card {
    display: none;
  }
  .produce-stats {
    padding: 16px 0;
  }
  .produce-stat-num {
    font-size: 22px;
  }
  .produce-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .produce-btn-primary,
  .produce-btn-secondary {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  .produce-img-frame {
    padding: 16px 0 16px 16px;
  }
}

/* ─── Director Message ─── */
.director-section {
  background: #fff;
  padding: 0 0 0 0px;
  overflow: hidden;
  position: relative;
}

.director-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #004d4d, #06a8a8);
  z-index: 2;
}

/* ─ Image column ─ */
.director-image-col {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
}

.director-image-col img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.director-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 77, 77, 0.15) 0%,
    transparent 60%
  );
  z-index: 1;
}

.director-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  background: #004d4d;
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 77, 77, 0.35);
  border-radius: 2px;
}

.director-badge-icon {
  width: 36px;
  height: 36px;
  background: #06a8a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.director-badge-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #027a7a;
  font-family: "Oswald", sans-serif;
  line-height: 1.3;
}

.director-badge-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
}

/* ─ Content column ─ */
.director-content-col {
  padding: 0 64px 72px 72px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.director-bg-watermark {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 240px;
  line-height: 1;
  color: rgba(0, 77, 77, 0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

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

.director-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 20px;
}

.director-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #06a8a8;
  flex-shrink: 0;
}

.director-title {
  font-size: 36px;
  font-weight: 800;
  color: #004d4d;
  line-height: 1.15;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.director-title-accent {
  display: block;
  color: #027a7a;
}

.director-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  margin: 22px 0 28px 0;
  border-radius: 2px;
}

.director-quote-wrap {
  position: relative;
  padding-left: 22px;
  border-left: 3px solid #e0f2f2;
  margin-bottom: 8px;
  margin-top:28px;
}

.director-open-quote {
  position: absolute;
  top: -16px;
  left: -12px;
  font-size: 56px;
  line-height: 1;
  color: #027a7a;
  font-family: Georgia, "Times New Roman", serif;
  opacity: 0.3;
}

.director-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.director-body p:last-child {
  margin-bottom: 0;
}

/* Signature block */
.director-signature-block {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid #eef7f7;
  display: flex;
  align-items: center;
  gap: 18px;
}

.director-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #004d4d, #06a8a8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 77, 77, 0.25);
}

.director-sig-name {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.director-sig-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  color: #004d4d;
  text-transform: uppercase;
  margin: 0;
}

/* ─ Responsive ─ */
@media (max-width: 1199px) {
  .director-content-col {
    padding: 60px 48px 60px 56px !important;
  }
  .director-title {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .director-image-col img {
    min-height: 420px;
  }
  .director-content-col {
    padding: 52px 40px !important;
  }
  .director-title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .director-content-col {
    padding: 44px 28px !important;
  }
  .director-title {
    font-size: 24px;
  }
  .director-bg-watermark {
    font-size: 160px;
  }
}

/* ─── CEO Message ─── */
.ceo-section {
  background: #004d4d;
  padding: 0 0 0 0;

  overflow: hidden;
  position: relative;
}

/* Subtle texture overlay */
.ceo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 168, 168, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(148, 223, 166, 0.08) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}

/* ─ Content column ─ */
.ceo-content-col {
  padding: 60px 64px 80px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 18px;
}

.ceo-eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #027a7a;
}

.ceo-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.ceo-title span {
  display: block;
  color: #027a7a;
}

.ceo-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #027a7a, #06a8a8);
  margin-bottom: 28px;
  margin-top: 20px;
  border-radius: 2px;
}

.ceo-quote-mark {
  font-size: 72px;
  line-height: 0.6;
  color: rgba(148, 223, 166, 0.2);
  font-family: Georgia, serif;
  margin-bottom: 2px;
  display: block;
}

.ceo-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  margin-right: 18px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.ceo-body p:last-child {
  margin-bottom: 0;
}

.ceo-stats-row {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.ceo-stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 32px;
}

.ceo-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.ceo-stat-number {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  margin-bottom: 4px;
}

.ceo-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ceo-signature-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}

.ceo-signature-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #06a8a8, #027a7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  color: #004d4d;
  font-weight: 700;
  flex-shrink: 0;
}

.ceo-signature-name {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
}

.ceo-signature-role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #027a7a;
  text-transform: uppercase;
  margin: 4px 0 0 0;
}

/* ─ Image column ─ */
.ceo-image-col {
  position: relative;
  padding: 0;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
}

.ceo-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  min-height: 600px;
  filter: grayscale(20%) contrast(1.05);
}

/* Green colour tint overlay */
.ceo-image-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 77, 77, 0.55) 0%,
    rgba(0, 77, 77, 0) 60%
  );
  z-index: 1;
}

/* Decorative corner frame */
.ceo-image-frame {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ceo-image-frame::before {
  content: "";
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid #027a7a;
  border-right: 3px solid #027a7a;
}

.ceo-image-frame::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 80px;
  height: 80px;
  border-top: 3px solid rgba(148, 223, 166, 0.35);
  border-left: 3px solid rgba(148, 223, 166, 0.35);
}

.ceo-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  background: rgba(148, 223, 166, 0.95);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.ceo-badge-icon {
  width: 34px;
  height: 34px;
  background: #06a8a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ceo-badge-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #004d4d;
  font-family: "Oswald", sans-serif;
  line-height: 1.2;
  opacity: 0.8;
}

.ceo-badge-name {
  font-size: 13px;
  font-weight: 700;
  color: #004d4d;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .ceo-content-col {
    padding: 50px 30px;
    order: 2;
  }
  .ceo-image-col {
    order: 1;
    min-height: 380px;
  }
  .ceo-image-col img {
    min-height: 380px;
  }
  .ceo-title {
    font-size: 28px;
  }
  .ceo-stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .ceo-stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    flex: none;
    width: 45%;
  }
}

@media (max-width: 767px) {
  .ceo-content-col {
    padding: 40px 24px;
  }
  .ceo-title {
    font-size: 26px;
  }
  .ceo-stat {
    width: 100%;
  }
}

/* ─── HR Director Message ─── */
.hr-section {
  background: #f8fffe;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hr-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(6, 168, 168, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(0, 77, 77, 0.04) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}

/* ─── Accent bar (right edge) ─── */
.hr-accent-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #06a8a8, #004d4d);
  z-index: 2;
}

/* ─── Remove container padding ─── */
.hr-fluid-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ─── Flex row — required for CSS order to work ─── */
.hr-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
}

/* ─── Content column — LEFT on desktop ─── */
.hr-content-col {
  order: 1;
  padding: 72px 72px 72px 80px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  z-index: 1;
}

/* ─── Image column — RIGHT on desktop ─── */
.hr-image-col {
  order: 2;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  z-index: 1;
}

/* ─── Watermark ─── */
.hr-bg-watermark {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 240px;
  line-height: 1;
  color: rgba(0, 77, 77, 0.035);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ─── Content inner wrapper ─── */
.hr-content-inner {
  position: relative;
  z-index: 1;
}

/* ─── Eyebrow label ─── */
.hr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 20px;
}

.hr-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #06a8a8;
  flex-shrink: 0;
}

/* ─── Title ─── */
.hr-title {
  font-size: 36px;
  font-weight: 800;
  color: #004d4d;
  line-height: 1.15;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.hr-title-accent {
  display: block;
  color: #027a7a;
}

/* ─── Divider ─── */
.hr-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #06a8a8, #004d4d);
  margin: 22px 0 28px 0;
  border-radius: 2px;
}

/* ─── Pill tags ─── */
.hr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  margin-top:28px;
}

.hr-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #e8f7f7;
  border: 1px solid #c2e8e8;
  border-radius: 20px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #004d4d;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hr-tag-dot {
  width: 6px;
  height: 6px;
  background: #06a8a8;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Quote block ─── */
.hr-quote-wrap {
  position: relative;
  padding-left: 22px;
  border-left: 3px solid #c2e8e8;
  margin-bottom: 8px;
}

.hr-open-quote {
  position: absolute;
  top: -16px;
  left: -12px;
  font-size: 56px;
  line-height: 1;
  color: #027a7a;
  font-family: Georgia, "Times New Roman", serif;
  opacity: 0.3;
}

.hr-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.hr-body p:last-child {
  margin-bottom: 0;
}

/* ─── Signature block ─── */
.hr-signature-block {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid #dff0f0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hr-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #06a8a8, #004d4d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(6, 168, 168, 0.3);
}

.hr-sig-name {
  font-family: "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.hr-sig-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  color: #004d4d;
  text-transform: uppercase;
  margin: 0;
}

/* ─── Image column styles ─── */
.hr-image-col img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hr-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    225deg,
    rgba(6, 168, 168, 0.12) 0%,
    transparent 55%
  );
  z-index: 1;
}

/* Corner frame decoration */
.hr-image-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hr-image-frame::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 70px;
  height: 70px;
  border-top: 3px solid rgba(148, 223, 166, 0.5);
  border-left: 3px solid rgba(148, 223, 166, 0.5);
}

.hr-image-frame::after {
  content: "";
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 70px;
  height: 70px;
  border-bottom: 3px solid #027a7a;
  border-right: 3px solid #027a7a;
}

/* ─── Floating badge ─── */
.hr-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  background: #004d4d;
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 77, 77, 0.35);
  border-radius: 2px;
}

.hr-badge-icon {
  width: 36px;
  height: 36px;
  background: #06a8a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.hr-badge-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #027a7a;
  font-family: "Oswald", sans-serif;
  line-height: 1.3;
}

.hr-badge-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
}

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

@media (max-width: 1199px) {
  .hr-content-col {
    padding: 60px 56px 60px 60px !important;
  }
  .hr-title {
    font-size: 30px;
  }
}

/* Tablet & Mobile: image on TOP, content BELOW */
@media (max-width: 991px) {
  .hr-image-col {
    order: 1 !important;
    width: 100% !important;
    float: none;
    min-height: 420px;
  }
  .hr-image-col img {
    min-height: 420px;
    max-height: 480px;
  }
  .hr-content-col {
    order: 2 !important;
    width: 100% !important;
    float: none;
    padding: 52px 40px !important;
  }
  .hr-title {
    font-size: 26px;
  }
  .hr-badge {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .hr-image-col {
    min-height: 320px;
  }
  .hr-image-col img {
    min-height: 320px;
    max-height: 400px;
  }
  .hr-content-col {
    padding: 44px 24px !important;
  }
  .hr-title {
    font-size: 24px;
  }
  .hr-bg-watermark {
    font-size: 160px;
  }
  .hr-badge {
    bottom: 16px;
    right: 16px;
    padding: 10px 14px;
  }
  .hr-badge-name {
    font-size: 12px;
  }
}
/* ══════════════════════════════════
           TEAM SECTION – SHARED
        ══════════════════════════════════ */
.team-section-wrap {
  padding: 0;
  background: #f1f1f1;
}

/* ── GM Section ── */
.gm-section {
  padding: 60px 0 90px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.gm-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #004d4d, #06a8a8, #027a7a);
}

.gm-section::after {
  content: "GM";
  position: absolute;
  bottom: 0px;
  right: 40px;
  font-size: 160px;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  color: rgba(0, 77, 77, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Team Section ── */
.staff-section {
  padding: 60px 0 80px;
  background: #004d4d;
  position: relative;
  overflow: hidden;
}

.staff-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #027a7a, #06a8a8, #004d4d);
}

.staff-section::after {
  content: "TEAM";
  position: absolute;
  bottom: 0px;
  right: 20px;
  font-size: 140px;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Section heading ── */
.team-heading-wrap {
  margin-bottom: 60px;
}

.team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #027a7a;
  margin-bottom: 14px;
}

.team-eyebrow::before,
.team-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #06a8a8;
}

.team-eyebrow.light {
  color: #027a7a;
}

.team-eyebrow.light::before,
.team-eyebrow.light::after {
  background: #027a7a;
}

.team-main-title {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #004d4d;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 12px 0;
}

.team-main-title.light {
  color: #fff;
}

.team-main-title span {
  color: #027a7a;
}

.team-main-title.light span {
  color: #027a7a;
}

.team-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888;
  line-height: 1.7;
  max-width: 480px;
  margin: 20px 0 0 0;
}

.team-subtitle.light {
  color: rgba(255, 255, 255, 0.55);
}

.team-title-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
  margin: 16px 0 20px 0;
}

.team-title-divider.light {
  background: linear-gradient(to right, #027a7a, #06a8a8);
}

/* ── GM Card ── */
.gm-card-wrap {
  margin-bottom: 30px;
}

.gm-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef7f7;
  border-radius: 3px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.gm-card:hover {
  box-shadow: 0 16px 48px rgba(0, 77, 77, 0.14);
  transform: translateY(-4px);
}

.gm-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.gm-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.gm-card:hover .gm-card-img-wrap img {
  transform: scale(1.06);
}

/* Overlay on hover */
.gm-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 77, 77, 0.88);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.gm-card:hover .gm-card-overlay {
  opacity: 1;
}

.gm-card-socials {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gm-card-socials li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition:
    background 0.2s,
    border-color 0.2s;
  text-decoration: none;
}

.gm-card-socials li a:hover {
  background: #06a8a8;
  border-color: #06a8a8;
  color: #fff;
}

.gm-overlay-role {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #027a7a;
}

/* GM card info bar */
.gm-card-info {
  padding: 20px 22px 22px;
  height: 110px;
  background: #fff;
  position: relative;
}

.gm-card-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(to right, #004d4d, #06a8a8);
  border-radius: 2px;
}

.gm-card-name {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #004d4d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.gm-card-role {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #004d4d;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 400;
}

/* GM number badge */
.gm-card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #004d4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  z-index: 2;
}

/* ── Staff Card ── */
.staff-card-wrap {
  margin-bottom: 30px;
}

.staff-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s;
}

.staff-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
  border-color: rgba(148, 223, 166, 0.3);
}

.staff-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.staff-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(20%);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}

.staff-card:hover .staff-card-img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* Overlay */
.staff-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 77, 77, 0.85);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff-card:hover .staff-card-overlay {
  opacity: 1;
}

.staff-card-socials {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-card-socials li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(148, 223, 166, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #027a7a;
  font-size: 13px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  text-decoration: none;
}

.staff-card-socials li a:hover {
  background: #027a7a;
  border-color: #027a7a;
  color: #004d4d;
}

/* Staff card info bar */
.staff-card-info {
  padding: 18px 20px 20px;
  background: rgba(0, 0, 0, 0.15);
  position: relative;
}

.staff-card-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(148, 223, 166, 0.25);
}

.staff-card-name {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.staff-card-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

/* Count badge on staff cards */
.staff-count-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(0, 77, 77, 0.85);
  border: 1px solid rgba(148, 223, 166, 0.35);
  border-radius: 2px;
  padding: 3px 9px;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .gm-section,
  .staff-section {
    padding: 70px 0 60px;
  }
  .team-main-title {
    font-size: 30px;
  }
  .gm-card-img-wrap {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .gm-section,
  .staff-section {
    padding: 56px 0 48px;
  }
  .team-main-title {
    font-size: 26px;
  }
  .gm-card-img-wrap {
    height: 320px;
  }
  .staff-card-img-wrap {
    height: 320px;
  }
}

.mdi {
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.inter-font {
  font-family: "Inter", sans-serif;
}
.great-font {
  font-family: "Great Vibes", cursive;
}
.oswald-font {
  font-family: "Oswald", sans-serif;
}
.roboto-font {
  font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2d2d2d;
  margin: 10px 0;
  font-style: normal;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #fff;
}
p a:hover {
  color: #1a237e;
}
p {
  letter-spacing: normal;
  line-height: 24px;
  color: #888;
  font-weight: 300;
}
a {
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  outline: none;
  text-decoration: none;
}
ul {
  list-style: disc;
}
li > ul,
li > ol {
  padding: 0;
  margin-left: 15px;
}
figure {
  margin-bottom: 6px;
  position: relative;
}
img {
  height: auto;
  max-width: 100%;
}
.mark,
mark {
  background-color: #667eea;
  color: #fff;
}

pre {
  margin: 0 20px;
  padding: 10px;
  border: 1px solid #e2e2e2;
  background: #f1f1f1;
  border-radius: 0;
}

blockquote {
  border-left: 5px solid #667eea;
  background: #fff;
}

.blockquote-reverse,
blockquote.pull-right {
  border-right: 5px solid #667eea;
  background: #fff;
}

.outline-alert {
  background-color: transparent !important;
}

strong {
  color: #414141;
}
hr {
  border-top: 1px solid #eaeaea;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: none;
  box-shadow: none;
  outline: 0 none;
}

section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 10;
  background: #f1f1f1;
}

.section-heading {
  text-align: center;
  margin: auto;
  float: none;
  padding-bottom: 20px;
}

.section-heading h1 {
  font-weight: 700;
}

.section-heading p {
  font-size: 18px;
  line-height: 27px;
}

/*=============================================
              		Header
=============================================*/

/* =============================================
   Site Header
   Add this entire block to your master CSS file
============================================= */

/* ─────────────────────────────────────────────
   BASE HEADER
───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

/* Transparent — at top of page */
.site-header-top {
  background: transparent;
  padding: 10px 0;
  box-shadow: none;
}

/* Solid — after scrolling */
.site-header-scrolled {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

/* ─── Inner flex layout ─── */
.site-header-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

/* ─────────────────────────────────────────────
   LOGO
───────────────────────────────────────────── */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 45px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.site-logo:hover .site-logo-img {
  opacity: 0.85;
}

/* ─────────────────────────────────────────────
   DESKTOP NAV
───────────────────────────────────────────── */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-item {
  position: relative;
}

.site-nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 10px;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

/* White links when transparent */
.site-header-top .site-nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.site-header-top .site-nav-link:hover {
  color: #94dfa6;
  text-decoration: none;
}

/* Dark links when scrolled */
.site-header-scrolled .site-nav-link {
  color: #333;
}

.site-header-scrolled .site-nav-link:hover {
  color: #004d4d;
  text-decoration: none;
}

/* Active state */
.site-header-top .site-nav-link-active {
  color: #94dfa6 !important;
}

.site-header-scrolled .site-nav-link-active {
  color: #004d4d !important;
}

/* Animated underline */
.site-nav-underline {
  display: block;
  height: 2px;
  width: 0;
  background: #06a8a8;
  border-radius: 1px;
  margin-top: 3px;
  transition: width 0.3s ease;
  align-self: stretch;
}

.site-nav-link:hover .site-nav-underline,
.site-nav-link-active .site-nav-underline {
  width: 100%;
}

/* ─────────────────────────────────────────────
   CTA BUTTON (desktop)
───────────────────────────────────────────── */
.site-header-cta {
  flex-shrink: 0;
}

.site-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 40px;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 20px;
  border: 2px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.15s;
  white-space: nowrap;
}

/* On transparent header — outline style */
.site-header-top .site-header-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.site-header-top .site-header-btn:hover {
  background: #004d4d;
  border-color: #004d4d;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* On scrolled header — solid */
.site-header-scrolled .site-header-btn {
  background: #004d4d;
  border-color: #004d4d;
  color: #fff;
}

.site-header-scrolled .site-header-btn:hover {
  background: #06a8a8;
  border-color: #06a8a8;
  transform: translateY(-1px);
  text-decoration: none;
}

.site-header-btn-icon {
  font-size: 11px;
  color: #94dfa6;
}

/* ─────────────────────────────────────────────
   HAMBURGER (mobile only)
───────────────────────────────────────────── */
.site-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.site-hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}

.site-header-top .site-hamburger-bar {
  background: #fff;
}

.site-header-scrolled .site-hamburger-bar {
  background: #004d4d;
}

/* Animate to X when open */
.site-hamburger-open .site-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-hamburger-open .site-hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site-hamburger-open .site-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────
   MOBILE BACKDROP
───────────────────────────────────────────── */
.site-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.site-mobile-backdrop-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─────────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────────── */
.site-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #004d4d;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
}

.site-mobile-menu-open {
  transform: translateX(0);
}

/* Drawer header */
.site-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.site-mobile-logo {
  display: flex;
  align-items: center;
}

.site-mobile-logo-img {
  height: 30px;
  width: auto;
}

.site-mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.site-mobile-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Nav list */
.site-mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.site-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-mobile-nav-item {
  opacity: 0;
  transform: translateX(20px);
}

.site-mobile-menu-open .site-mobile-nav-item {
  animation: mobileNavSlide 0.4s ease forwards;
}

.site-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    padding-left 0.2s;
}

.site-mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-left-color: #06a8a8;
  padding-left: 28px;
  text-decoration: none;
}

.site-mobile-nav-active {
  background: rgba(148, 223, 166, 0.1) !important;
  color: #94dfa6 !important;
  border-left-color: #94dfa6 !important;
}

.site-mobile-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: background 0.2s;
}

.site-mobile-nav-link:hover .site-mobile-nav-dot,
.site-mobile-nav-active .site-mobile-nav-dot {
  background: #94dfa6;
}

.site-mobile-nav-arrow {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-left: auto;
  transition:
    color 0.2s,
    transform 0.2s;
}

.site-mobile-nav-link:hover .site-mobile-nav-arrow {
  color: #94dfa6;
  transform: translateX(3px);
}

/* Drawer footer */
.site-mobile-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.site-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  background: #94dfa6;
  color: #004d4d;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 24px;
  transition:
    background 0.25s,
    transform 0.15s;
}

.site-mobile-cta:hover {
  background: #b4f1c1;
  transform: translateY(-1px);
  text-decoration: none;
  color: #004d4d;
}

/* ─────────────────────────────────────────────
   ANIMATION
───────────────────────────────────────────── */
@keyframes mobileNavSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────────── */

/* Show hamburger, hide desktop nav on tablet & mobile */
@media (max-width: 991px) {
  .site-nav,
  .site-header-cta {
    display: none;
  }
  .site-hamburger {
    display: flex;
  }
  .site-header-inner {
    height: 64px;
  }
}

/* ── Desktop only ── */
@media (min-width: 992px) {
  .site-hamburger {
    display: none !important;
  }
  .site-mobile-menu,
  .site-mobile-backdrop {
    display: none !important;
  }
}

/* Tighter nav links on smaller desktop */
@media (max-width: 1199px) and (min-width: 992px) {
  .site-nav-link {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .site-header-btn {
    padding: 0 16px;
    font-size: 10px;
  }
  .site-header-inner {
    gap: 20px;
  }
}
/*=============================================
			Sliders and Hero Section
=============================================*/
.hero-text {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 100%;
  z-index: 10;
  color: #fff;
}
.hero-text h3,
.hero-text h1 {
  color: #667eea;
}
.hero-text h3 {
  font-size: 30px;
}
.hero-text h1 {
  font-size: 100px;
}

.hero-text h2 {
  font-size: 65px;
}

.dark-bg {
  background-color: #004d4d;
}
.agro-bg {
  background-color: #06a8a8;
}
.white-bg {
  background-color: #fff;
}
.blue-bg {
  background-color: #004d4d;
}
.red-bg {
  background: #d9534f;
}
.grey-bg {
  background: #e9e9e9;
}
.yellow-bg {
  background: #fdc23e;
}
.parallax-bg {
  background: url(../images/background/parallax-bg.jpg) center 0 no-repeat;
  background-size: cover;
  height: 800px;
}

.fixed-bg {
  background-attachment: fixed !important;
}

.overlay-bg {
  background-image: linear-gradient(to bottom, #8bcc9f99, #88111199, #b4f1c1);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.hero-text-wrap.overlay-bg {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 101vh;
  position: absolute;
  z-index: 1;
}

.hero-text-wrap.blue-overlay-bg {
  background: rgba(30, 192, 255, 0.82);
  width: 100%;
  height: 101vh;
  position: absolute;
  z-index: 1;
}

.overlay-bg-dark {
  background: rgba(0, 0, 0, 0.92);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.overlay-bg-light {
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

/* ══════════════════════════════════
   HERO SECTION — VIDEO BACKGROUND
   ══════════════════════════════════ */
/* Award row — sits just above the info bar */
.hero-awards-row {
  position: absolute;
  bottom: -10px;
  right: -90px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  z-index: 4;
}

.hero-award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  object-fit: contain;
}

.hero-award-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-award-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 2px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100px;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s;
}

.hero-award-badge:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-award-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.hero-award-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* Thin connector line linking badge to info bar */
.hero-award-connector {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-breakout {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   SECTION
───────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #011a1a;
}

/* ─────────────────────────────────────────────
   VIDEO — fills 100% of section, crops to fit
───────────────────────────────────────────── */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  display: block;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   OVERLAYS
───────────────────────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(0, 20, 20, 0.88) 0%,
    rgba(0, 40, 40, 0.7) 50%,
    rgba(0, 20, 20, 0.4) 100%
  );
  opacity: 0.7;
}

.hero-stripe {
  position: absolute;
  top: 0;
  left: -10%;
  width: 42%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 77, 77, 0.45) 0%,
    transparent 100%
  );
  transform: skewX(-8deg);
  transform-origin: top left;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ─────────────────────────────────────────────
   CONTENT
───────────────────────────────────────────── */
.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 140px;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(148, 223, 166, 0.7);
  animation: heroPulse 2.5s ease-in-out infinite;
}

.hero-eyebrow-text {
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.hero-eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(148, 223, 166, 0.4);
  flex-shrink: 0;
}

/* ── Title ── */
.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 28px 0;
  line-height: 1;
}

.hero-title-line1,
.hero-title-line2,
.hero-title-line3 {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title-line1 {
  font-size: 80px;
  color: #fff;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.25s;
}

.hero-title-line2 {
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.4s;
  margin-left: 60px;
}

.hero-title-line3 {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.5);
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.55s;
}

/* ── Subtitle ── */
.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 480px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.65s;
}

/* ── CTA buttons ── */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.75s;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  height: 54px;
  background: #004d4d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #004d4d;
  border-radius: 2px;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.hero-btn-primary:hover::before {
  transform: translateX(0);
}

.hero-btn-primary span,
.hero-btn-primary .hero-btn-icon {
  position: relative;
  z-index: 1;
}

.hero-btn-primary:hover {
  color: #004d4d;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-btn-icon {
  font-size: 12px;
  transition: transform 0.2s;
}

.hero-btn-primary:hover .hero-btn-icon {
  transform: translateX(4px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 36px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  transition:
    border-color 0.25s,
    color 0.25s,
    transform 0.2s;
}

.hero-btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 160px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 1s;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(148, 223, 166, 0.6));
  animation: heroScrollLine 1.8s ease-in-out infinite;
}

.hero-scroll-label {
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(148, 223, 166, 0.6);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── Info bar ── */
.hero-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 77, 77, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(148, 223, 166, 0.15);
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.9s;
}

.hero-info-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.hero-info-number {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-info-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-info-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPulse {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(148, 223, 166, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 16px rgba(148, 223, 166, 0.9);
    transform: scale(1.2);
  }
}

@keyframes heroScrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1199px) {
  .hero-title-line1,
  .hero-title-line2,
  .hero-title-line3 {
    font-size: 74px;
  }
  .hero-title-line2 {
    margin-left: 40px;
  }
  .hero-info-item {
    padding: 0 32px;
  }
}

@media (max-width: 991px) {
  .hero-title-line1,
  .hero-title-line2,
  .hero-title-line3 {
    font-size: 58px;
  }
  .hero-title-line2 {
    margin-left: 28px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .hero-info-item {
    padding: 0 20px;
  }
  .hero-info-number {
    font-size: 24px;
  }

  /* Move awards below subtitle on tablet */
  .hero-awards-row {
    position: relative;
    bottom: 8px;
    right: auto;
    justify-content: left;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 130svh;
  }
  .hero-container {
    padding-top: 50px;
    padding-bottom: 160px;
  }

  .hero-title-line1,
  .hero-title-line2,
  .hero-title-line3 {
    font-size: 52px;
    letter-spacing: 1px;
  }

  .hero-title-line2 {
    margin-left: 16px;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-br {
    display: none;
  }

  .hero-cta-wrap {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    justify-content: center;
  }

  .hero-info-inner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 16px;
  }
  .hero-info-item {
    flex: 1 1 40%;
    padding: 8px 12px;
  }
  .hero-info-divider {
    display: none;
  }
  .hero-info-number {
    font-size: 22px;
  }
  .hero-stripe {
    width: 100%;
    opacity: 0.3;
  }

  /* Awards below subtitle on mobile */
  .hero-awards-row {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: left;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 12px;
  }

  .hero-award-badge {
    width: 80px;
    padding: 8px 10px;
  }

  .hero-award-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-title-line1,
  .hero-title-line2,
  .hero-title-line3 {
    font-size: 64px;
  }
  .hero-eyebrow {
    margin-top: 15px;
  }
  .hero-eyebrow-text {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/* Welcome popup */
/* WelcomePopup.css */

/* WelcomePopup.css - transparent image + minimal design */

/* ─── Backdrop ─── */
.modal-backdrop.show {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.72);
  z-index: 1040;
  animation: fadeIn 0.25s ease-out;
}

/* ─── Popup wrapper ─── */
.welcome-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;

  /* let image decide the size */
  width: auto;
  max-width: 92vw;
  max-height: 90vh;

  background: transparent;
  border: none;
  box-shadow: none;

  /* keep close-btn visible even if outside */
  overflow: visible;

  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Close button ─── */
.close-btn {
  position: absolute;
  /* DEFAULT: sits inside the top-right of the image area */
  top: 8px;
  right: 8px;
  z-index: 10;

  width: 36px;
  height: 36px;
  padding: 0;

  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;

  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  color: #fff;

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

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition:
    background 0.2s,
    transform 0.2s;
}

.close-btn:hover,
.close-btn:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.12);
  outline: none;
}

/* ─── Image wrapper ─── */
.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ─── Image ─── */
.welcome-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

/* ═══════════════════════════════════════
   RESPONSIVE  –  mobile first approach
   ═══════════════════════════════════════ */

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .welcome-popup {
    max-width: 96vw;
  }

  .welcome-image {
    max-width: 94vw;
    max-height: 70vh;
    border-radius: 8px;
  }

  .close-btn {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    border-width: 1.5px;
  }
}

/* ── Regular phones (481px – 600px) ── */
@media (min-width: 481px) and (max-width: 600px) {
  .welcome-popup {
    max-width: 94vw;
  }

  .welcome-image {
    max-width: 90vw;
    max-height: 72vh;
    border-radius: 10px;
  }

  .close-btn {
    top: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

/* ── Tablets (601px – 1024px) ── */
@media (min-width: 601px) and (max-width: 1024px) {
  .welcome-popup {
    max-width: 80vw;
  }

  .welcome-image {
    max-width: 76vw;
    max-height: 75vh;
    border-radius: 12px;
  }

  .close-btn {
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ── Desktops (≥ 1025px) ── */
@media (min-width: 1025px) {
  .welcome-popup {
    max-width: 70vw;
  }

  .welcome-image {
    max-width: 65vw;
    max-height: 80vh;
    border-radius: 14px;
  }

  .close-btn {
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/* ── Landscape phones ── */
@media (max-height: 500px) and (orientation: landscape) {
  .welcome-image {
    max-height: 80vh;
    max-width: 60vw;
  }

  .close-btn {
    top: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* ─── Animations ─── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.parallax-bg-2 {
  background: url(../images/background/parallax-bg-3.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-3 {
  background: url(../images/background/parallax-bg-3.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-4 {
  background: url(../images/background/parallax-bg-4.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-6 {
  background: url(../images/background/parallax-bg-6.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-7 {
  background: url(../images/background/parallax-bg-7.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-9 {
  background: url(../images/paralax/paralax4.webp) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-10 {
  background: url(../images/background/parallax-bg-10.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-12 {
  background: url(../images/background/parallax-bg-12.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-13 {
  background: url(../images/background/parallax-bg-14.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-14 {
  background: url(../images/background/parallax-bg-15.jpg) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-15 {
  background: url(../images/background/parallax-bg-16.png) center 0 no-repeat;
  background-size: cover;
}

.parallax-bg-16 {
  background: url(../assets/images/parallax-bg-16.png) center 0 no-repeat;
  background-size: cover;
}

.box-shadow {
  box-shadow: 0 10px 30px 5px rgba(17, 21, 23, 0.1);
}

.box-shadow-hover {
}
.box-shadow-hover:hover {
  box-shadow: 0 5px 10px 5px rgba(3, 3, 3, 0.1);
}
.member-socialicons {
  overflow: hidden;
  list-style: none;
  text-align: center;
  line-height: 20px;
}
.member-socialicons li {
  float: left;
  padding: 0 10px;
  line-height: inherit;
  list-style-type: none;
}
.member-socialicons li a {
  color: #fff;
  display: block;
}
.member-socialicons li a:hover {
  color: #ff4552;
}
.member-socialicons li a i {
  display: block;
  font-size: 13px;
  text-align: center;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-bottom-padding {
  padding-bottom: 0;
}
.no-gutters > [class^="col-"],
.no-gutters > [class*="col-"],
.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.no-top-padding {
  padding-top: 0;
}

/*=============================================
                Widgets
=============================================*/

::-webkit-input-placeholder {
  color: #1b1d1c;
}
::-moz-placeholder {
  color: #1b1d1c;
}
:-ms-input-placeholder {
  color: #1b1d1c;
}
:-moz-placeholder {
  color: #1b1d1c;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.upper-case {
  text-transform: uppercase;
}
.lower-case {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.font-100 {
  font-weight: 100;
}
.font-200 {
  font-weight: 200;
}
.font-300 {
  font-weight: 300;
}
.font-400 {
  font-weight: 400;
}
.font-500 {
  font-weight: 500;
}
.font-600 {
  font-weight: 600;
}
.font-700 {
  font-weight: 700;
}
.font-900 {
  font-weight: 900;
}
.font-12px {
  font-size: 12px !important;
}
.font-14px {
  font-size: 14px !important;
}
.font-16px {
  font-size: 16px !important;
}
.font-18px {
  font-size: 18px !important;
}
.font-20px {
  font-size: 20px !important;
}
.font-26px {
  font-size: 26px !important;
}
.font-30px {
  font-size: 30px !important;
}
.font-35px {
  font-size: 35px !important;
}
.font-40px {
  font-size: 40px !important;
}
.font-50px {
  font-size: 50px !important;
}
.font-60px {
  font-size: 60px !important;
}
.font-70px {
  font-size: 70px !important;
}
.font-80px {
  font-size: 80px !important;
}
.font-100px {
  font-size: 100px !important;
}
.font-120px {
  font-size: 120px !important;
}
.font-130px {
  font-size: 130px !important;
}
.font-140px {
  font-size: 140px !important;
}
.font-150px {
  font-size: 150px !important;
}

.font-italic {
  font-style: italic;
}
.font-light {
  font-weight: 400;
}
.font-bold {
  font-weight: bold;
}
a:hover,
a:focus {
  color: #1a237e;
}
.blue-color {
  color: #667eea !important;
}
.dark-green-color {
  color: #004d4d !important;
}
.secondary-color {
  color: #1a237e;
}
.white-color {
  color: #fff !important;
}
.white-color p,
.white-color h1,
.white-color h2,
.white-color h3,
.white-color h4,
.white-color h5,
.white-color h6 {
  color: #fff !important;
}
.dark-color {
  color: #2d2d2d !important;
}
.dark-color p,
.dark-color h1,
.dark-color h2,
.dark-color h3,
.dark-color h4,
.dark-color h5,
.dark-color h6 {
  color: #2d2d2d !important;
}

.green {
  color: #5cb85c !important;
}

.red-color {
  color: #d9534f !important;
}

.yellow-color {
  color: #fdc23e !important;
}

.grey {
  color: #888 !important;
}

.brown-color {
  color: #d09e88 !important;
}

.line-height-24 {
  line-height: 24px !important;
}
.line-height-22 {
  line-height: 22px !important;
}
.line-height-26 {
  line-height: 26px !important;
}
.line-height-30 {
  line-height: 30px !important;
}
.line-height-35 {
  line-height: 35px !important;
}
.line-height-40 {
  line-height: 40px !important;
}
.line-height-45 {
  line-height: 45px !important;
}
.line-height-50 {
  line-height: 50px !important;
}
.letter-spacing-0 {
  letter-spacing: 0px;
}
.letter-spacing-5 {
  letter-spacing: 5px;
}
.letter-spacing-10 {
  letter-spacing: 10px;
}
.letter-spacing-15 {
  letter-spacing: 15px;
}
.letter-spacing-20 {
  letter-spacing: 20px;
}
.letter-spacing-25 {
  letter-spacing: 25px;
}
.mt-minus-10 {
  margin-top: -10px;
}
.mt-minus-20 {
  margin-top: -20px;
}
.mt-minus-30 {
  margin-top: -30px;
}
.mt-minus-40 {
  margin-top: -40px;
}
.mt-minus-50 {
  margin-top: -50px;
}
.mt-0 {
  margin-top: 0px !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-90 {
  margin-top: 90px;
}
.mt-100 {
  margin-top: 100px !important;
}
.mt-110 {
  margin-top: 110px;
}
.mt-120 {
  margin-top: 120px;
}
.mt-130 {
  margin-top: 130px;
}
.mt-135 {
  margin-top: 135px;
}
.mt-140 {
  margin-top: 140px;
}
.mt-150 {
  margin-top: 150px !important;
}
.ml-10 {
  margin-left: 10px;
}
.ml-15 {
  margin-left: 15px;
}
.ml-20 {
  margin-left: 20px;
}
.ml-30 {
  margin-left: 30px;
}
.ml-40 {
  margin-left: 40px;
}
.ml-50 {
  margin-left: 50px;
}
.ml-60 {
  margin-left: 60px;
}
.ml-70 {
  margin-left: 70px;
}
.ml-80 {
  margin-left: 80px;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-110 {
  margin-bottom: 110px;
}
.mb-120 {
  margin-bottom: 120px;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}
.pt-70 {
  padding-top: 70px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-90 {
  padding-top: 90px;
}
.pt-100 {
  padding-top: 100px;
}
.pt-110 {
  padding-top: 110px;
}
.pt-120 {
  padding-top: 120px;
}
.pt-130 {
  padding-top: 130px;
}
.pt-140 {
  padding-top: 140px;
}
.pt-150 {
  padding-top: 150px;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb-60 {
  padding-bottom: 60px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-90 {
  padding-bottom: 90px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-110 {
  padding-bottom: 110px;
}
.pb-120 {
  padding-bottom: 120px;
}
.pb-140 {
  padding-bottom: 140px;
}
.pl-0 {
  padding-left: 0;
}
.pl-10 {
  padding-left: 10px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-30 {
  padding-left: 30px;
}
.pl-40 {
  padding-left: 40px;
}
.pl-50 {
  padding-left: 50px;
}
.pl-60 {
  padding-left: 60px;
}
.pl-70 {
  padding-left: 70px;
}
.pl-80 {
  padding-left: 80px !important;
}
.pl-90 {
  padding-left: 90px;
}
.pl-100 {
  padding-left: 100px;
}
.pl-110 {
  padding-left: 110px;
}
.pl-120 {
  padding-left: 120px;
}
.pr-0 {
  padding-right: 0;
}
.pr-10 {
  padding-right: 10px;
}
.pr-20 {
  padding-right: 20px;
}
.pr-30 {
  padding-right: 30px;
}
.pr-40 {
  padding-right: 40px;
}
.pr-50 {
  padding-right: 50px;
}
.pr-60 {
  padding-right: 60px;
}
.pr-70 {
  padding-right: 70px;
}
.pr-80 {
  padding-right: 80px !important;
}
.pr-90 {
  padding-right: 90px;
}
.pr-100 {
  padding-right: 100px;
}
.pr-110 {
  padding-right: 110px;
}
.pr-120 {
  padding-right: 120px;
}

/* Positions */

.fixed {
  position: fixed !important;
}
.relative {
  position: relative !important;
}
.absolute {
  position: absolute !important;
}
.static {
  position: static !important;
}

/* Z-index */

.z-index-1 {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-3 {
  z-index: 3;
}
.z-index-4 {
  z-index: 4;
}
.z-index-5 {
  z-index: 5;
}
.z-index-0 {
  z-index: 0;
}
.z-index-minus2 {
  z-index: -2;
}

/* Displays */
.display-none {
  display: none !important;
}
.display-block {
  display: block !important;
}
.display-inline-block {
  display: inline-block !important;
}
.display-table {
  display: table;
}
.display-table-cell {
  display: table-cell !important;
}
.float-none {
  float: none;
}
.centerize-col {
  float: none !important;
  margin-left: auto;
  margin-right: auto;
}
.center-layout {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  position: relative;
}
.v-align-middle {
  display: table-cell;
  vertical-align: middle;
}

/* Width Pixels */

.width-1px {
  width: 1px;
}
.width-2px {
  width: 2px;
}
.width-3px {
  width: 3px;
}
.width-4px {
  width: 4px;
}
.width-5px {
  width: 5px;
}
.width-6px {
  width: 6px;
}
.width-7px {
  width: 7px;
}
.width-8px {
  width: 8px;
}
.width-9px {
  width: 9px;
}
.width-10px {
  width: 10px;
}
.width-80px {
  width: 80px;
}
.width-90px {
  width: 90px;
}
.width-100px {
  width: 100px;
}
.width-150px {
  width: 150px;
}
.width-200px {
  width: 200px;
}
.width-250px {
  width: 250px;
}
.width-300px {
  width: 300px;
}
.width-350px {
  width: 350px;
}
.width-400px {
  width: 400px;
}
.width-450px {
  width: 450px;
}
.width-500px {
  width: 500px !important;
}
.width-550px {
  width: 550px;
}
.width-600px {
  width: 600px;
}
.width-650px {
  width: 650px !important;
}
.width-700px {
  width: 700px;
}
.width-800px {
  width: 800px;
}

/* Width Percentage */

.width-10-percent {
  width: 10% !important;
}
.width-20-percent {
  width: 20% !important;
}
.width-30-percent {
  width: 30% !important;
}
.width-40-percent {
  width: 40% !important;
}
.width-50-percent {
  width: 50% !important;
}
.width-60-percent {
  width: 60% !important;
}
.width-70-percent {
  width: 70% !important;
}
.width-80-percent {
  width: 80% !important;
}
.width-90-percent {
  width: 90% !important;
}
.width-100-percent {
  width: 100% !important;
}
.width-auto {
  width: auto !important;
}
.max-width-100 {
  max-width: 100%;
}

/* Minimum Width */

.min-width-100px {
  min-height: 100px;
}
.min-width-200px {
  min-height: 200px;
}
.min-width-300px {
  min-height: 300px;
}
.min-width-400px {
  min-height: 400px;
}
.min-width-500px {
  min-height: 500px;
}
.min-width-600px {
  min-height: 600px;
}
.min-width-700px {
  min-height: 700px;
}

/* View Width */

.view-width-100vh {
  width: 100vh;
}

/* Height Pixels */

.height-1px {
  height: 1px !important;
}
.height-2px {
  height: 2px !important;
}
.height-3px {
  height: 3px !important;
}
.height-4px {
  height: 4px !important;
}
.height-5px {
  height: 5px !important;
}
.height-6px {
  height: 6px !important;
}
.height-7px {
  height: 7px !important;
}
.height-8px {
  height: 8px !important;
}
.height-9px {
  height: 9px !important;
}
.height-10px {
  height: 10px !important;
}
.height-80px {
  height: 80px !important;
}
.height-90px {
  height: 90px !important;
}
.height-100px {
  height: 100px !important;
}
.height-150px {
  height: 150px !important;
}
.height-200px {
  height: 200px !important;
}
.height-250px {
  height: 250px !important;
}
.height-300px {
  height: 300px !important;
}
.height-350px {
  height: 350px !important;
}
.height-400px {
  height: 400px !important;
}
.height-450px {
  height: 450px !important;
}
.height-500px {
  height: 500px !important;
}
.height-550px {
  height: 550px !important;
}
.height-600px {
  height: 600px !important;
}
.height-650px {
  height: 650px !important;
}
.height-700px {
  height: 700px !important;
}
.height-800px {
  height: 800px !important;
}

/* Height Percentage */

.height-10-percent {
  height: 10%;
}
.height-20-percent {
  height: 20%;
}
.height-30-percent {
  height: 30%;
}
.height-40-percent {
  height: 40%;
}
.height-50-percent {
  height: 50%;
}
.height-60-percent {
  height: 60%;
}
.height-70-percent {
  height: 70%;
}
.height-80-percent {
  height: 80%;
}
.height-90-percent {
  height: 90%;
}
.height-100-percent {
  height: 100% !important;
}
.height-auto {
  height: auto !important;
}
.max-height-100 {
  max-height: 100%;
}

/* Minimum Heights */

.min-height-100px {
  min-height: 100px;
}
.min-height-200px {
  min-height: 200px;
}
.min-height-300px {
  min-height: 300px !important;
}
.min-height-350px {
  min-height: 350px !important;
}
.min-height-400px {
  min-height: 400px;
}
.min-height-500px {
  min-height: 500px;
}
.min-height-600px {
  min-height: 600px;
}
.min-height-700px {
  min-height: 700px;
}
.min-height-800px {
  min-height: 800px;
}
.min-height-900px {
  min-height: 900px;
}

/* Hero Heights  */

.xs-screen {
  height: 300px;
}
.sm-screen {
  height: 400px;
}
.md-screen {
  height: 600px;
}
.lg-screen {
  height: 700px;
}
.xl-screen {
  height: 800px;
}
.xxl-screen {
  height: 1000px;
}

/* View Heights */

.view-height-100vh {
  height: 100vh !important;
}

.border-radius-25 {
  border-radius: 25px;
}
.remove-padding {
  padding: 0 !important;
}

.remove-margin {
  margin: 0 !important;
}
.img-responsive,
.full-width {
  width: 100%;
}

.alert {
  font-size: 16px;
}
.btn,
.form-control,
.form-control:hover,
.form-control:focus,
.navbar-custom .dropdown-menu {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-circle {
  border-radius: 25px;
}

.btn-rounded {
  border-radius: 10px;
}

.btn-square {
  border-radius: 0px;
}

button:focus {
  outline: none !important;
}

.btn {
  padding: 0 30px;
  height: 48px;
  line-height: 46px;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.btn + .btn {
  margin-left: 10px;
}

.btn:focus,
.btn:focus:active {
  outline: none;
}

.btn-color {
  color: #fff;
  border-color: #004d4d;
  background-color: #004d4d;
}

.btn-color:hover,
.btn-color:active,
.btn-color:focus {
  background-color: #06a8a8;
  border-color: #06a8a8;
  color: #fff;
}

.btn-red {
  color: #fff;
  border-color: #d9534f;
  background-color: #d9534f;
}

.btn-red:hover,
.btn-red:active,
.btn-red:focus {
  background-color: #c9302c;
  border-color: #c9302c;
  color: #fff;
}

.btn-green {
  color: #fff;
  border-color: #5cb85c;
  background-color: #5cb85c;
}

.btn-green:hover,
.btn-green:active,
.btn-green:focus {
  background-color: #449d44;
  border-color: #449d44;
  color: #fff;
}

.btn-yellow {
  color: #fff;
  border-color: #fdc23e;
  background-color: #fdc23e;
}

.btn-yellow:hover,
.btn-yellow:active,
.btn-yellow:focus {
  background-color: #ec971f;
  border-color: #ec971f;
  color: #fff;
}

.btn-brown {
  color: #fff;
  border-color: #d09e88;
  background-color: #d09e88;
}

.btn-brown:hover,
.btn-brown:active,
.btn-brown:focus {
  background-color: #b1775d;
  border-color: #b1775d;
  color: #fff;
}

.btn.btn-xs,
.btn.btn-group-xs {
  padding: 0 16px;
  font-size: 10px;
  height: 30px;
  line-height: 30px;
}

.btn.btn-sm,
.btn.btn-group-sm {
  padding: 0 22px;
  font-size: 10px;
  height: 35px;
  line-height: 34px;
}

.btn.btn-lg,
.btn.btn-group-lg {
  padding: 0px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 400;
  height: 60px;
  line-height: 60px;
}

.btn-outline {
  color: #667eea;
  border-color: #667eea;
  background-color: transparent;
}

.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus {
  color: #fff;
  border-color: #667eea;
  background-color: #667eea;
}

.btn-white {
  color: #2d2d2d;
  border-color: #fff;
  background-color: #fff;
}

.btn-white:hover,
.btn-white:active,
.btn-white:focus {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn-outline-white:hover,
.btn-outline-white:active,
.btn-outline-white:focus {
  color: #2d2d2d;
  border-color: #fff;
  background-color: #fff;
}

.btn-outline-blue {
  color: #667eea;
  border-color: #667eea;
  background-color: transparent;
}

.btn-outline-blue:hover,
.btn-outline-blue:active,
.btn-outline-blue:focus {
  color: #fff;
  border-color: #667eea;
  background-color: #667eea;
}

.btn-dark {
  color: #fff;
  border-color: #2d2d2d;
  background-color: #2d2d2d;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
  color: #2d2d2d;
  border-color: #fff;
  background-color: #fff;
}

.btn-dark-outline {
  color: #2d2d2d;
  border-color: #2d2d2d;
  background-color: transparent;
}

.btn-dark-outline:hover,
.btn-dark-outline:active,
.btn-dark-outline:focus {
  color: #fff;
  border-color: #2d2d2d;
  background-color: #2d2d2d;
}

.btn-pink {
  color: #fff;
  border-color: #ef9e9f;
  background-color: #ef9e9f;
}

.btn-pink:hover,
.btn-pink:active,
.btn-pink:focus {
  color: #fff;
  border-color: #cb7575;
  background-color: #cb7575;
}

.btn-animate {
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.btn-animate span {
  display: inline-block;
  position: relative;
  padding: 0 8.5px 0 8.5px;
  transition: padding 0.2s;
}
.btn-animate i {
  position: absolute;
  top: 50%;
  right: 0px;
  opacity: 0;
  margin-top: -6px;
  transition:
    opacity 0.2s,
    right 0.2s;
}
.btn-animate:hover span {
  padding: 0 17px 0 0;
}
.btn-animate:hover i {
  transition:
    opacity 0.2s,
    right 0.2s;
  opacity: 1;
  top: 50%;
  right: 0;
}

.icon {
  margin-left: 6px;
}

.feature-box,
.feature-box-right {
  float: left;
}

.feature-box i {
  margin-bottom: 20px;
  display: inline-block;
}

.blue-icon {
  color: #667eea;
}

.agro-green-icon {
  color: #004d4d !important;
}

.dark-icon {
  color: #2d2d2d;
}

.light-icon {
  color: #f1f1f1;
}

.red-icon {
  color: #d9534f;
}

.yellow-icon {
  color: #fdc23e;
}

.brown-icon {
  color: #d09e88;
}

.blue-bg-icon {
  background-color: #667eea;
  border-color: #667eea;
}

.agro-green-bg-icon {
  background-color: #004d4d;
  border-color: #004d4d;
}

.light-agro-green-bg-icon {
  background-color: #5bbbbb;
  border-color: #004d4d;
}

.yellow-bg-icon {
  background-color: #fdc23e;
  border-color: #fdc23e;
}

.green-bg-icon {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.circle-icon {
  position: relative;
  width: 85px;
  height: 85px;
  line-height: 85px !important;
  border-radius: 100%;
  text-align: center;
  display: inline-block !important;
}

.feature-box .pull-left {
  width: 15%;
}

.feature-box .pull-right {
  width: 80%;
}

.feature-box-right .pull-left {
  width: 80%;
}

.feature-box-right .pull-right {
  width: 15%;
}

.box {
  padding: 60px;
  position: relative;
  transition: all 0.2s ease;
}

.box h2 {
  font-size: 32px;
}

.box h4 {
  font-size: 28px;
}

.box img {
  margin: 0 auto 20px auto;
  display: block;
  width: 200px;
}

.bordered {
  border: 1px solid #eee;
}

/*=============================================
                        Counter
=============================================*/
.counter h2 {
  margin: 15px 0 20px;
  font-size: 60px;
  line-height: 50px;
  text-align: center;
  font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum=1";
  -ms-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  -o-font-feature-settings: "lnum";
}
.counter h3 {
  margin: 0;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #f1f1f1;
  font-family: "Oswald", sans-serif;
  letter-spacing: 2px;
}
/*=============================================
                        Portfolio
=============================================*/
ul#portfolio-filter {
  margin-bottom: 50px;
}
ul#portfolio-filter li {
  font-size: 16px;
  line-height: 25px;
  padding: 7px 20px;
  border-radius: 20px;
  cursor: pointer;
}
ul#portfolio-filter li.active {
  background-color: #ff2a40;
  color: #fff;
}

/*Filter Square Style*/
ul#portfolio-filter.filter-square li {
  border: 1px solid #868f96;
  border-radius: 0;
  padding: 5px 20px;
  margin: 2px;
}
ul#portfolio-filter.filter-square li.active {
  border: 1px solid transparent;
}
/*End Filter Square Style*/

/*Filter Rounded Style*/
ul#portfolio-filter.filter-rounded li {
  border: 0;
  border-radius: 3px;
  background-color: #e0e0e0;
  padding: 5px 20px;
  margin: 2px;
}
ul#portfolio-filter.filter-rounded li.active {
  background-color: #1b2e3f;
}
/*End Filter Square Style*/

/*Filter Transparent Style*/
ul#portfolio-filter.filter-transparent li {
  color: #a9a8a8;
  padding: 5px 15px;
  font-size: 16px;
  text-transform: uppercase;
}
ul#portfolio-filter.filter-transparent li.active {
  background-color: transparent;
  color: #667eea;
}
ul#portfolio-filter.filter-transparent li:hover {
  color: #667eea;
}
/*End Filter Transparent Style*/

ul#portfolio-grid {
  overflow: hidden;
  margin-bottom: 0;
}
ul#portfolio-grid li img {
  width: 100%;
}
ul#portfolio-grid > li {
  float: left;
  display: block;
  height: auto;
}

/*Five Column Portfolio*/
ul#portfolio-grid.five-column > li {
  width: 20%;
}

/*Four Column Portfolio*/
ul#portfolio-grid.four-column > li {
  width: 25%;
}

/*Three Column Portfolio*/
ul#portfolio-grid.three-column > li {
  width: 33.33%;
}

/*Two Column Portfolio*/
ul#portfolio-grid.two-column > li {
  width: 50%;
}
@media (max-width: 1199px) {
  ul#portfolio-grid.five-column > li {
    width: 25%;
  }
}

@media (max-width: 991px) {
  ul#portfolio-grid.five-column > li,
  ul#portfolio-grid.four-column > li {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  ul#portfolio-grid.five-column > li,
  ul#portfolio-grid.four-column > li,
  ul#portfolio-grid.three-column > li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  ul#portfolio-grid.five-column > li,
  ul#portfolio-grid.four-column > li,
  ul#portfolio-grid.three-column > li,
  ul#portfolio-grid.two-column > li {
    width: 100%;
  }
}

.portfolio-item.gutter {
  margin-bottom: 20px !important;
}
.portfolio {
  position: relative;
  overflow: hidden;
}

/* Portfolio overlay default
/* ---------- */
.portfolio .dark-overlay {
  background-color: rgba(30, 192, 255, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.portfolio:hover .dark-overlay {
  opacity: 1;
  visibility: visible;
}
.portfolio-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -88px;
}
.portfolio-description .portfolio-title,
.portfolio-description .links {
  position: relative;
  left: 0;
  color: #fff;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}
.portfolio-description .portfolio-title {
  top: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.portfolio:hover .portfolio-description .portfolio-title {
  top: 30px;
  opacity: 1;
  visibility: visible;
}
.portfolio-description .links {
  top: 0px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.portfolio:hover .portfolio-description .links {
  top: 25px;
  opacity: 1;
  visibility: visible;
}
.portfolio-description .btn {
  background-color: transparent;
  border-color: #fff;
  padding: 12px 22px;
  border-radius: 20px;
}
.portfolio-description .btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #ff2a40;
}
.portfolio-container .btn.view-more {
  margin-top: 40px;
}

.photo-gallery .portfolio-wrap {
  margin-top: -60px;
}

/* Portfolio Hover Style Two
/* ---------- */

.hover-two .portfolio:hover .portfolio-description .links {
  top: 25px;
}
.hover-two .portfolio .dark-overlay {
  background-color: rgba(0, 0, 0, 0.9);
}

.portfolio-details {
  position: relative;
  left: 0;
  top: 35px;
  width: 100%;
}
.portfolio-details li {
  display: inline-block;
  position: relative;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0);
  margin-right: 5px;
}
.portfolio-details li:last-child {
  margin-right: 0;
}
.portfolio:hover .portfolio-details li {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.portfolio:hover .portfolio-details li:nth-child(1) {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.portfolio:hover .portfolio-details li:nth-child(2) {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.portfolio-details li a {
  display: block;
  color: #f1f1f1;
}

.portfolio-details li a:hover {
  display: block;
  color: #667eea;
}

.gutter-space {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.portfolio-item.gutter-space {
  margin-bottom: 20px !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #868f96;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #868f96;
}
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #868f96;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.92;
}
.mfp-bottom-bar {
  display: none;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-arrow-right::after,
.mfp-arrow-left::after {
  font-family: "FontAwesome";
  border: none !important;
  color: #fff;
  font-size: 65px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.mfp-arrow-right::after {
  content: "\f105" !important;
}
.mfp-arrow-left::after {
  content: "\f104" !important;
}
.mfp-arrow-right::before,
.mfp-arrow-left::before {
  border: none !important;
}
.mfp-arrow {
  height: 60px;
}
.mfp-arrow::before,
.mfp-arrow::after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  margin-top: 15px;
  top: -1px !important;
}
img.mfp-img {
  padding: 40px 0px 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transform: scale(0.95);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  transform: scale(0.95);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.project-image {
}

.project-info {
  list-style: none;
  padding-top: 50px;
  text-align: left;
}

.project-info li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 15px 0;
  color: #1b1d1c;
}

.project-info li span {
  font-family: "Inter", sans-serif;
  color: #6d747c;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
}
.project-title {
  padding-top: 20px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1b1d1c;
  margin-bottom: 20px;
}

.project-details {
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  padding-bottom: 50px;
}

.project-details p {
  color: #1b1d1c;
  font-size: 16px;
  font-weight: 300;
  margin-top: 35px;
}

.portfolio-slider {
  margin-bottom: 30px;
}
.portfolio-slider .owl-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -15px;
}

.portfolio-right .project-detail-box {
  margin-top: 10px;
}

.portfolio-right .project-detail-box li strong {
  min-width: 110px;
  display: inline-block;
}

.portfolio-right .project-detail-box li {
  line-height: 30px;
  list-style: none;
}

.portfolio-right .project-detail-box li a {
  color: #888;
}

.portfolio-right .project-detail-box li a:hover {
  color: #667eea;
}

.project-type-list {
  margin-top: 30px;
}

.project-type-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 300;
  font-size: 14px;
  list-style: none;
}
.project-type-list li i {
  margin-right: 10px;
}

/*=============================================
                        Pricing Table
=============================================*/
.pricing-table {
  margin: 40px 0;
}
.pricing-box {
  padding: 40px;
  text-align: center;
  background: #fff;
  transition: all 0.2s ease;
}

.pricing-box:hover {
  box-shadow: 0 10px 30px 5px rgba(17, 21, 23, 0.1);
}

.pricing-box h4 {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
}
.pricing-box h2 {
  font-family: "Inter", sans-serif;
  margin-top: 25px;
  margin-bottom: 25px;
  color: #667eea;
}
.pricing-box h2 sup {
  font-size: 25px;
  top: -15.6px;
}
.pricing-box h2 span {
  font-weight: 700;
}

.pricing-box ul {
  margin: 20px 0;
  padding: 0;
}
.pricing-box li {
  display: block;
  margin-bottom: 10px;
  list-style: none;
}

.pricing-box-bottom {
  margin-top: 40px;
}

.pricing-table-featured {
  margin: 5px 0;
}

.pricing-table-featured .pricicng-feature {
  min-height: 180px;
}

/*=============================================
                        Our Team
=============================================*/
.member {
  margin: 40px 0;
  padding: 0 10px;
}
.team-slider .member {
  margin: 20px 0;
  padding: 0 10px;
}
.team-fullwidth .member {
  margin: 0;
  padding: 0;
}
.p0.member {
  margin: 0;
  padding: 0;
}
.team-member-container {
  position: relative;
  overflow: hidden;
}
.team-member-img img {
  width: 100%;
}
.team-member-container .member-caption {
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.team-member-container:hover .member-caption {
  opacity: 1;
  visibility: visible;
}
.member-description {
  width: 100%;
  height: 100%;
}
.member-description-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -88px;
}
.member-description .member-title,
.member-description .member-subtitle {
  position: relative;
  left: 0;
  color: #fff;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.member-description .member-title {
  top: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.member-description .member-subtitle {
  top: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.team-member-container:hover .member-description .member-title {
  opacity: 1;
  visibility: visible;
  top: 30px;
}

.team-member-container:hover .member-description .member-subtitle {
  opacity: 1;
  visibility: visible;
  top: 25px;
}

.member-icons {
  position: relative;
  left: 0;
  top: 30px;
  width: 100%;
}

.member-icons li {
  display: inline-block;
  position: relative;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0);
  margin-right: 5px;
}
.member-icons li a {
  display: block;
  color: #fff;
}
.member-icons li a:hover {
  color: #667eea;
}

.team-member-container:hover .member-icons li {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.team-member-container:hover .member-icons li:nth-child(1) {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team-member-container:hover .member-icons li:nth-child(2) {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.team-member-container:hover .member-icons li:nth-child(3) {
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.corporate-member .member-description-wrap,
.startup-member .member-description-wrap,
.media-member .member-description-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -48px;
}

.corporate-member h4,
.startup-member h4 {
  margin-top: 30px;
  margin-bottom: 5px;
}

.startup-member .member {
  padding: 0;
}

.media-member h4 {
  margin-top: 0;
}

.media-member .member-icons li a {
  display: block;
  color: #fff;
  background: #667eea;
  width: 35px;
  height: 35px;
  line-height: 37px;
  border-radius: 100px;
}

.media-member .member-icons li a:hover {
  color: #fff;
  background: #2d2d2d;
}

/* 8.1 Owl carousel */

.owl-controls .owl-pagination {
  text-align: center;
}

.owl-controls .owl-page {
  display: inline-block;
  margin: 0 4px;
}

.owl-controls .owl-page span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  transition: 0.2s linear;
  background: #e8e8e8;
}

.owl-controls .owl-page.active span,
.owl-controls .owl-page:hover span {
  background-color: #2d2d2d;
}

/*=============================================
                  Theme Feature
=============================================*/
.theme-feature {
}
.theme-feature i.fa {
  color: #fff;
  border-radius: 50%;
  font-size: 35px;
  background: #ff4452;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 20px;
}
.theme-feature h4 {
  color: #ff4452;
  font-family: "Inconsolata", monospace;
  margin-bottom: 20px;
  font-size: 20px;
}

/*=============================================
                        Our Blog
=============================================*/

.blog-slider .post {
  margin: 20px 0;
  padding: 0 10px;
}

.event-detail-slider {
  position: relative;
}

.event-detail-slider .swiper-button-next,
.event-detail-slider .swiper-button-prev {
  color: #667eea;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

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

.event-detail-slider .swiper-pagination {
  position: static;
  margin-top: 15px;
}

.event-detail-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e8e8e8;
  opacity: 1;
  margin: 0 4px;
}

.event-detail-slider .swiper-pagination-bullet-active {
  background: #667eea;
}

.post-info {
  padding: 40px;
  background: #fff;
  transition: all 0.2s ease;
  margin-bottom: 30px;
}
.post:hover .post-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.post .post-img {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.post .post-img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.post-info h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0px;
  font-weight: 600;
}
.post-info h6 {
  color: #868f96;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum=1";
  -ms-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  -o-font-feature-settings: "lnum";
  font-weight: 400;
}

.post-info a {
  color: #2d2d2d;
}

.post-info a:hover {
  color: #667eea;
}

.post-info p {
  margin-top: 20px;
}

a.readmore {
  letter-spacing: 2px;
  color: #333;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum=1";
  -ms-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  -o-font-feature-settings: "lnum";
  text-transform: uppercase;
  font-weight: 700;
}

a.readmore > span {
  display: inline-block;
  vertical-align: middle;
}

.blog-grid-slider .owl-prev,
.portfolio-slider .owl-prev,
.blog-grid-slider .owl-next,
.portfolio-slider .owl-next {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  text-align: center;
  margin-top: -15px;
}

.blog-grid-slider .owl-prev,
.portfolio-slider .owl-prev {
  left: 20px;
}

.blog-grid-slider .owl-next,
.portfolio-slider .owl-next {
  right: 20px;
}

.blog-grid-slider .owl-prev .fa,
.portfolio-slider .owl-prev .fa .blog-grid-slider .owl-next .fa,
.portfolio-slider .owl-next .fa {
  color: rgba(0, 0, 0, 0.7);
}

.blog-grid-slider .owl-prev:hover,
.portfolio-slider .owl-prev:hover,
.blog-grid-slider .owl-next:hover,
.portfolio-slider .owl-next:hover {
  background-color: #667eea;
}

.blog-grid-slider .owl-prev:hover .fa,
.portfolio-slider .owl-prev:hover .fa,
.blog-grid-slider .owl-next:hover .fa,
.portfolio-slider .owl-next:hover .fa {
  color: #fff;
}

.blog-grid-video .video-alpha .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  border: 0;
  border-radius: 100%;
  color: #2d2d2d;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  z-index: 300;
}
.blog-grid-video .video-alpha .video-play:hover {
  color: #fff;
  background-color: #667eea;
}
.blog-grid-video .video-alpha .video-play i.fa-play {
  margin-left: 5px;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  position: relative;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.widget-title:before {
  content: "";
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  width: 40px;
  border-top: 1px solid #e8e8e8;
}

.widget-about-title {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 0;
}

/* 10.5 Widget Search */

.search-form {
  position: relative;
}

.search-field {
  border-color: #e9e9e9 !important;
  background: #fff;
}

.search-field:focus {
  border-color: #667eea !important;
}

/* Widget Categories */

.widget_categories ul li:first-child,
.widget_archive ul li:first-child {
  margin-top: 0;
}

.widget_categories ul li,
.widget_archive ul li {
  margin-top: 20px;
  line-height: 25px;
  list-style: none;
}

.widget_categories ul li a,
.widget_archive ul li a {
  color: #888;
  font-weight: 400;
}

.widget_categories ul li a:hover,
.widget_archive ul li a:hover {
  color: #667eea;
  text-decoration: none;
}

/* Widget Tags */

.post-tags a {
  display: inline-block;
  padding: 5px 11px;
  margin: 0 5px 15px 0;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 300;
  color: #888;
  background: #fff;
}

.post-tags a:hover {
  background: #027a7a;
  border: 1px solid #667eea;
  color: #fff;
  text-decoration: none;
}

.pagination {
  display: block;
  margin: 80px auto 0 auto;
  text-align: center;
}

.pagination > li {
  display: inline-block;
  margin-right: 5px;
}

.pagination > li > a,
.pagination > li > span {
  float: left;
  padding: 8px 15px;
  color: #667eea;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 100%;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-radius: 100%;
  padding: 8px 16px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 100%;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  color: #fff;
  background-color: #667eea;
  border-color: #667eea;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #fff;
  background-color: #667eea;
  border-color: #667eea;
}

.blog-standard {
  margin-top: 20px;
}

.blog-standard blockquote {
  margin: 40px 0;
  background-color: #f6f6f6;
  padding: 30px;
  position: relative;
  border-left-color: #667eea;
  font-size: inherit;
  line-height: 1.7;
  color: #888;
}

.post-controls {
  margin-top: 30px;
  overflow: hidden;
}

.post-share li {
  display: inline-block;
  padding-right: 10px;
  margin: 0;
}

.post-controls .post-share {
  float: left;
}

.post-controls .comments-info {
  float: right;
}

.post-controls .post-share li a {
  color: #2d2d2d;
}

.post-controls .post-share li a:hover {
  color: #667eea;
}

/* 10.3 Comments */

.comments-info a {
  color: #2d2d2d;
}

.comments-info a:hover {
  color: #667eea;
  text-decoration: none;
}

.comment-respond {
  margin-top: 70px;
}

.comment-reply-title {
  font-size: 19px;
  margin-bottom: 20px;
}

.blog-masonry-item {
  margin-bottom: 50px;
}

/*=============================================
                        Footer
=============================================*/
.footer {
  font-size: 14px;
  position: relative;
  z-index: 10;
}

.footer-main {
  padding: 30px 0 10px;
  background-color: #004d4d;
}

.footer .widget-title {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #fff;
  font-family: "Oswald", sans-serif;
}

.footer .widget-text p {
  color: #fff;
}

.footer .widget-title:before {
  content: "";
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  width: 40px;
  border-top: 1px solid #333;
}

.footer .widget-links {
  font-size: 14px;
}

.footer .widget-links li {
  margin-bottom: 10px;
  list-style: none;
}

.footer .widget-links a {
  color: #fff;
}

.footer .widget-links a:hover {
  color: #027a7a;
  text-decoration: none;
}

.footer-copyright {
  padding: 10px 0;
  background-color: #111312;
}

.copy-right {
  margin-top: 5px;
}

.footer-copyright ul.social-media {
  float: right;
  display: block;
}

.footer-copyright ul.social-media li {
  display: inline-block;
  margin-right: 17px;
}

.footer-copyright ul.social-media li:last-child {
  margin-right: 0;
}

.footer-copyright ul.social-media li a {
  font-size: 16px;
  display: inline-block;
  color: #868f96;
}

.footer-copyright ul.social-media li a:hover {
  color: #027a7a;
}

ul.footer-gallery {
  margin: 0;
}

ul.footer-gallery li {
  display: inline-block;
  width: 24%;
  padding: 0 2px 0px 0;
  margin-bottom: 5px;
}
ul.footer-gallery li img {
  max-width: 100%;
  width: 100%;
}

.footer-gallery-box {
  position: relative;
  overflow: hidden;
}

.footer-gallery-box .skin-overlay {
  background-color: rgba(30, 192, 255, 0.9);
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.footer-gallery-box:hover .skin-overlay {
  opacity: 1;
  visibility: visible;
}
.footer-gallery-box .zoom-wrap {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-gallery-zoom {
  position: absolute;
  left: 0;
  top: 40%;
  width: 100%;
}

.footer-gallery-zoom li {
  position: relative;
  bottom: -40px;
  opacity: 0;
  visibility: hidden;
  transform: translateZ(0);
}

.footer-gallery-box:hover .footer-gallery-zoom li {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-gallery-zoom li a {
  color: #fff;
}

.footer-gallery-zoom li a:hover,
.footer-gallery-zoom li a:focus {
  color: #2d2d2d;
}

.gwp-footer-logo {
  float: center;
}

.logo-shine-wrapper {
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
/*=============================================
                Contact Us Page
=============================================*/

.form-group {
  margin-bottom: 30px;
}
.form-control {
  height: 60px;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  color: #2d2d2d;
  border: 1px solid #eee;
  border-radius: 0;
}
.form-control:focus {
  border-color: #667eea;
}

.contact-us p,
.contact-us address {
  font-size: 14px;
}

.contact-us h3 {
  margin-top: 0;
}

.contact-us address {
  margin-bottom: 40px;
  line-height: 25px;
}

.contact-us address a {
  color: #667eea;
}

.contact-us address a:hover {
  color: #2d2d2d;
}

.search-submit {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #e0e0e0;
}

.search-submit:hover {
  color: #667eea;
}

/*=============================================
                Google Maps
=============================================*/

.map-section {
  position: relative;
}

.map-parallax {
  position: fixed;
  width: 100%;
  height: 45%;
  z-index: -3;
}
#myMap,
#myMapTwo {
  min-height: 500px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

#myMap.wide,
#myMapTwo.wide {
  height: 500px;
  width: 100%;
  position: relative !important;
}

#mapcontent p {
  margin: 0;
  font-size: 16px;
}

/*=============================================
                Go Top
=============================================*/

#back-to-top {
  position: fixed;
  bottom: 75px;
  right: 40px;
  z-index: 999;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: #004d4d;
  color: #fff;
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
#back-to-top:hover {
  background: #2d2d2d;
  color: #fff;
}
#back-to-top.show {
  opacity: 1;
}

/*=======================================================
      FLEX SLIDER
========================================================*/
.flexslider {
  border: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
}
.flex-direction-nav a:before {
  font-family: "FontAwesome";
  font-size: 40px;
  display: inline-block;
  content: "";
  color: #fff;
  text-shadow: none;
}

.flex-direction-nav a.flex-prev:before {
  content: "\f177";
}

.flex-direction-nav a.flex-next:before {
  content: "\f178";
}

.slider-bg .flex-control-nav {
  z-index: 999;
  bottom: 20px;
}

.slider-bg .flex-control-paging li a {
  background: rgba(255, 255, 255, 0.5);
}

.slider-bg .flex-control-paging li a.flex-active {
  background: rgba(255, 255, 255, 0.9);
}

.slider-bg {
  border: 0;
  margin: 0;
  height: 100vh;
  background-color: #222225;
}
.slider-bg .slides {
  height: 100%;
}

.slider-bg .slides > li {
  height: 100%;
}

.slider-bg .hero-text {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 100%;
  z-index: 10;
  color: #fff;
}
.slider-bg .hero-text P {
  line-height: 50px;
  font-size: 35px;
}

.slider-bg .hero-text h1 {
  font-size: 100px;
}

.slider-bg .hero-text :is(h1, h2, h3, h4, h5, h6, p) {
  text-transform: uppercase;
}
.slide-img,
.parallax-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-screen-bg {
  height: 90vh;
  background-color: #222225;
  min-height: 80vh;
  
}

.hero-text-wrap {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  position: relative;
  background-color: rgba(34, 34, 37, 0.45);
  z-index: 200;
}

.hero-text-wrap.gradient-overlay-bg {
  background: rgba(144, 85, 162, 1);
  background: -moz-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(144, 85, 162, 1)),
    color-stop(100%, rgba(255, 68, 82, 0.5))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: linear-gradient(
    to right,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9055a2', endColorstr='#ff4452', GradientType=1 );
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 1;
}

.gradient-overlay-bg {
  background: rgba(144, 85, 162, 1);
  background: -moz-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(144, 85, 162, 1)),
    color-stop(100%, rgba(255, 68, 82, 0.5))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  background: linear-gradient(
    to right,
    rgba(144, 85, 162, 1) 0%,
    rgba(255, 68, 82, 0.5) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9055a2', endColorstr='#ff4452', GradientType=1 );
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.video-container video.fillWidth {
  width: 100% !important;
  margin-left: 0 !important;
}

.video-container .filter {
  display: none;
}

.video-container video {
  position: fixed;
  top: 0%;
  left: 0%;
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-video {
  padding-bottom: 88.25%;
}
.about-video iframe {
  height: 318px;
}

.video-alpha .video-play {
  position: absolute;
  top: 65%;
  left: 50%;
  margin-top: 0px;
  margin-left: -37px;
  width: 74px;
  height: 74px;
  font-size: 30px;
  line-height: 71px;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100%;
}
.video-alpha .video-play i.fa-play {
  margin-left: 5px;
}

.music-event .video-play {
  font-size: 100px;
  color: #fff;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
  display: inline-block;
}

.music-event .video-play:hover {
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.5);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.5);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.5);
  transition: all 200ms ease-in;
  transform: scale(1.5);
}

.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-video video {
  position: absolute;
  max-width: none;
}

.about-me {
  margin-bottom: 20px;
}

.about-me img {
  width: 200px;
}

.about-us-bg {
  background: url(../images/overseas-operations.png) center no-repeat;
  background-size: contain;
}

.travel-bg-left {
  background: url(../images/travel-bg-left.jpg) center no-repeat;
  background-size: cover;
}

.travel-bg-right {
  background: url(../images/travel-bg-right.jpg) center no-repeat;
  background-size: cover;
}

.gym-bg-left {
  background: url(../images/gym-bg-left.jpg) center no-repeat;
  background-size: cover;
}

.gym-bg-right {
  background: url(../images/gym-bg-right.jpg) center no-repeat;
  background-size: cover;
}

.barber-bg-left {
  background: url(../images/barber-bg-left.jpg) center no-repeat;
  background-size: cover;
}

.barber-bg-right {
  background: url(../images/barber-bg-right.jpg) center no-repeat;
  background-size: cover;
}

.archi-bg-left {
  background: url(../images/archi-bg-left.jpg) center no-repeat;
  background-size: cover;
}

.bg-flex {
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.bg-flex-right {
  position: absolute;
  padding: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.col-about-right {
  padding-left: 60px;
}

.col-about-left {
  padding-right: 60px;
}

.social-networks {
  padding: 0;
  list-style: none;
  margin: 0;
}
.social-networks > li {
  display: inline-block;
  margin-right: 12px;
}
.social-networks > li > a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 47px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #e8e8e8;
  color: #2d2d2d;
  border-radius: 100%;
}
.social-networks > li > a:hover {
  color: #fff;
}
.social-networks > li.social-icon-fb > a:hover {
  background-color: #3b5998;
  border-color: #3b5998;
}
.social-networks > li.social-icon-tw > a:hover {
  background-color: #55acee;
  border-color: #55acee;
}
.social-networks > li.social-icon-lk > a:hover {
  background-color: #0077b5;
  border-color: #0077b5;
}
.social-networks > li.social-icon-be > a:hover {
  background-color: #053eff;
  border-color: #053eff;
}
.social-networks > li.social-icon-de > a:hover {
  background-color: #ea4c89;
  border-color: #ea4c89;
}

/*=======================================================
      PROGRESS BAR
========================================================*/

.progress-bar-title {
  margin-bottom: 3px;
}

.progress-bar-title,
.progress-bar {
  font-size: 16px;
  color: #2d2d2d;
  text-transform: uppercase;
  font-weight: 500;
}

.progress {
  height: 5px;
  margin-bottom: 30px;
  box-shadow: none;
  background: #ececec;
  border-radius: 0;
  overflow: visible;
}

.progress-bar {
  position: relative;
  border-radius: 4px;
  background-color: #667eea;
  box-shadow: none;
  color: inherit;
  width: 20%;
}

.progress-bar span {
  position: absolute;
  top: -30px;
  right: 0px;
  color: #2d2d2d;
}

.progress-svg {
  display: block;
  margin: 0 auto;
  overflow: hidden;
  -webkit-transform: rotate(-90deg) rotateX(180deg);
  transform: rotate(-90deg) rotateX(180deg);
  width: 180px;
  height: 180px;
}
.progress-svg circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  transition: stroke-dashoffset 0.8s cubic-bezier(0.42, 0, 0.58, 1);
  stroke: #111;
  stroke-width: 5px;
}
.progress-svg .bar {
  stroke: #ececec;
  stroke-width: 6px;
}

.progress-svg circle {
  stroke: #667eea;
}
.progress-ring {
  position: relative;
  display: inline-block;
  margin: 40px 40px;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.progress-ring:before {
  position: absolute;
  top: 47%;
  left: 50%;
  font-size: 24px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: attr(data-circle-text);
}
.progress-ring:after {
  position: absolute;
  top: 61%;
  left: 50%;
  font-size: 14px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: attr(data-circle-percent) "%";
}
.progress-ring-icon .progress-ring:before {
  position: absolute;
  top: 200px;
  left: 50%;
  font-size: 18px;
  line-height: 1.4;
  font-family: "Raleway", sans-serif;
  transform: translate(-50%, -50%);
  content: attr(data-circle-text);
}
.progress-ring-icon .progress-ring:after {
  display: none;
}
.progress-ring-icon i {
  position: absolute;
  top: 52%;
  left: 50%;
  font-size: 60px;
  transform: translate(-50%, -50%);
}

/*=======================================================
      TESTIMONIALS
========================================================*/

.testimonial {
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.testimonial-item {
  text-align: center;
}

.testimonial-item img.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.testimonial-item h4,
.testimonial-item h5 {
  color: #fff;
  font-family: "Oswald", sans-serif;
}

.testimonial-item h4 {
  font-weight: 300;
  line-height: 32px;
  margin: 20px 0 25px;
  position: relative;
}

.testimonial-item h4:before {
  font-family: "Inter", sans-serif;
  content: open-quote;
  font-size: 40px;
  vertical-align: -5px;
  margin-right: 5px;
  color: #eee;
}

.testimonial-item h4:after {
  font-family: "Inter", sans-serif;
  content: close-quote;
  font-size: 40px;
  vertical-align: -5px;
  margin-left: 5px;
  color: #eee;
}

.testimonial-item h5 {
  margin-bottom: 3px;
  text-transform: uppercase;
}

/* Swiper custom styles (optional for better look) */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #027a7a;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/*=======================================================
      Client Logo
========================================================*/

.client-slider {
  padding: 20px 0;
}

.client-logo {
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.client-logo img {
  max-height: 300px;
  width: auto;
  filter: grayscale(100%) !important;
  opacity: 0.7;
  transition: all 0.4s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Swiper navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/*=======================================================
      Title Hero Backgrounds
========================================================*/
.title-hero-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  min-height: 350px;
}
.title-hero-bg::before {
  content: "";
  /* background-color: rgba(132, 131, 179, 0.8); */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.title-error-bg,
.title-cover-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  min-height: 1080px;
}
.title-error-bg::before,
.title-cover-bg:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.portfolio-cover-bg {
  background-image: url(../images/title-bg/title-hero-1.jpg);
}

.blog-cover-bg {
  background-image: url(../images/title-bg/title-hero-2.jpg);
}

.about-cover-bg {
  background-image: url(../images/title-bg/title-hero-3.jpg);
}

.service-cover-bg {
  background-image: url(../images/title-bg/title-hero-4.jpg);
}

.contact-cover-bg {
  background-image: url(../images/contact-green.png);
}

.error-cover-bg {
  background-image: url(../images/title-bg/title-hero-6.jpg);
}

.login-cover-bg {
  background-image: url(../images/title-bg/title-hero-7.jpg);
  height: 100%;
}

.coming-cover-bg {
  background-image: url(../images/title-bg/title-hero-8.jpg);
  height: 100%;
}

.widget-cover-bg {
  background-image: url(../images/title-bg/title-hero-9.jpg);
}

.shop-cover-bg {
  background-image: url(../images/title-bg/title-hero-10.jpg);
}

.page-title {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  z-index: 15;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.page-title h1 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/*=======================================================
      Login / Coming Soon / 404 Page
========================================================*/

.error-cover-bg h1,
.coming-cover-bg h1 {
  font-size: 120px !important;
  text-transform: uppercase;
}
.error-cover-bg h2,
.coming-cover-bg h2 {
  font-size: 60px;
  color: #667eea;
  margin-top: 50px;
  margin-bottom: 50px;
}

.error-cover-bg p,
.coming-cover-bg p {
  color: #fff;
  font-size: 30px;
}

.login-cover-bg h1 {
  font-size: 60px !important;
  text-transform: uppercase;
}
.login-cover-bg h2 {
  font-size: 30px;
  color: #667eea;
  margin-top: 50px;
  margin-bottom: 50px;
}

.login-cover-bg p {
  color: #fff;
}

.signup-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
}

.v-align {
  vertical-align: middle;
  display: table-cell;
}

.v-align a {
  color: #667eea;
}
.v-align a:hover {
  color: #2d2d2d;
}

.table-display {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
  position: relative;
}

#signup-tabs {
  border-bottom: 0;
  margin: 0;
}
#signup-tabs > li a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  border-radius: 0;
  border: 1px solid #fff;
}
#signup-tabs > li a:hover {
  background-color: #667eea;
  border: 1px solid #667eea;
  color: #fff;
}
#signup-tabs > li.active > a {
  background-color: #667eea;
  border: 1px solid #667eea;
  color: #fff;
}
#signup-content {
  padding: 40px 0;
}

.countdown-container,
.countdown-container-white {
  margin-top: 50px;
  margin-bottom: 50px;
}

.countdown-container .countdown li {
  border: 2px solid #fff;
  min-width: 100px;
  padding: 20px 30px;
  width: 200px;
}

.countdown {
  margin-bottom: 0;
}

.countdown li {
  display: inline-block;
  text-align: center;
  margin-right: 50px;
}

.countdown li:last-child {
  margin-right: 0;
}

.countdown li span {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}

.countdown li p {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.countdown-container-white .countdown li {
  min-width: 100px;
  padding: 15px 20px;
  width: 145px;
  background: #fff;
}

.countdown-container-white .countdown li span {
  font-size: 45px;
  font-weight: 700;
  color: #2d2d2d;
}

/*=======================================================
      Personal Resume
========================================================*/

.animate-caption {
  text-align: center;
  text-transform: uppercase;
  z-index: 15;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.animate-caption h2 {
  font-size: 50px;
}

.contact-me {
  background: #fff;
  padding: 50px 40px 35px 40px;
  box-shadow: 0 10px 30px 5px rgba(17, 21, 23, 0.1);
}

.resume-bar .progress {
  margin-bottom: 40px;
}

#resume h3 {
  color: #667eea;
}

ul.resume-slider {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

ul.resume-slider li {
  background: #fff;
  padding: 30px;
  list-style: none;
  box-shadow: 0 10px 30px 5px rgba(17, 21, 23, 0.1);
  margin-right: 20px;
  margin-bottom: 20px;
}

ul.resume-slider li h3 {
  font-size: 14px;
  margin-bottom: 15px;
  color: #2d2d2d !important;
  margin-top: 0px;
  display: inline-block;
  margin-right: 20px;
  font-family: "Oswald", sans-serif;
  font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum=1";
  -ms-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  -o-font-feature-settings: "lnum";
}

ul.resume-slider li i {
  font-size: 20px;
  margin-right: 5px;
}

ul.resume-slider li h2 {
  font-size: 18px;
  color: #667eea;
  margin-top: 8px;
  text-transform: uppercase;
}

ul.social-media-dark {
  display: block;
  text-align: center;
}

ul.social-media-dark li {
  display: inline-block;
  margin-right: 12px;
}

ul.social-media-dark li:last-child {
  margin-right: 0;
}

ul.social-media-dark li a {
  font-size: 16px;
  display: inline-block;
  color: #2d2d2d;
}

ul.social-media-dark li a:hover {
  color: #667eea;
}

.resume-slider .owl-controls .owl-page span {
  background: rgba(255, 255, 255, 0.5);
}

.resume-slider .owl-controls .owl-page.active span,
.owl-controls .owl-page:hover span {
  background: rgba(255, 255, 255, 0.9);
}

/*=======================================================
      Widgets / Shortcodes
========================================================*/

.light-tabs {
}
.light-tabs .nav-tabs {
  border-top: 1px solid #f1f1f1;
  border-bottom: 0;
  margin-bottom: 5px;
}
.light-tabs .nav-tabs > li {
  float: none;
  display: inline-block;
}

.light-tabs p {
  margin-top: 20px;
}

.light-tabs .nav-tabs > li > a {
  margin-right: 0;
  font-size: 14px;
  line-height: 25px;
  color: #2d2d2d;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.light-tabs .nav > li > a:focus,
.light-tabs .nav > li > a:hover {
  background-color: transparent;
}

.light-tabs .nav-tabs > li.active > a,
.light-tabs .nav-tabs > li.active > a:focus,
.light-tabs .nav-tabs > li.active > a:hover {
  border: 0;
  color: #2d2d2d;
  position: relative;
  background: transparent;
}
.light-tabs .nav-tabs > li.active > a::before {
  content: "";
  background-color: #667eea;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: -1px;
}

.icon-tabs {
}
.icon-tabs .nav-tabs {
  border-top: 0px solid #f1f1f1;
  border-bottom: 0;
  margin-bottom: 5px;
}
.icon-tabs .nav-tabs > li {
  float: none;
  display: inline-block;
}

.icon-tabs p {
  margin-top: 20px;
}

.icon-tabs .nav-tabs > li > a {
  margin-right: 0;
  font-size: 14px;
  line-height: 25px;
  color: #2d2d2d;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.icon-tabs .nav > li > a:focus,
.icon-tabs .nav > li > a:hover {
  background-color: transparent;
}

.icon-tabs .nav-tabs > li.active > a,
.icon-tabs .nav-tabs > li.active > a:focus,
.icon-tabs .nav-tabs > li.active > a:hover {
  border: 0;
  color: #667eea;
  position: relative;
  background: transparent;
}

.icon-tabs .nav-tabs > li > a i {
  display: block;
  font-size: 30px;
  margin-bottom: 20px;
}

/* ----------------
	Accordion Color
---------------*/

.accordion-color .panel {
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.accordion-color .panel-default > .panel-heading h3 {
}
.accordion-color .panel .panel-heading {
  position: relative;
  padding: 0;
  border-bottom: 0px solid #fff;
}
.accordion-color .panel-title a.collapsed {
  display: block;
  color: #2d2d2d;
  background-color: #fff;
  border-color: #f1f1f1;
  padding: 22px 15px;
  border-radius: 0px;
}
.accordion-color .panel-title a {
  display: block;
  color: #fff;
  border-color: #f1f1f1;
  padding: 22px 15px;
  background-color: #667eea;
  border-bottom: 1px solid #667eea;
}
.accordion-color
  .panel-default
  > .panel-heading
  + .panel-collapse
  > .panel-body {
  border: 1px solid #fff;
  background: #fff;
}
.accordion-color .panel .panel-heading a:after {
  font-family: "FontAwesome";
  content: "\f107";
  font-size: 24px;
  width: 50px;
  height: 61px;
  line-height: 61px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
.accordion-color .panel .panel-heading a.collapsed:after {
  content: "\f105";
}

/* ----------------
	Accordion Transparent
---------------*/

.accordion-transparent .panel {
  box-shadow: none;
  border: 0;
  border-radius: 0;
}
.accordion-transparent .panel-default > .panel-heading h3 {
}
.accordion-transparent .panel .panel-heading {
  position: relative;
  padding: 0;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-radius: 0;
}
.accordion-transparent .panel-title a.collapsed {
  display: block;
  color: #2d2d2d;
  background-color: #f1f1f1;
  border-color: #f1f1f1;
  padding: 22px 15px;
  border-radius: 0px;
}
.accordion-transparent .panel-title a {
  display: block;
  color: #2d2d2d;
  border-color: #f1f1f1;
  padding: 22px 15px;
  background-color: #f1f1f1;
}
.accordion-transparent
  .panel-default
  > .panel-heading
  + .panel-collapse
  > .panel-body {
  border: 1px solid #f1f1f1;
  background: #f1f1f1;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.accordion-transparent .panel .panel-heading a:after {
  font-family: "FontAwesome";
  content: "\f107";
  font-size: 24px;
  width: 50px;
  height: 61px;
  line-height: 61px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}
.accordion-transparent .panel .panel-heading a.collapsed:after {
  content: "\f105";
}

/* ----------------
	Flex Slider
---------------*/

.slide-img-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider-bg-static {
  border: 0;
  margin: 0;
  height: 500px;
  background-color: #222225;
}

.slider-bg-static .slides {
  height: 100%;
}

.slider-bg-static .slides > li {
  height: 100%;
}

.slider-bg-static .hero-text {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  width: 100%;
  z-index: 10;
  color: #fff;
}

/* ----------------
	Owl Slider
---------------*/

.owl-slider .owl-prev,
.owl-slider .owl-next {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #2d2d2d;
  border-radius: 100%;
  text-align: center;
  margin-top: -15px;
}

.owl-slider .owl-prev {
  left: 20px;
}

.owl-slider .owl-next {
  right: 20px;
}

.owl-slider .owl-prev .fa,
.owl-slider .owl-next .fa {
  color: #fff;
}

.owl-slider .owl-prev:hover,
.owl-slider .owl-next:hover {
  background-color: #667eea;
}

.owl-slider .owl-prev:hover .fa,
.owl-slider .owl-next:hover .fa {
  color: #fff;
}

.owl-slider .item {
  height: 500px;
}

/* ----------------
	Alert Boxes
---------------*/

.alert {
  font-family: "Oswald", sans-serif;
}

.alert-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.alert-info {
  color: #fff;
  background-color: #667eea;
  border-color: #667eea;
}

.alert-warning {
  color: #fff;
  background-color: #fdc23e;
  border-color: #fdc23e;
}

.alert-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}

.close {
  font-weight: 300;
  color: #2d2d2d;
  text-shadow: none;
}

.close:focus,
.close:hover {
  color: #2d2d2d;
  opacity: 1;
}

/* ----------------
	Theme Icons
---------------*/

.icon-view {
  padding: 15px 15px;
  border: 1px solid #e2e2e2;
  margin-left: -15px;
  margin-right: -16px;
  margin-bottom: -1px;
  color: #2d2d2d;
}

.icon-view i {
  font-size: 25px;
  vertical-align: middle;
}

.icon-view code {
  border: 1px solid #e2e2e2;
  margin-left: 2px;
  margin-right: 4px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  background-color: transparent;
  color: #2d2d2d;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 90px);
  overflow: hidden;
}

.icon-view code:hover {
  border-color: #667eea;
  color: #667eea;
}

/* ----------------
	Online Shop
---------------*/
.product {
  margin: 0 0 30px 0;
}

.p0.product {
  margin: 0;
  padding: 0;
}
.product-wrap {
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
}
.product-wrap .product-caption {
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.product-wrap:hover .product-caption {
  opacity: 1;
  visibility: visible;
}
.product-description {
  width: 100%;
  height: 100%;
}
.product-description-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -50px;
}
.product-description .product-title,
.product-description .product-subtitle {
  position: relative;
  left: 0;
  color: #fff;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.product-description .product-title {
  top: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product-description .product-title a i {
  color: #fff;
}

.product-description .product-subtitle {
  top: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.product-wrap:hover .product-description .product-title {
  opacity: 1;
  visibility: visible;
  top: 30px;
}

.product-wrap:hover .product-description .product-subtitle {
  opacity: 1;
  visibility: visible;
  top: 25px;
}

.product .product-detail {
  margin-top: 30px;
}

.product .product-detail h4 {
  font-size: 16px;
}

.old-price {
  text-decoration: line-through;
  font-weight: 600;
}

.product-slider.flexslider {
  background: transparent;
}

.product-slider .flex-control-thumbs {
  position: relative;
  bottom: auto;
  margin: 5px 0 0 0;
}

.product-slider .flex-control-thumbs > li {
  width: 25%;
  padding: 0 2px;
}

.product-slider .flex-control-thumbs > li img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.product-slider .flex-control-nav li {
  margin-bottom: 15px;
}

.single-product-des,
.product-fabric-detail {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #dddfe6;
  border-bottom: 1px solid #dddfe6;
  margin-top: 40px;
}

.single-product-qty {
  padding-top: 20px;
  padding-bottom: 20px;
  float: left;
}

.single-product-qty .qty {
  position: relative;
  float: left;
  height: 48px;
  width: 70px;
  background: transparent !important;
  border: 1px solid #dddfe6;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.single-product-qty .input-group-btn {
  margin-left: 10px;
  display: inline-block;
}

.single-product-qty .input-group-btn.input-group-btn:last-child > .btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.product-fabric-detail {
  float: left;
  width: 100%;
  margin-top: 0;
  border-bottom: 0;
}

.shop-cart {
  border-color: #ececec;
  margin-bottom: 50px;
  background: #fff;
}

.shop-cart > thead > tr > th {
  border-bottom: 1px solid #ececec;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  color: #2d2d2d;
  font-weight: 400;
  padding: 15px 20px;
  text-align: center;
  border: 1px solid #ececec;
}
.shop-cart > tbody > tr > td {
  padding: 30px 8px;
  vertical-align: middle;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  border-bottom: 1px solid;
  border-color: #ececec;
  text-align: center;
}
.shop-cart > tbody > tr > td.product-subtotal {
  color: #2d2d2d;
}
.shop-cart > tbody > tr > td.product-remove i {
  font-size: 20px;
}
.shop-cart > tbody > tr > td > a {
  color: #2d2d2d;
}
.shop-cart > tbody > tr > td > .form-control {
  width: 60px;
  padding: 0 12px;
  font-size: 13px;
  text-align: center;
  height: 45px;
  line-height: 43px;
  margin-left: auto;
  margin-right: auto;
}
.shop-cart > tbody > tr > td .cart-price {
  font-size: 14px;
}
.shop-cart > tbody > tr > td img {
  max-height: 100px;
  width: auto;
}
.shop-cart input.input-sm,
.shop-cart input.btn-sm {
  line-height: 35px;
  width: auto !important;
}
.shop-cart .coupon {
  float: left !important;
}

.payment-box {
  background: #fff;
}

.form-coupon {
  padding-left: 0 !important;
}
.form-coupon,
.summary-cart {
  padding: 25px;
}

.summary-cart {
  border-right: 1px solid #ececec;
}

.form-coupon .btn,
.form-domain .btn {
  height: 60px;
}

.order_table {
  border-radius: 0;
  border: 0;
}
.order_table td {
  padding: 8px 12px;
}
.order_table thead th {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}
.order_table tbody th,
.order_table tbody td,
.order_table tfoot td,
.order_table tfoot th {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  border-top: 1px solid #ececec !important;
}
.order_table .shipping p {
  font-size: 14px;
  font-weight: 400;
}
form.checkout_coupon,
form.login,
form.register {
  border-radius: 0;
  border-color: #ececec;
}
.order-total strong {
  font-weight: 500;
}

.checkout-form {
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 30px 5px rgba(17, 21, 23, 0.1);
}

.checkout-form .form-group label {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.checkout-form .form-group {
  float: left;
  width: 100%;
}

.checkout-form .form-control {
  padding: 20px;
  font-size: 14px;
}

.checkout-form .form-select select,
.form-select input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 20px;
}

.checkout-form .form-select:after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -12px;
  font-size: 20px;
}

.checkout-form .form-select {
  position: relative;
}

.banner-box {
  width: 100%;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.banner-box .overlay-bg-dark {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.banner-box .blue-overlay-bg {
  background: rgba(30, 192, 255, 0.82);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.man-bg {
  background: url(../images/man-img.jpg) no-repeat center center;
  background-size: cover;
}

.woman-bg {
  background: url(../images/woman-img.jpg) no-repeat center center;
  background-size: cover;
}

.help-bg {
  background: url(../images/help-img.jpg) no-repeat center center;
  background-size: cover;
}

/* ----------------
	Web Hosting
---------------*/

.domainChecker {
  margin-top: 20px;
}

.domainChecker span {
  color: #888;
  font-size: 15px;
  line-height: 20px;
  margin-right: 20px;
  position: relative;
}

.domainChecker span > input {
  border: medium none;
  cursor: pointer;
  margin: 0 6px 0 0;
  opacity: 0;
  position: relative;
  vertical-align: middle;
  z-index: 3;
}

.domainChecker span > input + label {
  background: #fff none repeat scroll 0 0;
  display: block;
  height: 15px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 15px;
  z-index: 1;
  border-radius: 2px;
}

.domainChecker span > input:checked + label:before {
  content: "\f00c";
  font-family: "fontAwesome";
  position: absolute;
  z-index: 2;
  left: 1px;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 9px;
  color: #fff;
  line-height: 15px;
  text-align: center;
}

.domainChecker span > input:checked + label {
  background: #0080ff;
  color: #fff;
}

.search-domain {
}
.search-domain h3 {
  line-height: 35px;
  margin-top: 0;
}

/* ----------------
	App Landing
---------------*/

.i-phones .img-responsive {
  width: auto;
}

.app-form .form-control:focus {
  border-color: #d9534f;
}

.app-btn {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

.error-message {
  color: #ff3333;
  font-family: Roboto;
  margin-top: 5px;
}

.success-message {
  color: #33cc33;
  font-family: Roboto;
  margin-top: 5px;
}

/* ----------------
	Gym / Fitness
---------------*/

.fitness-section {
}

.fitness-section h1 {
  font-size: 80px;
}

.schedule-wrap {
  background: #667eea;
  padding: 65px 50px;
}

.schedule-wrap ul.nav-tabs {
  border: none;
  margin-bottom: 45px;
}

.schedule-wrap .nav-tabs {
  text-align: center;
}

.schedule-wrap .nav-tabs li {
  display: inline-block;
  float: inherit;
  margin: 0;
}

.schedule-wrap .nav-tabs li a {
  background: transparent;
  border-radius: 0px;
  color: #ffffff;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 12px 25px;
  border: 1px solid #fff;
}

.schedule-wrap .nav-tabs li.active a {
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #fff;
}

.schedule-wrap .nav-tabs li.active a:hover,
.schedule-wrap .nav-tabs li a:hover {
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #fff;
}

.schedule-wrap .nav-tabs li:last-child a {
  margin-right: 0;
}

.schedule-tab ul {
  margin-top: 15px;
  padding: 15px 0 15px 10px;
  border: 1px solid #fff;
}

.schedule-tab ul li {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  width: 24.5%;
}

.schedule-tab ul li:nth-child(1) {
  padding-left: 20px;
}

.schedule-tab ul li:nth-child(2) {
  text-align: center;
}

.schedule-tab ul li:nth-child(3) {
  text-align: center;
}

.schedule-tab ul li:nth-child(4) {
  text-align: right;
}

.schedule-tab ul li:nth-child(4) a {
  background: #ffffff;
  border-radius: 30px;
  font-size: 15px;
  color: #2d2d2d;
  padding: 12px 20px;
}

.schedule-tab ul li:nth-child(4) a:hover {
  background: #2d2d2d;
  color: #ffffff;
}

#demo {
  height: 650px;
}

#demo .gradient-overlay-bg {
  height: 650px;
}

.product .preview-box {
  background: #fff;
  margin-top: 0;
  padding: 15px;
}

.terms h2 {
  position: relative;
  font-size: 30px;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.terms h2:after {
  content: "";
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  width: 80px;
  border-top: 4px solid #2d2d2d;
}

.terms p {
  margin-bottom: 25px;
}

.careers-listing {
  list-style: none;
  margin-bottom: 60px;
  margin-top: 60px;
  padding-left: 0;
}
.careers-listing h5 {
  font-size: 20px;
}
.careers-listing li {
  padding: 25px 0;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  list-style: none;
}

.career-location {
  border-left: solid 1px #868f96;
  padding-left: 13px;
}
.career-type {
  margin-right: 10px;
}
.career-details {
  text-align: right;
  padding-top: 10px;
}
.career-category {
  padding-top: 14px;
}

/* =============================================
   25.0 - Preloader
============================================= */
#loader-overlay {
  position: fixed;
  inset: 0;
  background: #004d4d;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ── Leaf icon ── */
.loader-leaf-icon {
  font-size: 42px;
  color: #94dfa6;
  animation: loaderLeafPulse 1.6s ease-in-out infinite;
  line-height: 1;
}

@keyframes loaderLeafPulse {
  0%,
  100% {
    transform: scale(1) rotate(-8deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.18) rotate(8deg);
    opacity: 0.7;
  }
}

/* ── Spinner dots ── */
.alpha-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.alpha-child {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #94dfa6;
}

.alpha-dot1 {
  animation: loaderDot 1.2s ease-in-out infinite;
}

.alpha-dot2 {
  animation: loaderDot 1.2s ease-in-out 0.4s infinite;
}

@keyframes loaderDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.4;
  }
}


/* =============================================
   Video Background Wrapper - Fit to Container
============================================= */

.parallax-img.video-background-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax-img.video-background-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-background-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

