/*
  EnGRIDs - MyResume Style Theme
  Primary Color: #ABE7B2
  Font: Prompt, sans-serif
*/

/* ======================================
   CUSTOM PROPERTIES (VARIABLES)
   ====================================== */
:root {
  --white-color: #ffffff;
  --primary-color: #ABE7B2;
  --primary-dark: #7dd68a;
  --primary-darker: #4fba5e;
  --secondary-color: #2c3e50;
  --section-bg-color: #f0faf2;
  --dark-color: #222222;
  --p-color: #555555;
  --light-gray: #f9f9f9;
  --border-color: #e0e0e0;

  --body-font-family: 'Prompt', sans-serif;

  --h1-font-size: 48px;
  --h2-font-size: 32px;
  --h3-font-size: 24px;
  --h4-font-size: 20px;
  --h5-font-size: 18px;
  --h6-font-size: 16px;
  --p-font-size: 16px;
  --menu-font-size: 14px;
  --btn-font-size: 14px;
  --small-font-size: 13px;

  --border-radius-large: 100px;
  --border-radius-medium: 12px;
  --border-radius-small: 8px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --sidebar-width: 64px;
  --sidebar-expanded: 130px;
}

/* ======================================
   GLOBAL / RESET
   ====================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  font-size: var(--p-font-size);
  color: var(--dark-color);
  line-height: 1.7;
  overflow: visible;
  width: 100%;
}

main {
  overflow-x: hidden;
  width: 100%;
}

::selection {
  background-color: var(--primary-color);
  color: var(--dark-color);
}


/* ======================================
   TYPOGRAPHY
   ====================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a {
  color: var(--primary-darker);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

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


/* ======================================
   VERTICAL SIDEBAR NAVIGATION
   ====================================== */
.sidebar-nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 8px;
}

.sidebar-nav .nav-item {
  position: relative;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white-color);
  color: var(--p-color);
  font-size: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
  background: var(--primary-color);
  color: var(--dark-color);
  transform: scale(1.1);
}

.sidebar-nav .nav-link .nav-label {
  position: absolute;
  left: 52px;
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: var(--small-font-size);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar-nav .nav-link:hover .nav-label,
.sidebar-nav .nav-link.active .nav-label {
  opacity: 1;
  visibility: visible;
}


/* ======================================
   PAGE LOADER
   ====================================== */
#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #f0faf2 0%, #e8f5e9 50%, #f0faf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#pageLoader.loader-hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  position: relative;
  width: 160px;
  height: 160px;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 20%;
  object-fit: cover;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-ring:nth-child(1) {
  border-top-color: #1d976c;
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-ring:nth-child(2) {
  border-right-color: #ABE7B2;
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation-delay: -0.15s;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}

.loader-ring:nth-child(3) {
  border-bottom-color: #55c57a;
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation-delay: -0.3s;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }

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


/* ======================================
   HERO REVEAL ANIMATIONS (all at once)
   ====================================== */
.hero-anim {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-ready .hero-anim-1,
.hero-ready .hero-anim-2,
.hero-ready .hero-anim-3,
.hero-ready .hero-anim-4,
.hero-ready .hero-anim-5,
.hero-ready .hero-anim-6 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}


/* ======================================
   HERO SECTION
   ====================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('../images/landingpage_4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(171, 231, 178, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.hero-content .typed-wrap {
  font-size: 20px;
  color: var(--p-color);
  margin-bottom: 20px;
}

.hero-content .typed-wrap .typed-text {
  color: var(--primary-darker);
  border-bottom: 2px solid var(--primary-darker);
  padding-bottom: 2px;
}

.hero-social-links {
  display: flex;
  justify-content: center;
  gap: 80px;
  /* margin-top: 20px; */
}

.hero-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-color);
  font-size: 16px;
  transition: all 0.3s;
}

/* ======================================
   TOP HEADER NAVBAR
   ====================================== */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  /* Force small height for navbar */
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  height: 60px;
  /* Smaller container for logo */
  overflow: hidden;
}

.header-logo img {
  height: 90px;
  /* Keep original size */
  width: auto;
  object-fit: cover;
  object-position: center -10px;
  /* Adjust vertical crop */
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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


.header-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.header-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-darker);
  transition: width 0.3s ease;
}

.header-nav .nav-link:hover,
.header-nav .top-nav-link.active {
  color: var(--primary-darker);
}

.header-nav .nav-link:hover::after,
.header-nav .top-nav-link.active::after {
  width: 100%;
}

.header-nav .btn-contact {
  padding: 10px 24px;
  background: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.header-nav .btn-contact::after {
  display: none;
}

.header-nav .btn-contact:hover {
  background: var(--primary-darker);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 186, 94, 0.4);
}

/* Mobile menu styling */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--dark-color);
  padding: 0;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:focus {
  outline: none;
}

.mobile-menu-toggle:active {
  transform: scale(0.9);
}

@media (max-width: 991px) {
  .top-header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-header.scrolled {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .top-header.menu-open {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  .top-header.menu-open .header-nav {
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header-logo img {
    height: 80px;
    /* Adjusted size for mobile */
  }

  /* Show toggle button */
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
    /* Ensure visible over transparent header */
    color: var(--primary-darker);
  }

  /* Mobile menu dropdown */
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .header-nav.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-nav .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .header-nav .nav-link {
    font-size: 16px;
    display: inline-block;
  }

  .header-nav .btn-contact {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .sidebar-nav {
    display: none !important;
  }
}

/* ======================================
   HERO SOCIAL LINKS
   ====================================== */
.hero-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  font-weight: normal;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  color: #555;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-card .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.social-card i {
  font-size: 20px;
  color: #555;
  transition: color 0.4s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: #1d976c;
  /* Slight subtle theme color on hover, optional but nice. Or just keep it neutral. Let's keep it neutral as user requested "no color" */
}

.social-card:hover .icon-wrapper {
  transform: rotate(-10deg) scale(1.05);
}

.social-card:hover i {
  color: #1d976c;
}

/* ======================================
   SECTION COMMON STYLES
   ====================================== */
.section-padding {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--section-bg-color);
}

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

.section-title h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-title p {
  max-width: 700px;
  margin: 15px auto 0;
  color: var(--p-color);
  font-size: var(--p-font-size);
}


/* ======================================
   ABOUT SECTION
   ====================================== */
.about-section {
  padding-bottom: 40px;
}

.about-section .about-img {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-section .about-img img {
  width: 100%;
  object-fit: cover;
}

.about-section .about-content h3 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}

.about-section .about-content .fst-italic {
  color: var(--p-color);
  font-style: italic;
  margin-bottom: 20px;
}

.about-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.about-info-list li {
  font-size: var(--p-font-size);
  color: var(--p-color);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.about-info-list li i {
  color: var(--primary-darker);
  font-size: 12px;
  margin-top: 6px;
}

.about-info-list li strong {
  color: var(--dark-color);
  margin-right: 5px;
}


/* ======================================
   STATS SECTION
   ====================================== */
.stats-section {
  padding: 40px 0 60px;
}

.stats-item {
  text-align: center;
  padding: 30px 15px;
}

.stats-item .stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: 24px;
  margin: 0 auto 15px;
  transition: transform 0.3s;
}

.stats-item:hover .stats-icon {
  transform: scale(1.1);
}

.stats-item .stats-number {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  display: block;
  margin-bottom: 5px;
}

.stats-item .stats-label {
  font-size: var(--small-font-size);
  color: var(--p-color);
}


/* ======================================
   SKILLS SECTION
   ====================================== */
.skills-section .skill-item {
  margin-bottom: 20px;
}

.skills-section .skill-item .skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: var(--font-weight-medium);
  font-size: var(--p-font-size);
}

.skills-section .skill-bar {
  background: #e9ecef;
  border-radius: 10px;
  height: 10px;
  overflow: hidden;
}

.skills-section .skill-bar .skill-progress {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease;
}


/* ======================================
   RESUME / TIMELINE SECTION
   ====================================== */
.resume-section .resume-col h3 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
}

.resume-item {
  position: relative;
  padding: 0 0 25px 25px;
  border-left: 2px solid var(--primary-color);
}

.resume-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white-color);
  border: 2px solid var(--primary-color);
}

.resume-item h4 {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.resume-item .resume-date {
  display: inline-block;
  padding: 4px 14px;
  background: var(--section-bg-color);
  border-radius: 4px;
  font-size: var(--small-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--primary-darker);
  margin-bottom: 10px;
}

.resume-item .resume-location {
  font-style: italic;
  color: var(--p-color);
  margin-bottom: 10px;
  font-size: var(--small-font-size);
}

.resume-item p {
  font-size: var(--p-font-size);
  margin-bottom: 5px;
}

.resume-item ul {
  padding-left: 20px;
  list-style: disc;
}

.resume-item ul li {
  font-size: var(--p-font-size);
  color: var(--p-color);
  margin-bottom: 5px;
}


/* ======================================
   EVENTS / PORTFOLIO SECTION
   ====================================== */
.events-section {
  background-color: var(--white-color);
}

.custom-block {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  background: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.custom-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.custom-block-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.05);
}

.custom-block-image {
  transition: transform 0.4s ease;
  width: 100%;
}

.custom-block-info {
  padding: 20px;
}

.custom-block-info .events-title {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 10px;
  display: block;
}

.custom-block-info .events-title:hover {
  color: var(--primary-darker);
}

.custom-block-date-wrap {
  display: inline-block;
  background: var(--primary-color);
  color: var(--dark-color);
  padding: 8px 16px;
  border-radius: var(--border-radius-small);
  font-weight: var(--font-weight-medium);
  font-size: var(--small-font-size);
}

.custom-block-span {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  min-width: 90px;
  margin-right: 8px;
  display: inline-block;
}

.custom-block-icon {
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--dark-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}


/* ======================================
   MEMBERSHIP / SERVICES SECTION
   ====================================== */
.membership-section {
  background: var(--section-bg-color);
}

.service-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.service-card:hover {
  border-top-color: var(--primary-color);
  transform: translateY(-5px);
}

.service-card .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--section-bg-color);
  color: var(--primary-darker);
  font-size: 24px;
  margin: 0 auto 20px;
}

.service-card h4 {
  margin-bottom: 12px;
}

.service-card .custom-btn {
  margin-top: auto !important;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.table-responsive thead tr {
  background: var(--primary-color);
  color: var(--dark-color);
}

.table-responsive thead th {
  padding: 16px !important;
  font-weight: var(--font-weight-semibold);
  border: 0;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table-responsive tbody td,
.table-responsive tbody th {
  border: 0;
  padding: 14px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-darker);
}

.table-responsive .bi-x-circle-fill {
  color: #dc3545;
}

.membership-form {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.membership-form h4 {
  color: var(--dark-color);
}


/* ======================================
   CONTACT SECTION
   ====================================== */
.contact-section .contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-section .contact-info-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--section-bg-color);
  color: var(--primary-darker);
  font-size: 22px;
}

.contact-section .contact-info-card h5 {
  font-weight: var(--font-weight-semibold);
  margin-bottom: 4px;
}

.contact-section .contact-info-card p {
  margin-bottom: 0;
  font-size: var(--p-font-size);
}

.contact-info {
  position: relative;
}

.contact-info-item {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.contact-info-body {
  padding: 20px 30px;
}

.contact-info-body strong,
.contact-info-item a {
  color: var(--dark-color);
}

.contact-info-footer {
  background-color: var(--primary-dark);
  padding: 10px 20px;
  transition: all 0.3s;
}

.contact-info-footer:hover {
  background-color: var(--primary-darker);
}

.contact-info-footer a {
  display: block;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
}


/* ======================================
   CUSTOM FORM
   ====================================== */
.custom-form .form-control {
  border-radius: var(--border-radius-small);
  border: 1px solid var(--border-color);
  box-shadow: none;
  color: var(--dark-color);
  padding: 12px 16px;
  font-size: var(--p-font-size);
  font-family: var(--body-font-family);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.custom-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(171, 231, 178, 0.25);
}

.form-floating>label {
  padding-left: 16px;
  font-family: var(--body-font-family);
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  font-family: var(--body-font-family);
  padding: 12px 36px;
  transition: all 0.3s;
  cursor: pointer;
}

.custom-form button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(171, 231, 178, 0.4);
}

.custom-btn {
  background: var(--primary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--dark-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  font-family: var(--body-font-family);
  padding: 10px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.custom-btn:hover {
  background: var(--primary-dark);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(171, 231, 178, 0.4);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-darker);
}

.custom-border-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.custom-btn-group .link {
  color: var(--p-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--primary-darker);
}

.disabled-link {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #e0e0e0;
  color: #9e9e9e;
  border-color: #e0e0e0;
  box-shadow: none;
}

/* ======================================
   SOCIAL ICONS
   ====================================== */
.social-icon {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.social-icon-item {
  list-style: none;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--dark-color);
  font-size: var(--btn-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transition: all 0.3s;
}

.social-icon-link:hover {
  background: var(--primary-dark);
  color: var(--dark-color);
  transform: translateY(-3px);
}


/* ======================================
   SITE FOOTER
   ====================================== */
.site-footer {
  background: var(--section-bg-color);
  padding: 60px 0 30px;
  text-align: center;
}

.site-footer .footer-name {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
}

.site-footer .footer-tagline {
  font-style: italic;
  color: var(--p-color);
  max-width: 500px;
  margin: 0 auto 20px;
}

.site-footer .social-icon {
  margin-bottom: 30px;
}

.site-footer .copyright-text {
  font-size: var(--small-font-size);
  color: var(--p-color);
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.site-footer .copyright-text a {
  color: var(--primary-darker);
}

.site-footer-title {
  color: var(--primary-darker);
}

.site-footer p span {
  font-weight: var(--font-weight-medium);
  margin-right: auto;
}


/* ======================================
   BACK TO TOP BUTTON
   ====================================== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: var(--dark-color);
}


/* ======================================
   OFFCANVAS (kept for compatibility)
   ====================================== */
.offcanvas {
  background-color: var(--primary-color);
  padding: 30px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close {
  transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.member-login-form .form-control {
  border-radius: var(--border-radius-small);
  border-width: 1px;
}


/* ======================================
   NAVBAR BRAND (for footer/offcanvas)
   ====================================== */
.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--primary-darker);
}

.navbar-brand-image {
  width: 48px;
  height: 48px;
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}


/* ======================================
   SECTION BG IMAGE (Newsletter)
   ====================================== */
.section-bg-image {
  background-image: url('../images/frederik-rosar-NDSZcCfnsbY-unsplash.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
}

.section-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(171, 231, 178, 0.85);
}

.section-bg-image .container {
  position: relative;
  z-index: 2;
}

.section-bg-image-block {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-bg-image-block .input-group {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  padding: 6px 10px;
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
}

.section-bg-image-block input[type="email"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.section-bg-image-block button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--dark-color);
  max-width: 150px;
}


/* ======================================
   ANIMATED HEADLINE
   ====================================== */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--primary-darker);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  transform-origin: 50% 100%;
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  transform: rotateX(0deg);
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  transform: rotateX(180deg);
  animation: cd-rotate-1-out 1.2s;
}

@keyframes cd-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}


/* ======================================
   EVENTS LISTING/DETAIL (sub-pages)
   ====================================== */
.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px 25px;
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

/* Sub-page top nav (fallback for sub-pages) */
.navbar {
  background: var(--white-color);
  z-index: 99;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--primary-darker);
}

.navbar .navbar-brand-image {
  filter: none;
}

.sticky-wrapper {
  position: relative;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 5px;
  padding: 8px 14px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-darker);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-darker);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: 10px;
  font-style: normal;
  font-weight: normal !important;
  line-height: 1;
  vertical-align: -.125em;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
  transition: background 10ms 300ms ease;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  top: 0;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

/* Sub-page hero */
.hero-50 {
  height: auto;
  min-height: 400px;
}

.section-overlay {
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(rgba(171, 231, 178, 0.2) 0%, rgba(46, 62, 80, 0.85) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


/* ======================================
   MEMBER BLOCK
   ====================================== */
.member-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.05);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.member-block-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}


/* ======================================
   RESPONSIVE STYLES
   ====================================== */
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

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

  .hero-content {
    padding: 0 5%;
  }

  .hero-social-links {
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px !important;
  }

  .social-card {
    font-size: 14px;
    padding: 6px;
  }

  .social-card i {
    font-size: 18px;
  }

  .about-info-list {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 500px;
    padding-top: 60px;
    /* accommodate the fixed top navbar */
  }



  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 30px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .site-footer {
    padding-top: 40px;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h2.hero-title {
    font-size: 22px;
  }

  .hero-content {
    padding: 0 5%;
  }

  .hero-content p.hero-anim-2,
  .hero-content p.hero-anim-4,
  .hero-content p.hero-anim-4 small {
    font-size: 16px !important;
  }

  .hero-social-links {
    gap: 15px;
  }

  .section-bg-image-block {
    padding: 20px;
  }

  .contact-info-item {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-content h2.hero-title {
    font-size: 20px;
  }
}

/* ======================================
   TYPING GRADIENT EFFECT
   ====================================== */
.typing-gradient {
  background: linear-gradient(90deg,
      rgb(18, 105, 54) 0%,
      rgb(40, 148, 85) 35%,
      rgba(85, 197, 122, 0.7) 70%,
      rgba(171, 231, 178, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: var(--font-weight-bold);
}

.typing-cursor {
  font-weight: bold;
  color: #1d976c;
  animation: blink 1s step-end infinite;
  -webkit-text-fill-color: initial;
  transition: opacity 0.8s ease;
}

.typing-cursor.cursor-hidden {
  animation: none;
  opacity: 0;
}

@keyframes blink {

  from,
  to {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Final state after typing completes: Cycling gradient glow */
.typing-gradient.typing-finished {
  /* An equivalent cycling gradient across our green theme colors */
  background: linear-gradient(90deg,
      rgb(18, 105, 54),
      rgb(40, 180, 100),
      rgba(171, 231, 178, 0.9),
      rgb(40, 180, 100),
      rgb(18, 105, 54));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* The glow effect without needing external SVGs */
  filter: drop-shadow(0 0 6px rgba(85, 197, 122, 0.5));
  animation: cycleGradientGlow 4s linear infinite;
}

@keyframes cycleGradientGlow {
  to {
    background-position: 200% center;
  }
}

/* ======================================
   CUSTOM GALLERY NAV PILLS & GRID
   ====================================== */
.custom-nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.custom-nav-pills .nav-link {
  background-color: var(--white-color);
  color: var(--p-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.custom-nav-pills .nav-link:hover {
  background-color: rgba(29, 151, 108, 0.05);
  color: var(--primary-darker);
  border-color: var(--primary-color);
}

.custom-nav-pills .nav-link.active {
  background-color: var(--primary-darker);
  color: var(--white-color);
  border-color: var(--primary-darker);
  box-shadow: 0 6px 15px rgba(29, 151, 108, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
  background-color: #f8f9fa;
}

.gallery-img-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

/* Gallery Trigger Hover */
.gallery-trigger {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
}

.gallery-trigger:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(18, 105, 54, 0.15) !important;
}

.gallery-trigger:hover h4 {
  color: var(--primary-color) !important;
}

.gallery-trigger:active {
  transform: translateY(-2px);
}

/* Custom Modal Animation */
.gallery-modal-custom .modal-dialog {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-modal-custom.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.modal-backdrop.show {
  opacity: 0.6;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal-custom .modal-content {
  border-radius: 24px !important;
  transition: transform 0.3s ease;
}

.gallery-modal-custom .btn-close {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.gallery-modal-custom .btn-close:hover {
  transform: rotate(90deg);
  opacity: 1;
  background-color: #eee;
}

/* ======================================
   FEATURED VIDEO CARD (Our Works)
   ====================================== */
.featured-video-container {
  background: var(--white-color);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(171, 231, 178, 0.4);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.featured-video-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(171, 231, 178, 0.2) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.featured-video-container:hover {
  box-shadow: 0 30px 60px rgba(18, 105, 54, 0.12);
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 10px 15px;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(171, 231, 178, 0.15);
  color: var(--primary-darker);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(171, 231, 178, 0.3);
}

.video-info h3 {
  font-size: 26px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.featured-video-container:hover .video-info h3 {
  color: var(--primary-darker) !important;
}

.video-info p {
  color: #666;
  line-height: 1.8;
}

/* Responsiveness for the video card */
@media (max-width: 991px) {
  .featured-video-container {
    padding: 25px;
    border-radius: 20px;
  }

  .video-info {
    padding: 20px 0 0 0;
  }

  .video-info h3 {
    font-size: 22px;
  }
}

/* Section Decorative Backgrounds */
#our-works {
  position: relative;
  overflow: hidden;
}

#our-works::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(171, 231, 178, 0.1) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  z-index: -1;
  pointer-events: none;
}

#our-works::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(125, 214, 138, 0.08) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
}