/*

TemplateMo 584 Pod Talk

https://templatemo.com/tm-584-pod-talk

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --section-bg-color: #fff5f0;
  --custom-btn-bg-color: #ff6b35;
  --custom-btn-bg-hover-color: #e55a2b;
  --dark-color: #2d3748;
  --p-color: #4a5568;
  --border-color: #ff9f7d;
  --link-hover-color: #e55a2b;

  --body-font-family: "Nunito Sans", sans-serif;
  --title-font-family: "Nunito Sans", sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

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

:root {
  --team-bg: #fef7f0;
  --team-card-bg: #ffffff;
  --team-title-color: #2d3748;
  --team-text-color: #4a5568;
  --team-accent-color: #ff6b35;
  --team-name-color: #1a202c;
  --team-role-color: #718096;
  --shadow-light: 0 8px 25px rgba(255, 107, 53, 0.15);
  --shadow-hover: 0 15px 35px rgba(255, 107, 53, 0.25);
  --border-radius: 20px;
  --approach-bg-overlay: rgba(255, 107, 53, 0.9);
  --approach-title-color: #ffffff;
  --approach-text-color: #fff5f0;
  --approach-accent: #f7931e;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

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

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

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

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

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

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-title-wrap {
  position: relative;
}

.section-title-wrap::after {
  content: "";
  background: var(--section-bg-color);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.section-title {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  padding: 10px 25px;
}

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

main {
  position: relative;
  z-index: 1;
}

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

.section-overlay {
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay+.container {
  position: relative;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

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

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

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url("../images/templatemo-wave-header.jpg"),
    linear-gradient(#348cd2, #ffffff);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  position: relative;
}

.site-header h2 {
  color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
:root {
  --color-primary: #ff6b35;
  --color-primary-light: #ff9f7d;
  --color-secondary: #f7931e;
  --color-text: #2d3748;
  --color-bg: #fff;
  --font-family-title: 'Nunito Sans', sans-serif;
  --font-family-base: 'Nunito Sans', sans-serif;
}

.gk-header {
  background: var(--team-bg);
  box-shadow: var(--shadow-light);
  padding: 1rem 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Nunito Sans', sans-serif;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.gk-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--team-title-color);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gk-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gk-nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.gk-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--team-text-color);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.gk-link:hover,
.gk-link:focus {
  color: var(--team-accent-color);
}

.gk-dropdown {
  position: relative;
}

.gk-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: var(--shadow-hover);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  min-width: 180px;
}

.gk-dropdown:hover .gk-dropdown-menu {
  display: flex;
}

.gk-dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--team-text-color);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.gk-dropdown-item:hover {
  background: var(--team-accent-color);
  color: white;
}

.gk-cta-btn {
  background: transparent;
  border: 2px solid var(--team-accent-color);
  color: var(--team-accent-color);
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.gk-cta-btn:hover {
  background: var(--team-accent-color);
  color: white;
  box-shadow: 0 0 10px var(--team-accent-color);
}

.gk-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
}

.gk-toggle::before,
.gk-toggle::after,
.gk-toggle {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--team-text-color);
  transition: all 0.3s ease;
}

.gk-toggle::before {
  top: 8px;
  left: 4px;
}

.gk-toggle::after {
  top: 16px;
  left: 4px;
}

.gk-toggle {
  top: 24px;
  left: 4px;
}

.gk-toggle:hover::before,
.gk-toggle:hover::after,
.gk-toggle:hover {
  background-color: var(--team-accent-color);
}

.gk-toggle.active::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.gk-toggle.active::after {
  transform: rotate(-45deg) translate(7px, -6px);
}

.gk-toggle.active {
  opacity: 0;
}

/* Enhanced hamburger animation */
.gk-toggle {
  transition: all 0.3s ease;
}

.gk-toggle:hover {
  transform: scale(1.1);
}

.gk-toggle.active:hover {
  transform: scale(1.1) rotate(90deg);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .gk-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--team-bg) 0%, rgba(255, 107, 53, 0.95) 100%);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    padding: 2rem;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
  }

  .gk-header.active .gk-nav {
    left: 0;
  }

  .gk-toggle {
    display: block;
    position: relative;
    z-index: 10000;
    transition: all 0.3s ease;
  }

  .gk-nav-list {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
  }

  .gk-nav-list li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }

  .gk-header.active .gk-nav-list li {
    opacity: 1;
    transform: translateY(0);
  }

  .gk-header.active .gk-nav-list li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .gk-header.active .gk-nav-list li:nth-child(2) {
    transition-delay: 0.2s;
  }

  .gk-header.active .gk-nav-list li:nth-child(3) {
    transition-delay: 0.3s;
  }

  .gk-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .gk-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .gk-link:hover::before {
    left: 100%;
  }

  .gk-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .gk-cta-btn {
    margin-top: 2rem;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: var(--team-accent-color) !important;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .gk-header.active .gk-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }

  .gk-cta-btn:hover {
    background: var(--team-accent-color);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
  }

  /* Dropdown menu for mobile */
  .gk-dropdown {
    position: relative;
  }

  .gk-dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-top: 1rem;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }

  .gk-dropdown.active .gk-dropdown-menu {
    display: flex;
  }

  .gk-dropdown-item {
    color: white !important;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }

  .gk-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
  }

  /* Mobile menu overlay */
  .gk-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .gk-nav {
    padding: 1rem;
  }

  .gk-link {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }

  .gk-cta-btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
  }

  .gk-nav-list {
    gap: 1.5rem;
  }
}



/* ------------------------------
approach-section
--------------------------------*/
.approach-section {
  position: relative;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  overflow: hidden;
}

.approach-overlay {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--approach-bg-overlay);
  padding: 12rem 2rem;
  position: relative;
}

.approach-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 147, 30, 0.9) 100%);
  z-index: 1;
}

.approach-overlay .container {
  position: relative;
  z-index: 2;
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: var(--approach-text-color);
}

.approach-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--approach-title-color);
  margin-bottom: 1rem;
}

.approach-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--approach-text-color);
}

.approach-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.pillar {
  flex: 1 1 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.pillar h3 {
  font-size: 1.3rem;
  color: var(--approach-accent);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 1rem;
  color: var(--approach-text-color);
  line-height: 1.5;
}

.btn-approach {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-approach:hover::before {
  left: 100%;
}

.btn-approach:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e0841a 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

@media (max-width: 767px) {
  .approach-pillars {
    flex-direction: column;
  }

  .approach-title {
    font-size: 2rem;
  }

  .approach-subtitle {
    font-size: 1rem;
  }
}

/*---------------------------------------
  team-section        
-----------------------------------------*/

.team-section {
  background: linear-gradient(135deg, #fef7f0 0%, #fff5f0 100%);
  padding: 6rem 1.5rem;
  font-family: 'Nunito Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.team-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-title {
  font-size: 2.5rem;
  color: var(--team-title-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.team-description {
  font-size: 1.125rem;
  color: var(--team-text-color);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: linear-gradient(135deg, #ffffff 0%, #fef7f0 100%);
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #ff6b35;
}

.team-member:hover::before {
  height: 6px;
}

.team-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--team-name-color);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: var(--team-role-color);
  font-style: italic;
  line-height: 1.4;
}

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

  .team-description {
    font-size: 1rem;
  }
}


/*---------------------------------------
  growth-focus-section         
-----------------------------------------*/

.growth-focus-section {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff9f7d 100%);
  position: relative;
  padding: 100px 20px;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--approach-title-color);
  overflow: hidden;
}

.growth-focus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px, 25px 25px, 30px 30px, 25px 25px, 20px 20px;
  z-index: 1;
}

.growth-focus-section .container {
  position: relative;
  z-index: 2;
}

.growth-overlay {
  background-color: var(--approach-bg-overlay);
  padding: 80px 20px;
  border-radius: 2rem;
}

.header-wrapper {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.growth-title {
  font-size: 2.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--approach-accent);
  margin-bottom: 14px;
  letter-spacing: 1.2px;
}

.growth-subtitle {
  font-size: 1.15rem;
  color: var(--approach-text-color);
  line-height: 1.6;
  font-weight: 400;
}

.cards-grid {
  gap: 30px;
  margin-top: 40px;
}

.growth-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: var(--border-radius);
  padding: 32px 26px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.growth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.growth-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff6b35;
}

.growth-card:hover::before {
  height: 6px;
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--team-title-color);
  margin-bottom: 14px;
}

.card-content p {
  font-size: 1rem;
  color: var(--team-text-color);
  line-height: 1.55;
}

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

  .card-content h3 {
    font-size: 1.15rem;
  }

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


/*---------------------------------------
  contact        
-----------------------------------------*/

#contact-about {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  padding: 80px 0;
  color: var(--approach-text-color);
  font-family: 'Nunito Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

#contact-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

#contact-about .container {
  position: relative;
  z-index: 2;
}

.contact-about-bg {
  background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-about-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 5px 5px, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 15px 15px, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
  background-size: 10px 10px, 15px 15px;
  z-index: 1;
}

.contact-about-bg .container {
  position: relative;
  z-index: 2;
}

.contact-about-inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-about-left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-about-title {
  font-size: 2.4rem;
  color: var(--approach-title-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-about-subtitle {
  font-size: 1.1rem;
  color: var(--approach-text-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block h3 {
  color: var(--approach-accent);
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.info-block p {
  color: var(--approach-text-color);
  font-size: 0.95rem;
}

.contact-about-form-wrapper {
  flex: 1 1 50%;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.form-title {
  font-size: 1.6rem;
  color: var(--approach-accent);
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-input,
.form-textarea {
  background-color: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 1rem;
  width: 100%;
  transition: background 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e0841a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

@media (max-width: 991px) {
  .contact-about-inner {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}



/*---------------------------------------
  insights-section        
-----------------------------------------*/

.insights-section {
  background: linear-gradient(135deg, #fef7f0 0%, #fff5f0 100%);
  padding: 8rem 20px;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--team-text-color);
  position: relative;
  overflow: hidden;
}

.insights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15px 15px, rgba(255, 107, 53, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 45px 45px, rgba(247, 147, 30, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 75px 75px, rgba(255, 107, 53, 0.06) 1px, transparent 1px);
  background-size: 30px 30px, 40px 40px, 50px 50px;
  z-index: 1;
}

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

.insights-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.insights-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--team-title-color);
  margin-bottom: 0.6em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.insights-subtitle {
  font-size: 1.2rem;
  color: var(--team-role-color);
  max-width: 580px;
  margin: 0 auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

.insight-card {
  background: linear-gradient(135deg, #ffffff 0%, #fef7f0 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid transparent;
  position: relative;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: #ff6b35;
}

.insight-card:hover::before {
  height: 6px;
}

.insight-image {
  height: 200px;
  overflow: hidden;
  display: block;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-content {
  padding: 24px 26px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.insight-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--team-accent-color);
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.insight-content h3 a:hover {
  color: #ffa726;
}

.insight-content p {
  font-size: 1rem;
  color: var(--team-text-color);
  line-height: 1.6;
  margin: 0;
}

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

  .insights-subtitle {
    font-size: 1rem;
  }
}


/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.first-section {
  background-image: url("../images/templatemo-wave-banner.jpg"),
    linear-gradient(#348cd2, #ffffff);
  background-repeat: no-repeat;
  background-size: 108% 76%;
  background-position: top;
  padding-top: 200px;
}

.owl-carousel {
  text-align: center;
}

.owl-carousel-image {
  display: block;
}

.owl-carousel .owl-item .owl-carousel-verified-image {
  display: inline-block;
  width: 30px;
  height: auto;
  position: relative;
  right: 5px;
}

.verified-image {
  display: inline-block;
  width: 20px;
  height: auto;
}

.owl-carousel .owl-item {
  opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
  opacity: 1;
}

.owl-carousel-info-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.owl-carousel-info {
  background-color: var(--section-bg-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.badge {
  background-color: var(--custom-btn-bg-color);
  font-family: var(--title-font-family);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  padding-bottom: 5px;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
  position: absolute;
  right: 0;
  bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(0);
  padding-right: 20px;
  padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
  transform: translateY(-100%);
  opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
  margin-top: 5px;
  margin-bottom: 5px;
}

.owl-carousel .owl-dots {
  background-color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  margin: auto;
  margin-top: 40px;
  padding: 15px 25px;
  padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
}

.custom-block:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-color: transparent;
  transform: translateY(-3px);
}

.custom-block-info {
  display: block;
  padding: 10px 20px;
  padding-bottom: 0;
}

.custom-block-image-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.custom-block-image-wrap>a {
  display: block;
}

.custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.custom-block-image-detail-page .custom-block-image {
  width: 100%;
  height: 212px;
}

.custom-block .custom-block-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.custom-block-icon-wrap .section-overlay {
  opacity: 0.25;
}

.custom-block-btn-group {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.custom-block-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--p-font-size);
  color: var(--white-color);
  text-align: center;
  width: 32.5px;
  height: 32.5px;
  line-height: 32.5px;
  transition: all 0.3s;
}

.custom-block-icon:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-block .custom-btn {
  font-size: var(--menu-font-size);
  padding: 7px 15px;
}

.custom-block .custom-block-info+div .badge {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50px !important;
  font-size: var(--menu-font-size);
  display: flex;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.custom-block .custom-block-info+div .badge:hover {
  background-color: var(--secondary-color);
}

.custom-block-full {
  background-color: var(--section-bg-color);
  border-color: transparent;
}

.custom-block-full:hover {
  border-color: var(--primary-color);
}

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

.custom-block-full .custom-block-image {
  width: 100%;
  height: 210px;
}

.custom-block-full .social-share {
  position: absolute;
  top: 0;
  right: 0;
  margin: 50px;
}

.custom-block-top small {
  color: var(--p-color);
  font-family: var(--title-font-family);
}

.custom-block-top .badge {
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  height: 26.64px;
  line-height: 20px;
}

.custom-block-bottom a:hover span {
  color: var(--primary-color);
}

.custom-block-bottom a span {
  font-family: var(--title-font-family);
  color: var(--p-color);
  text-transform: uppercase;
  margin-left: 3px;
}

.custom-block-overlay {
  border-color: transparent;
  padding: 0;
}

.custom-block-overlay .custom-block-image {
  margin: auto;
  width: 100%;
  height: 210px;
  transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
  padding: 15px;
  padding-bottom: 0;
}

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

/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
  margin-top: 10px;
}

.profile-block-image {
  border-radius: var(--border-radius-large);
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.profile-block p strong {
  display: block;
  font-family: var(--title-font-family);
}

.profile-detail-block {
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius-large);
  padding: 25px 35px;
}

.profile-detail-block p {
  margin-bottom: 0;
}

/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/
.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.team-thumb {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.team-info {
  background-color: var(--white-color);
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius-large);
  padding: 20px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.active>.page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
  font-family: var(--title-font-family);
  min-width: 90px;
}

.contact-info p a {
  color: var(--p-color);
  border-bottom: 1px solid;
  padding-bottom: 3px;
}

.contact-info p a:hover {
  color: var(--secondary-color);
}

.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-small);
  width: 80%;
  position: relative;
  top: 12px;
  padding: 35px;
}

.subscribe-form-wrap h6 {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  color: var(--primary-color);
  text-align: center;
  position: relative;
  bottom: 55px;
  margin-bottom: -25px;
  padding: 8px;
}

.subscribe-form #subscribe-email {
  border: 0;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.subscribe-form #submit {
  border-radius: 0 0 10px 10px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  margin-bottom: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
  border: 0;
  margin-bottom: 0;
}

.search-form button[type="submit"] {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  max-width: 50px;
  height: 100%;
  padding-left: 15px;
}

.search-form button[type="submit"]:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.geist-footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: var(--team-text-color);
  font-family: 'Nunito Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.geist-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20px 20px, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40px 40px, rgba(247, 147, 30, 0.05) 0.5px, transparent 0.5px);
  background-size: 40px 40px, 60px 60px;
  z-index: 1;
}

.geist-footer .container {
  position: relative;
  z-index: 2;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--team-title-color);
}

.footer-text {
  font-size: 1rem;
  color: var(--team-text-color);
}

.footer-input {
  border-radius: var(--border-radius);
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid #d9e1ea;
  color: var(--team-name-color);
  transition: border-color 0.3s ease;
}

.footer-input:focus {
  border-color: var(--team-accent-color);
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.25);
}

.footer-button {
  border-radius: var(--border-radius);
  background-color: var(--team-accent-color);
  border: none;
  font-weight: 600;
  padding: 12px 0;
}

.footer-button:hover {
  background-color: #2563eb;
}

.footer-link {
  color: var(--team-accent-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  border-color: var(--team-accent-color);
}

.footer-copy {
  font-size: 0.9rem;
  color: #6c7a89;
}

.footer-nav-link {
  font-size: 0.9rem;
  color: var(--team-text-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--team-accent-color);
  border-bottom-color: var(--team-accent-color);
}



/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
  .first-section {
    background-size: 100% 90%;
    /* T o o p l a t e . c o m   C u s t o m i z e d */
  }
}

@media screen and (min-width: 1600px) {
  .site-footer {
    padding-top: 250px;
  }
}

@media screen and (max-width: 1240px) {
  .first-section {
    background-size: 116%;
    /* T o o p l a t e . c o m   C u s t o m i z e d */
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .first-section {
    background-size: 160% 66%;
    /* T o o p l a t e . c o m   C u s t o m i z e d */
  }

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

  .navbar-nav {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
  }

  .navbar-nav .nav-link {
    padding: 5px 0;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .copyright-text {
    text-align: center;
  }

  .site-footer {
    margin-top: -200px;
    padding-top: 200px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 540px) {
  .first-section {
    background-size: 180% 65%;
    /* T o o p l a t e . c o m   C u s t o m i z e d */
  }

  .custom-block .custom-block-top {
    flex-direction: column;
  }

  .custom-block .custom-block-top small:last-child {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 414px) {
  .search-form {
    max-width: 200px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800;900&display=swap");

.cookie-wrapper {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  background: var(--team-card-bg);
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: var(--shadow-light);
  z-index: 999;
  border-radius: var(--border-radius);
  color: var(--team-text-color);
}

.cookie-wrapper .show {
  right: 20px;
}

@media (max-width: 772px) {
  .cookie-wrapper {
    width: 100%;
    bottom: 0;
    left: 0;
    border-radius: 0;
  }
}

.hidden {
  display: none;
}

header i {
  color: var(--team-accent-color);
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: var(--team-title-color);
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
  color: var(--team-text-color);
}

.data p a {
  color: var(--team-accent-color);
  text-decoration: none;
  text-align: center !important;
  transition: color 0.3s ease;
}

.data p a:hover {
  color: #2563eb; /* slightly darker accent for hover */
  text-decoration: underline;
}

.buttons {
  padding: 20px 0;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.buttons .cookie-button {
  border: 2px solid var(--team-accent-color);
  color: var(--team-accent-color);
  padding: 8px 0;
  background: transparent;
  cursor: pointer;
  width: 140px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.buttons .cookie-button:hover {
  background-color: var(--team-accent-color);
  color: var(--team-card-bg);
  box-shadow: var(--shadow-hover);
}

#acceptBtn {
  background-color: var(--team-accent-color);
  color: var(--team-card-bg);
}

#acceptBtn:hover {
  background-color: transparent;
  color: var(--team-accent-color);
  box-shadow: none;
}

#declineBtn {
  background-color: transparent;
  color: var(--team-accent-color);
  border-radius: var(--border-radius);
}

#declineBtn:hover {
  background-color: var(--team-accent-color);
  color: var(--team-card-bg);
  box-shadow: var(--shadow-hover);
}

#result {
  color: var(--team-accent-color);
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

/*---------------------------------------
  PAGE CONTENT STYLES              
-----------------------------------------*/
.page__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  color: var(--team-text-color);
  font-family: 'Nunito Sans', sans-serif;
}

.page__content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--team-title-color);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.3;
}

.page__content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--team-accent-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--team-accent-color);
}

.page__content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--team-title-color);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.page__content p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--team-text-color);
  line-height: 1.7;
}

.page__content ul,
.page__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page__content li {
  margin-bottom: 0.8rem;
  color: var(--team-text-color);
  line-height: 1.6;
}

.page__content strong {
  color: var(--team-title-color);
  font-weight: 600;
}

.page__content a {
  color: var(--team-accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page__content a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.page__content blockquote {
  border-left: 4px solid var(--team-accent-color);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--team-role-color);
  background-color: rgba(59, 130, 246, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

.page__content code {
  background-color: rgba(59, 130, 246, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--team-accent-color);
}

.page__content pre {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid #e9ecef;
}

.page__content pre code {
  background-color: transparent;
  padding: 0;
  color: var(--team-text-color);
}

/* Additional wrapper styles for policy pages */
.additional-wrapper {
  background-color: var(--team-card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  margin: 2rem auto;
  max-width: 900px;
  overflow: hidden;
}

/* Override Bootstrap CSS variables to remove SVG icons */
:root {
  --bs-navbar-toggler-icon-bg: none;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}

/* Custom Icons to replace Bootstrap SVG icons */
/* Dropdown arrow */
.form-select {
  background-image: none !important;
}

.form-select::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--team-text-color);
  font-size: 12px;
  pointer-events: none;
}

/* Checkbox icons */
.form-check-input[type="checkbox"] {
  background-image: none !important;
}

.form-check-input[type="checkbox"]:checked {
  background-color: var(--team-accent-color);
  border-color: var(--team-accent-color);
}

.form-check-input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Radio button icons */
.form-check-input[type="radio"] {
  background-image: none !important;
}

.form-check-input[type="radio"]:checked {
  background-color: var(--team-accent-color);
  border-color: var(--team-accent-color);
}

.form-check-input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
}

/* Close button */
.btn-close {
  background-image: none !important;
}

.btn-close::before {
  content: '×';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: currentColor;
  font-size: 18px;
  font-weight: bold;
}

/* Navbar toggler */
.navbar-toggler {
  background-image: none !important;
}

.navbar-toggler::before {
  content: '☰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: currentColor;
  font-size: 18px;
  font-weight: bold;
}

/* Accordion icons */
.accordion-button::after {
  background-image: none !important;
}

.accordion-button::after {
  content: '+';
  font-size: 18px;
  font-weight: bold;
  color: var(--team-accent-color);
}

.accordion-button:not(.collapsed)::after {
  content: '−';
}

/* Pagination arrows */
.page-link {
  background-image: none !important;
}

.page-item:first-child .page-link::before {
  content: '‹';
  font-size: 18px;
  font-weight: bold;
}

.page-item:last-child .page-link::before {
  content: '›';
  font-size: 18px;
  font-weight: bold;
}

/* Alert icons */
.alert {
  background-image: none !important;
}

.alert::before {
  content: '⚠';
  margin-right: 8px;
  font-size: 16px;
}

.alert-success::before {
  content: '✓';
  color: #198754;
}

.alert-danger::before {
  content: '⚠';
  color: #dc3545;
}

.alert-warning::before {
  content: '⚠';
  color: #ffc107;
}

.alert-info::before {
  content: 'ℹ';
  color: #0dcaf0;
}

/* Additional custom icons for better UX */
/* Loading spinner */
.spinner-border {
  background-image: none !important;
}

.spinner-border::before {
  content: '⟳';
  animation: spin 1s linear infinite;
  font-size: 1rem;
  color: currentColor;
}

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

/* Custom form elements styling */
.form-select {
  position: relative;
  padding-right: 2.5rem;
}

.form-check-input {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #dee2e6;
  border-radius: 0.25rem;
  background-color: #fff;
  transition: all 0.15s ease-in-out;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:focus {
  border-color: var(--team-accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Button improvements */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--team-accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e55a2b;
}

/* Responsive adjustments for page content */
@media (max-width: 768px) {
  .page__content {
    padding: 20px 15px;
  }
  
  .page__content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .page__content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
  
  .page__content h3 {
    font-size: 1.2rem;
  }
  
  .page__content p {
    font-size: 0.95rem;
  }
  
  .additional-wrapper {
    margin: 1rem;
    border-radius: 12px;
  }
}
