@charset "UTF-8";
/*
 * Tish Cricket Club HTML Template
 * Version 1.0
 * Copyright 2025
 */

/* ============================================
   CSS VARIABLES & COLOR SCHEME
   ============================================ */
:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2b2b2b;
  --accent-green: #7fb685;
  --accent-green-hover: #6fa575;
  --light-green: #a8d5ae;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
  --text-muted: #808080;
  --border-color: #3a3a3a;
  --overlay-dark: rgba(26, 26, 26, 0.85);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================
   CONTAINER & GRID
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  max-width: 100%;
}

.row.align-items-center {
  align-items: center;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.col-lg-8 { width: 66.666%; }
.col-lg-12 { width: 100%; }
.col-md-4 { width: 33.333%; }
.col-md-6 { width: 50%; }
.col-md-12 { width: 100%; }
.col-sm-6 { width: 50%; }
.col-sm-12 { width: 100%; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.cricket-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(127, 182, 133, 0.1);
}

.cricket-header.scrolled {
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.cricket-header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.cricket-header .logo img {
  height: 50px;
  width: auto;
}

.wrap_nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.mainmenu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.mainmenu ul li {
  position: relative;
  margin: 0 20px;
}

.mainmenu ul li a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  display: block;
  transition: color 0.3s ease;
}

.mainmenu ul li a:hover {
  color: var(--accent-green);
}

.mainmenu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-dark);
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  flex-direction: column;
}

.mainmenu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mainmenu ul li .sub-menu li {
  margin: 0;
  padding: 0;
}

.mainmenu ul li .sub-menu li a {
  padding: 10px 20px;
  font-size: 14px;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.header-btn .btn-join {
  background-color: var(--accent-green);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-green);
}

.header-btn .btn-join:hover {
  background-color: transparent;
  color: var(--accent-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--text-light);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
  padding: 80px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.85));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 0;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary-cricket {
  background-color: var(--accent-green);
  color: var(--text-light);
  border-color: var(--accent-green);
}

.btn-primary-cricket:hover {
  background-color: transparent;
  color: var(--accent-green);
  border-color: var(--accent-green);
}

.btn-secondary-cricket {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-secondary-cricket:hover {
  background-color: var(--text-light);
  color: var(--primary-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--accent-green);
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background-color: rgba(127, 182, 133, 0.15);
  color: var(--accent-green);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--text-light);
}

.section-description {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   TEAM MEMBERS SECTION
   ============================================ */
.team-members-section {
  padding: 100px 0;
  background-color: var(--secondary-dark);
}

.team-grid {
  margin-top: 40px;
}

.team-card {
  background-color: var(--primary-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(127, 182, 133, 0.2);
}

.team-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.team-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  background-color: var(--accent-green);
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  background-color: rgba(26, 26, 26, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

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

/* ============================================
   JOIN CTA SECTION
   ============================================ */
.join-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.join-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.join-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(127, 182, 133, 0.3));
  z-index: 2;
}

.join-cta-section .container {
  position: relative;
  z-index: 3;
}

.join-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.join-description {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-join-now {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-dark);
}

.btn-join-now:hover {
  background-color: transparent;
  border-color: var(--text-light);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 0;
  background-color: var(--primary-dark);
}

.about-images {
  position: relative;
  padding: 30px;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--accent-green);
}

.about-image-main img {
  width: 100%;
  border-radius: 17px;
}

.about-image-small {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--accent-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-badge {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}

.badge-icon {
  width: 100px;
  height: 100px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-light);
  box-shadow: 0 5px 20px rgba(127, 182, 133, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.about-content {
  padding-left: 20px;
}

.about-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  margin-bottom: 30px;
}

.about-features li {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.about-features li i {
  color: var(--accent-green);
  margin-right: 12px;
  font-size: 18px;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-green);
}

.author-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-light);
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.btn-read-more {
  background-color: var(--accent-green);
  color: var(--text-light);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background-color: var(--accent-green-hover);
  transform: translateX(5px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
  background-color: var(--secondary-dark);
}

.feature-card {
  background-color: var(--primary-dark);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-green);
  box-shadow: 0 10px 40px rgba(127, 182, 133, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: rgba(127, 182, 133, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--accent-green);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--accent-green);
  color: var(--text-light);
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.feature-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   STATS & JOIN PROCESS SECTION
   ============================================ */
.stats-join-section {
  padding: 100px 0;
  background-color: var(--primary-dark);
}

.stats-images {
  position: relative;
  padding: 30px;
}

.stats-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.stats-image-main img {
  width: 100%;
  border-radius: 20px;
}

.stats-image-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 250px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--accent-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stats-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-dark);
  padding: 20px 30px;
  border-radius: 12px;
  border: 2px solid var(--accent-green);
  text-align: center;
}

.stats-badge h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 5px;
}

.stats-badge span {
  font-size: 13px;
  color: var(--text-gray);
}

.join-process {
  padding-left: 30px;
}

.process-steps {
  margin-top: 40px;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--text-light);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.step-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  padding: 100px 0;
  background-color: var(--secondary-dark);
}

.testimonial-content {
  padding-right: 30px;
}

.testimonial-quote {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.testimonial-author .author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-green);
}

.author-details h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text-light);
}

.author-details span {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-rating i {
  color: #FFD700;
  font-size: 18px;
}

.rating-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

.testimonial-image {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--accent-green);
}

.testimonial-image img {
  width: 100%;
  height: auto;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  padding: 100px 0;
  background-color: var(--primary-dark);
}

.blog-card {
  background-color: var(--secondary-dark);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(127, 182, 133, 0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-green);
  color: var(--text-light);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--accent-green);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  padding: 80px 0;
  background-color: var(--secondary-dark);
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-light);
  line-height: 1.3;
}

.btn-cta-final {
  background-color: var(--accent-green);
  color: var(--text-light);
  padding: 16px 45px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-green);
}

.btn-cta-final:hover {
  background-color: transparent;
  color: var(--accent-green);
}

/* ============================================
   FOOTER
   ============================================ */
.cricket-footer {
  background-color: #0d0d0d;
  color: var(--text-gray);
}

.footer-main {
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--accent-green);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-light);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-gray);
}

.footer-contact li i {
  color: var(--accent-green);
  margin-top: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  font-size: 14px;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

.newsletter-text {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  background-color: var(--secondary-dark);
  color: var(--text-light);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--accent-green);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  background-color: var(--accent-green);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--accent-green-hover);
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom .row {
  align-items: center;
}

.copyright {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-links li a {
  font-size: 14px;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: var(--accent-green);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.pt-80 { padding-top: 80px; }
.pb-60 { padding-bottom: 60px; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  body, html {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .row {
    margin: 0 -10px;
  }

  [class*="col-"] {
    padding: 0 10px;
  }

  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8 {
    width: 50%;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 36px;
  }

  .mainmenu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(26, 26, 26, 0.98);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 999;
    backdrop-filter: blur(10px);
  }

  .mainmenu.active {
    display: block;
  }

  .mainmenu ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .mainmenu ul li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .mainmenu ul li a {
    padding: 15px 10px;
    display: block;
    width: 100%;
  }

  .mainmenu ul li .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(43, 43, 43, 0.5);
    display: none;
    padding: 0;
  }

  .mainmenu ul li .sub-menu.active {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-btn {
    display: none;
  }

  .about-content,
  .join-process,
  .testimonial-content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .container {
    padding: 0 10px;
  }

  .row {
    margin: 0 -10px;
  }

  [class*="col-"] {
    padding: 0 10px;
  }

  .col-md-4,
  .col-md-6,
  .col-md-3,
  .col-md-7 {
    width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .join-title,
  .cta-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  #about .col-12,
  .stats-join-section .col-lg-5,
  .stats-join-section .col-lg-7 {
    width: 100% !important;
    padding: 0 50px !important;
  }
}

@media (max-width: 576px) {
  .col-sm-6 {
    width: 100%;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .about-image-small {
    width: 150px;
  }

  .stats-badge {
    padding: 15px 20px;
  }

  .stats-badge h3 {
    font-size: 30px;
  }
}

.fa.fa-twitter::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    content: "";
    background-color: currentColor;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 -8 26 30" xmlns="http://www.w3.org/2000/svg"><g><path fill="white" d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></g></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 -8 26 30" xmlns="http://www.w3.org/2000/svg"><g><path fill="white" d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></g></svg>') no-repeat center;
    background-position: center 3px;
}
