/* Base & Reset */
:root {
  /* Professional teal/blue color scheme */
  --primary-color: #2a9d8f;
  --primary-dark: #287771;
  --secondary-color: #264653;
  --accent-color: #e9c46a;
  --accent-light: #f4a261;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --text-color: #343a40;
  --light-text: #6c757d;
  --border-color: rgba(0, 0, 0, 0.1);
  --success-color: #38b2ac;
  --gradient-primary: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);

  --font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --button-radius: 6px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light-text);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Buttons & Common Elements */
.primary-btn,
.hero-btn,
.submit-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--button-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.primary-btn:hover,
.hero-btn:hover,
.submit-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.hero-btn {
  padding: 14px 28px;
  font-size: 1.1rem;
  margin-top: 20px;
}

.section-badge {
  display: inline-block;
  background-color: rgba(42, 157, 143, 0.1);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

/* Logo */
.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background-color: white;
  box-shadow: var(--shadow-sm);
}

header.scrolled {
  box-shadow: var(--shadow);
}

.header-top {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a {
  color: white;
  margin-left: 20px;
}

.header-top a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.header-top-contact {
  display: flex;
}

.header-main {
  padding: 20px 0;
  background-color: white;
}

.header-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navigation ul {
  display: flex;
}

.main-navigation ul li {
  margin: 0 15px;
}

.main-navigation ul li a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.main-navigation ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.main-navigation ul li a:hover:after,
.main-navigation ul li a.active:after {
  width: 100%;
}

.main-navigation ul li a:hover {
  color: var(--primary-color);
}

.header-btn a {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--button-radius);
  font-weight: 500;
  transition: var(--transition);
}

.header-btn a:hover {
  background-color: var(--primary-dark);
  color: white;
}

.mobile-menu-button {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: var(--transition);
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  text-align: right;
  font-size: 24px;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--text-color);
}

.mobile-menu-logo {
  text-align: center;
  margin-bottom: 30px;
}

.mobile-navigation ul li {
  margin: 15px 0;
}

.mobile-navigation ul li a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

.mobile-navigation ul li a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  margin-top: 0;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
}

.slider-item {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-item.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 70, 83, 0.7);
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 55px !important;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
}

.slider-controls button {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-controls button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: white;
}

/* Features Section */

.features-section {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.features-section h2 {
  /* font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px; */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--primary-color);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  filter: invert(47%) sepia(73%) saturate(433%) hue-rotate(133deg)
    brightness(88%) contrast(86%);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature-card p {
  font-size: 15px;
  color: var(--light-text);
}

/* Styling list items */
.feature-card ul {
  text-align: left;
  padding-left: 20px;
  list-style-type: disc;
}

.feature-card ul li {
  font-size: 15px;
  color: var(--light-text);
  margin-bottom: 5px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.badge-content {
  display: flex;
  align-items: center;
}

.badge-content i {
  margin-right: 10px;
}

.about-content {
  border: 2px solid var(--primary-color); /* Adding border */
  padding: 30px;
  border-radius: 10px; /* Rounded corners */
  background-color: white;
  text-align: center;
  box-shadow: var(--shadow); /* Optional for better visibility */
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--dark-text);
}

/* .about-content p::before {
  content: "Our ";
  font-weight: bold;
  color: var(--primary-color);
} */

.feature-list {
  margin-bottom: 30px;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--light-text);
}

.feature-list li i {
  width: 24px;
  height: 24px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
}

.membership-section {
  padding: 80px 0;
  text-align: center;
  background: var(--background-color);
}

.membership-section h2 {
  /* font-size: 34px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px; */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  width: 280px;
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background: var(--light-background);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.step::before {
  content: "";
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
}

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 70px;
  height: 70px;
  stroke: var(--primary-color);
  fill: none;
}

.step p {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.5;
}

/* Step Number */
.step-number {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--background-color);
  text-align: center;
}

.section-header h2 {
  /* font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 50px; */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border: 3px solid var(--primary-color);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: 0.3s ease-in-out;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.service-content p {
  font-size: 15px;
  color: var(--light-text);
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

.primary-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-color);
  border-radius: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.primary-btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Founder Section */
.founder-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: center;
}

.founder-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.founder-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}

.founder-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.founder-content p {
  margin-bottom: 20px;
  color: var(--light-text);
}

/* Events Section */
.events-section {
  padding: 80px 0;
  background-color: white;
}

.events-carousel {
  position: relative;
  overflow: hidden;
}

.events-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.event-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.event-date {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: white;
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.event-content {
  padding: 20px;
}

.event-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.event-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
}

.event-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.event-link:hover i {
  transform: translateX(5px);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.carousel-controls button {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-controls button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.carousel-dots {
  display: flex;
  margin: 0 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #e2e2e2;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary-color);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-image: url("https://images.unsplash.com/photo-1617396900799-f4ec2b43c7ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.stats-section .overlay {
  background-color: rgba(
    38,
    70,
    83,
    0.85
  ); /* Using secondary color with high opacity */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 3;
}

.stat-card {
  display: flex;
  align-items: center;
  color: white;
}

.stat-icon {
  font-size: 36px;
  margin-right: 20px;
  color: var(--accent-color);
}

.stat-content .stat-number {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-content .stat-number:after {
  content: "+";
}

.stat-content p {
  font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonial-img {
  flex: 0 0 100px;
  position: relative;
  margin-right: 30px;
}

.testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.testimonial-quote {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.testimonial-text {
  flex: 1;
}

.testimonial-author {
  margin-bottom: 15px;
}

.testimonial-author h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--light-text);
}

.testimonial-text p {
  font-size: 16px;
  color: var(--light-text);
  font-style: italic;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-controls button {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin: 0 10px;
}

.testimonial-controls button:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-image: url("https://images.unsplash.com/photo-1516156008625-3a9d6067fab5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-section .overlay {
  background-color: rgba(
    38,
    70,
    83,
    0.9
  ); /* Using secondary color with opacity */
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 3;
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-right: 20px;
}

.contact-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-list li i {
  width: 30px;
  height: 30px;
  background-color: rgba(42, 157, 143, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-list li a {
  color: var(--text-color);
}

.contact-list li a:hover {
  color: var(--primary-color);
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 16px;
  transition: var(--transition);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--button-radius);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn i {
  margin-right: 10px;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
  color: white;
}

/* Footer Section */
.footer-section {
  padding: 30px 0;
  background-color: white;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social ul {
  display: flex;
}

.footer-social ul li {
  margin-right: 15px;
}

.footer-social ul li a {
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social ul li a:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-copyright p {
  font-size: 14px;
}

.footer-copyright a {
  font-weight: 500;
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
}

/* Toast Message */
.toast-message {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: var(--text-color);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  font-weight: 500;
  min-width: 300px;
  max-width: 400px;
  transition: bottom 0.5s ease;
  z-index: 9999;
  border-left: 3px solid var(--success-color);
}


.toast-message.active {
    display: block;
    opacity: 1;
    bottom: 30px;
}

/* Styles for success message */
.toast-message.success {
    background-color: #4CAF50; /* Green background for success */
    color:#fff;
}

/* Styles for error message */
.toast-message.error {
    background-color: #f44336; /* Red background for error */
     color:#fff;
}

.toast-progress {
  width: 100%;
  height: 4px;
  background-color: #f3f3f3;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

.toast-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--success-color);
  animation: progress 5s linear forwards;
}

@keyframes progress {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* Media Queries */
@media screen and (max-width: 991px) {
  .header-top-contact {
    display: none;
  }

  .header-top .container {
    justify-content: center;
  }

  .main-navigation {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .event-card {
    flex: 0 0 calc(50% - 20px);
  }

  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-image {
    margin: 0 auto;
    max-width: 250px;
  }

  .founder-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-social,
  .footer-logo,
  .footer-copyright {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .section-header h2 {
    font-size: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    bottom: -10px;
    right: -10px;
    padding: 10px;
  }

  .event-card {
    flex: 0 0 calc(100% - 20px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-img {
    margin: 0 auto 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 0 20px 0;
  }

  .contact-list li {
    justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    justify-content: center;
  }
}

.service-icon svg {
  width: 28px !important;
  height: 28px !important;
  color: white !important; /* or use fill/stroke as needed */
}

.submit-btn:disabled {
    background-color: #ccc; /* Gray background for the disabled state */
    cursor: not-allowed; /* Change cursor to indicate it's not clickable */
    opacity: 0.6; /* Slightly transparent */
}