*{
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    background-image: radial-gradient(
        circle at top center, 
        rgba(0, 239, 188, 0.25) 0%, 
        #000000 60%
    );
   background-size: 100% 800px;
   background-repeat: no-repeat;
   background-attachment: scroll !important;
    min-height: 100vh;
    color: #ffffff;
    padding-top: 0;
    margin: 0;
}

.header {    
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


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

.header .container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff; 
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* --- 4. NAVBAR LINKS --- */
.navbar {
    display: flex;
    align-items: center;
    gap: 100px; /* Space between links */
}

.nav-link {
          display: inline-block;
            align-items: center;
            gap: 0.4rem;
            padding: 0.7rem 1rem;
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 8px;
            cursor: pointer;
            white-space: nowrap;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
            color: #00efbc; 
            text-shadow: 0 0 8px rgba(0, 239, 188, 0.4); 
            font-weight: bold;
}

/* --- 5. BUTTON: DMCA --- */
.btn-dmca {
           padding: 0.3rem 0.8rem;
            background-color: #24CFA6;
            color: black;
            border: 1px solid rgba(93, 213, 184, 0.25);
            border-radius: 0.2em;
            
            font-weight: 500;
            font-size: 1.1em;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
}

.btn-dmca:hover {
          background-color: #00d1a4;
            color: #cbd5e1;
            transform: translateY(-2px);
}

/* --- 6. MOBILE MENU (HIDDEN ON DESKTOP) --- */
.menu-toggle {
    display: none; 
    
}

.hamburger {
    display: none; 
    cursor: pointer;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background-color: #162428;
    border-radius: 8px;
    padding: 10px;
    width: 45px;
    height: 45px;
    border: 1px solid #1f3a3d;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #55efc4;
    border-radius: 3px;
    transition: all 0.3s ease;  
}


/* --- NEW HERO SECTION (Centered Style) --- */
.hero-section {
    /* Transparent so the body's Green Glow shows through */
    background-color: transparent; 
    min-height: 85vh; /* Covers most of the screen */
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: center;
    position: relative;
    padding-top: 95px;
}

.hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Spreads content and stats apart */
    height: 100%;
    width: 100%;
}

/* --- TYPOGRAPHY --- */
.hero-content-center {
    text-align: center; /* Centers all text */
    max-width: 900px;
    margin-top: 10px;
}

/* The Big Headline */
.hero-content-center h1 {
    font-size: 4.5rem; /* Very large text like reference */
    line-height: 1.1;
    font-weight: 400; /* Thinner weight looks more modern */
    color: #e9e9e9;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* The "Italic" Highlight (like 'good' in your image) */
.highlight-italic {
    font-family: 'Times New Roman', serif; /* Serif font for contrast */
    font-style: italic;
    font-weight: 400;
}

/* The Teal Highlight (like 'teach' in your image) */
.highlight-color {
    color: #00efbc; /* Sheryians Teal */
    font-weight: 600;
}

/* Subtext Paragraph */
.hero-subtext {
    font-size: 1.1rem;
    color: #e9e9e9; /* Soft silver-grey */
    line-height: 1.6;
    margin-bottom: 40px;
}
.hero-btn-wrapper{
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 50px;
  margin-left: 70px;

}
/* --- LARGE BUTTON --- */
.btn-hero-large {
    background-color: #00efbc;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    
}

.btn-hero-large:hover {
    background-color: #00d1a4;
    transform: scale(1.02); /* Slight zoom on hover */
    
}
.btn-heros-large {
    background-color: #00efbc;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    
}

.btn-heros-large:hover {
    background-color: #00d1a4;
    transform: scale(1.02); /* Slight zoom on hover */
    
}




.hero-side-text {
    position: absolute; 
    right: 5%; 
    top: 55%; 
    transform: translateY(-50%); 
    
    max-width: 200px;
    text-align: left; 
    
    font-size: 0.95rem; 
    color: #e9e9e9; 
    line-height: 1.5;
}

/* --- STATS ROW (Bottom) --- */
.stats-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin-top: 30px; 
    padding-top: 10px;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: #94a3b8; 
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/*............*/

/* =========================================
   FEATURED COURSES SECTION
========================================= */
.featured-courses-section {
    padding: 60px 0;
}
.container {
  max-width: 1200px; 
  margin: 0 auto;    
  padding: 0 0.5px;   
  width: 100%;       
  box-sizing: border-box; 
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    
}

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

.course-card{
border-radius: 10px;
overflow: hidden; 
position: relative;
display: flex;
flex-direction: column;
background-color: #000;
padding-bottom: 20px;
}  
.card-image{
   height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.course-overlay{
    position:absolute;
    top:10px;
    right:5px;
    background:#ffffff;
    color:#111;
    font-weight:700;
    padding:6px 10px;
    border-radius:10px;
    font-size:12px;
    box-shadow:0 4px 8px rgba(0,0,0,0.3);
  }
.card-content{
   background-color: #0F0F0F;
    padding:15px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .card-title{
   font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
  }

.language-tag{
    background:#2c2c2c;
    display: inline-block;
    width: fit-content;
    padding:8px;
    border-radius:8px;
    font-size:13px;
    color: #e9e9e9;
    font-weight:900;
  }

.card-footer {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    background: #0F0F0F;
}
.price-group{
   margin-left: 10px;
    display:flex;
    align-items:baseline;
    gap:8px;
    font-family: 'Times New Roman', serif;
    margin-bottom: 5px;
  }

   
  .price-main{ 
    font-size:1.7rem;
    font-weight: 900;
  }

  .price-old{
  text-decoration: line-through;
  color: #636e72;
  font-size: 1.5rem;
  text-decoration-thickness: 2px;
  font-weight: 800;
  
  }

  .discount{
    background:#e9e9e9;
    color:#111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    margin-left: 60px;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 10px;
    position: absolute;
    right: 10px;
    white-space: nowrap;
  }

  .main-view{
    padding-top: 20px;
  }


  .enroll-btn {
  font-size:2rem;
  font-weight: 900;
  text-decoration: none;
  display: inline-block; 
  padding: 8px 90px;
  border-radius: 10px;
  background-color: #24cfa6;
  opacity: 95%;
  color: #000;
  margin-left: 8px;
  }


/*other codes of suggestion  bar */


.dmca-container {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  max-width: 800px; 
  margin: 0 auto;   
  padding: 60px 20px;
  
}

.dmca-container h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
  padding-top: 90px;
}

.dmca-containers h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  padding-top: 90px;
}

.dmca-box {
  
  border: 1px solid #1FA580; 
  border-radius: 8px;
  padding: 20px;
  margin: 30px auto;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: 'Inter', sans-serif;
}
.dmca-box .request-content p {
  color: #dfd8d8;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
}
.dmca-text {
  
  border: 1px solid #0e100f;
  border-left: 4px solid #1FA580;
  border-radius: 8px;
  padding: 10px;
  margin: 10px auto;
  max-width: 710px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
}

.dmca-text p {
  font-size: 15px;
  font-family: Oxygen, Verdana, Geneva, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #f80808;
  margin-bottom: 20px;
}


.request-box {
  
  border: 1px solid #1FA580;
  border-radius: 8px;
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: Arial, Helvetica, sans-serif;
}


.request-content h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
}

.request-content p {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}


.request-buttons {
  display: flex;
  flex-direction: column; 
  gap: 12px;
  min-width: 200px;
}

.req-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}


.btn-telegram {
  background-color: #1FA580;
  color: #000;
  border: 1px solid #1FA580;
}
.btn-telegram:hover {
  background-color: #178a6b;
  border-color: #178a6b;
  transform: translateY(-2px);
}


.btn-email {
  background-color: transparent;
  color: #1FA580;
  border: 1px solid #1FA580;
}
.btn-email:hover {
  background-color: rgba(31, 165, 128, 0.1); 
  transform: translateY(-2px);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 5px 0;
  text-align: left;
  flex-grow: 1; /* Pushes button to bottom */
}

.features-list li {
  color: #e0e0e0;
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check-icon {
  color: #e4f3ef;
  font-weight: bold;
}

.membership-section {

  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.section-titles {
  color: #fff;
  font-size: 2.5rem;
  padding-top: 60px;
  margin-bottom: 40px;
  font-weight: 700;
}

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


.pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  border: 2px solid #e9e9e9;
  border-radius: 10px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  
}
.discount-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  transform: rotate(45deg);
  background-color: #fd0303; 
  color: white;
  padding: 8px 40px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(255, 2, 2, 0.2);
  z-index: 10; 
}






.badge-membership {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #f7faf9;
  color: #000;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 5;
}


.card-headers h3 {
  color: #e9e9e9;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #222;
}

.strike-prices {
  color: #636e72;
  font-size: 1.5rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff0000;
  font-weight: 800;
}

.actual-prices {
  color: #e9e9e9; 
  font-size: 2rem;
  font-weight: 900;    
  line-height: 1.2;    
} 

.actual-prices small {
  font-size: 1.7rem;
  color: #636e72;
  font-weight: 700;
}

.price-label{
  display: none;
}

.actual-prics {
  color: #e9e9e9; 
  font-size: 2rem;
  font-weight: 900;    
  line-height: 1.2;    
} 

.actual-prics small {
  font-size: 1.7rem;
  color: #636e72;
  font-weight: 700;
}


.ncell-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ncell-list li {
  display: flex;
  align-items: flex-start;
 
  margin-bottom: 14px;
}

.nceli-text {
  font-size: 16px;
  color: var(--text-muted);
  padding-left: 18px;
  text-align: center;
  justify-content: center; 
}


.highlights {
  font-weight: 900;
  color: #2dffcc;
}


.plan-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  box-sizing: border-box; 
  margin-top: 80px;
  
  border: 1px solid #1FA580;
  color: #1FA580;
  background: transparent;
}

.life-btn  {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  box-sizing: border-box; 
  margin-top: 30px;
  
  border: 1px solid #1FA580;
  color: #1FA580;
  background: transparent;
}

.btn-filled {
  background-color: #1FA580;
  color: #000;
}


/* --- FOOTER STYLES --- */
.footer {
    
    padding: 20px 0 0 0;
    font-family: 'Times New Roman', Times, serif;
    border-top: 1px solid rgb(156,163,175, 0.5); 
    margin-top: 20px; 
    width: 95%;
    margin: 20px auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
  
    flex: 1;
    min-width: 250px; 
    margin-bottom: 30px;
}


.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 900;
    position: relative;
}
/* Links List */
.footer-col ul {
    list-style: none;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #e9e9e9;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-block;
}

/* Social Icons */
.social-links a {
    display: inline-block;
    height: 36px;
    width: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    
}

/* Copyright Bar */
.footer-bottom {
    
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid rgb(156,163,175, 0.5);
    margin-top: 10px;
    width: 100%;
    margin: 20px auto;
}

.footer-bottom p {
    color: #e9e9e9;
    font-size: 0.6rem;
}
