/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}
html{
  scroll-behavior:smooth;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  padding: 10px 3vmax;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
 height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #D12127;
}

/* Hero Section Styles */
.hero {
  background-color: #f8f9fa;
  padding: 82px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: 5vmax;
  margin-bottom: 20px;
  color: #2c3e50;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #555;
}

.btn {
  display: inline-block;
  background-color: #D12127;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #9e161b;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
}

.why-choose-us h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #3498db;
  margin: 20px auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 22px;
}

.feature p {
  color: #555;
  font-size: 16px;
}

/* Courses Section */
.courses {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.courses h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
}

.courses h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #3498db;
  margin: 20px auto;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.course-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-info {
  padding: 20px;
  text-align: left;
}

.course-info h3 {
  margin: 0 0 10px 0;
  color: #2c3e50;
  font-size: 20px;
}

.course-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.course-meta span {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.live {
  background-color: #e74c3c;
  color: white;
}

.language {
  background-color: #f1c40f;
  color: #2c3e50;
}

.course-price {
  font-size: 22px;
  font-weight: bold;
  color: #2c3e50;
  margin-top: 10px;
}
.course-btn {
    font-size: 18px;
    border: none;
    padding: 6px;
    width: 100%;
    background-color: #292828;
    color: #fff;
    border-radius: 5px;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.4s;
}
.course-btn:hover{
    background-color: #000;
}
/* Footer Styles */
.site-footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-brand p {
  margin-bottom: 20px;
  color: #ecf0f1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #3498db;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #3498db;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-contact li {
  color: #bdc3c7;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-bottom p {
  color: #bdc3c7;
  font-size: 14px;
  margin: 0;
}
@media (width<700px) {
    header{
        padding-left:5px ;
        padding-right: 5px;
    }
    .logo img{
        height: 40px;
    }
}
/* Contact Page Styles */
.contact-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}

.contact-info h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info .social-links {
    margin-top: 40px;
}

.contact-info .social-links h3 {
    margin-bottom: 15px;
}

.contact-info .links {
    display: flex;
    gap: 15px;
}

.contact-info .links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    transition: var(--transition);
}

.contact-info .links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
}

.form-group label.active {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background-color: var(--white);
    padding: 0 5px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
    }
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #D12127;
    margin: 20px auto 30px;
}

.about-description {
    color: #555555;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mv-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mv-item i {
    font-size: 2rem;
    color: #D12127;
    margin-bottom: 15px;
}

.mv-item h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.mv-item p {
    color: #555555;
    font-size: 0.95rem;
}

.core-values {
    text-align: left;
    margin: 50px 0;
    padding: 0 20px;
}

.core-values h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.core-values ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.core-values li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555555;
}

.core-values i {
    color: #D12127;
    position: absolute;
    left: 0;
    top: 3px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #D12127;
    display: block;
    line-height: 1;
}

.label {
    font-size: 0.9rem;
    color: #555555;
    display: block;
    margin-top: 5px;
}

.cta-box {
    background-color: #D12127;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
}

.cta-box h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-box .btn {
    background-color: #ffffff;
    color: #D12127;
}

.cta-box .btn:hover {
    background-color: rgba(255,255,255,0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats {
        grid-template-columns: 1fr;
    }
    
    .core-values {
        padding: 0;
    }
}

/* @media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .why-choose-us, .courses {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links h3::after, 
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
} */
