
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root {
    --primary-color: #1E2B20;
    --secondary-color: #9AE66E;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-dark: #1E2B20;
    --transition: all 0.3s ease;
    --border-radius: 25px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
    top: 0px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

#imgtest {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    padding: 5px; /* adds breathing room */
    background-color: white; /* optional, looks better with padding */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* soft shadow */
}
/* Lang switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
  }

  .lang-select {
    background-color: transparent;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .lang-select:hover {
    background-color: #ddd;
  }

  .lang-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    z-index: 1;
    border-radius: 6px;
    margin-top: 4px;
  }

  .lang-dropdown button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: background 0.2s;
  }

  .lang-dropdown button:hover {
    background-color: #f0f0f0;
  }


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
#eee {
    padding-bottom: 50px;

}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.highlight {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: #8ad55f;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: none;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

/* Header Styles */
.header {
    position: fixed;
    padding-top: 100px;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.transparent {
    background-color: transparent;
    box-shadow: none;
}

.header.scrolled {
    background-color: var(--primary-color); /* or your desired color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* optional shadow */
}

.header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}
.nav-menu{
    display: flex;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    width: 220px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

#btncon{
    display: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background-image: url(../images/mainoneimg.jpg);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 160px;
    height: 700px;
}

.hero-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 19, 12, 0.675); /* dark overlay */
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    text-align: center;
}
.any{
    width: 400px;
}
#btn{
    width: 220px;
}

#btn2{
    background-color: #fff;
}
.hero-content img{
    position: absolute;
    right: 0px;
    width: 450px;
}

.hero-text {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 500px;
}

.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.twobtn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

/* Search Bar */
.search-bar {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.search-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.search-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: #fff;
    font-family: inherit;
}

.search-btn {
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.search-btn:hover {
    background-color: #8ad55f;
}


/* Commitment Section */
.commitment {
  padding: 100px 0;
  background-color: #f7f7f7;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
}

.commitment-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.commitment-card {
  flex: 1 1 300px;
  max-width: 380px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  background-color: #fff;

  /* Base shadow + inner-style glow */
  box-shadow:
    inset 0 0 8px rgba(0, 0, 0, 0.06),    /* subtle inner border */
    0 6px 15px rgba(0, 0, 0, 0.1);       /* outer soft drop shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.commitment-card:hover {
  transform: translateY(-12px);
  box-shadow:
    inset 0 0 10px rgba(0, 0, 0, 0.08),   /* slightly stronger inner shadow */
    0 25px 40px rgba(0, 0, 0, 0.25);     /* stronger outer shadow */
}

.commitment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.4s ease, background 0.3s ease;
}

.commitment-card:hover .card-overlay {
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.6);
}

.card-tag {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

/* Timeline Section */


/* === Timeline Section === */
.timeline {
  padding: 50px 0;
  padding-top:80px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Horizontal Progress Line */
.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Glowing Active Dot Indicator */
.timeline-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transform: translate(-50%, 0);
  box-shadow: 0 0 12px rgba(154, 230, 110, 0.6); /* input-style shadow */
  transition: left 0.4s ease;
  z-index: 3;
}

/* Year Blocks */
.timeline-year {
  position: relative;
  display: inline-block;
  width: 20%;
  text-align: center;
  padding-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #999;
  font-weight: 500;
  z-index: 2;
}

.timeline-year:hover {
  color: var(--secondary-color);
  transform: scale(1.05);
}

/* Dots on the Progress Line */
.timeline-year::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(154, 230, 110, 0); /* Default no glow */
}

.timeline-year.active {
  color: var(--secondary-color);
}

.timeline-year.active::before {
  background-color: var(--secondary-color);
  box-shadow: 0 0 0 8px rgba(154, 230, 110, 0.3); /* Glow pulse */
}

/* Year Number */
.year {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Year Content - Smooth Fade In */
.year-content {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline-year.active .year-content {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  margin-top: 40px;
}

/* Services Section */
.services {
    background-color: var(--primary-color);
    color: var(--text-light);
    margin-bottom: 30px;
}

.services .section-title {
    color: var(--text-light);
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.service-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    height: 330px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Classes Section */
.classes {
    padding: 100px 0;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.class-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.class-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.class-item:hover img {
    transform: scale(1.05);
}

.classes-cta {
    text-align: center;
    margin-top: 40px;
}

/* Banner Section */
.banner {
    background-image: url('../images/skyscar.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    background-color: #f5f5f5;
    width: fit-content;
    margin: 0 auto 50px;
    padding: 5px;
    border-radius: 30px;
}

.pricing-toggle span {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
}

.pricing-toggle span.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pricing-card.featured {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-name {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
}
#imgtest{
    width: 200px;
    height: 200px;
    border-radius: 200px;
}
.price {
    font-size: 2rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: #777;
}

.pricing-card.featured .period {
    color: #ccc;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.prev-btn, .next-btn {
    background-color: var(--bg-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--secondary-color);
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.testimonial-slide.active {
    display: flex;
}


.testimonial-content {
    flex: 2;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 10px;
    position: relative;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.client-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.client-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

#btnn{
    display: none;
}
/* Community Section */
.community {
    background-image: url('../images/wars.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 19, 12, 0.8);
}

.community-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.community-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Blog Section */
.blog {
    padding: 100px 0;
}

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

.blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    background-color: var(--bg-light);
}

.blog-category {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--secondary-color);
}

.blog-link i {
    font-size: 0.8rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    background-color: var(--bg-light);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.faq-answer {
    background-color: #f5f5f5;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle .fa-plus {
    transform: rotate(45deg);
}

.faq-cta {
    text-align: center;
}

/* Partners Section */
.partners {
    background-image: url(../images/skyscar.jpg);
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 19, 12, 0.8); /* dark overlay */
}

#pcont {
    position: relative;
    z-index: 1;
}


/* Contact Form */
.contact {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

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

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
#a{
    text-decoration: underline;
    color: var(--secondary-color);
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Footer Section */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    height: 100px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    #btnn{
        display: inline;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .services-grid,
    .pricing-grid {
        flex-direction: column;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    

    
    .commitment-card {
        height: 300px;
    }
    
    .timeline-year {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .timeline-progress {
        display: none;
    }
}

@media (max-width: 950px) {
    .header-content {
        position: relative;
    }
    .hero-content img{
        display: none;
    }
    .nav-menu {
        display: flex;
        justify-content: center;
        align-items: end;
        position: absolute;
        top: -230%;
        z-index: -1;
        left: -20px;
        width: 112%;
        height: 500px;
        background-color: var(--primary-color);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    #btncon{
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text,
    .hero-image {
        flex: none;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .search-inputs {
    }
    
    .search-btn {
        width: 100%;
    }
    
    .segment-cards {
        flex-direction: column;
    }
    
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .testimonial-slide {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    #btnnone{
        display: none;
    }
    .twobtn{
        flex-direction: column;
    }
    .section-title {
        font-size: 1.8rem;
    }
      #btnn{
        display: inline;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    .service-column {
        flex-direction: column;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-logo {
        flex: 0 0 120px;
        height: 60px;
    }

    .timeline-container{
        flex-direction: column;
    
    }

    .timeline-indicator{
        display: none;
    }

}
