* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.logo-text p {
    font-size: 0.875rem;
    color: #6b7280;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-card {
    padding: 2rem;
    border-radius: 1rem;
    color: white;
    text-align: center;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.skill-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.skill-card.reading {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.skill-card.writing {
    background: linear-gradient(135deg, #10b981, #059669);
}

.skill-card.speaking {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.skill-card.listening {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.skill-card.grammar {
    background: linear-gradient(135deg, #4d752c, #dbdf11f8);
}
.skill-card.examination {
    background: linear-gradient(135deg, #482c75, #0b2ec9);
}

.skill-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.skill-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Skills Detail Section */
.skills-detail {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

.program-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}

.program-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon.reading {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.program-icon.writing {
    background: linear-gradient(135deg, #10b981, #059669);
}

.program-icon.speaking {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.program-icon.listening {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.program-icon.skill-card.grammar {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}
.program-icon.grammar {
    background: linear-gradient(135deg, #4d752c, #dbdf11f8);
}
.program-icon.examination {
    background: linear-gradient(135deg, #482c75, #0b2ec9);
}


.program-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.program-card p {
    color: #6b7280;
    line-height: 1.6;
}
/* Coaching Section */
.coaching-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
}

.coaching-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coaching-card {
    background: rgb(252, 252, 252);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
        border-left: 5px solid #007bff
}

.coaching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
}

.coaching-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.coaching-card p {
    color: #4b5563;
    line-height: 1.6;
}


/* Teacher Section */
.teacher-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
}

.teacher-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.teacher-photo {
    position: relative;
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 12rem;
    height: 12rem;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.photo-placeholder i {
    font-size: 5rem;
    color: #9ca3af;
}
.faculty{
    height: 180px;
    border-radius: 100px;
}

.award-badge {
    position: absolute;
    top: -1rem;
    right: calc(50% - 8rem);
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.teacher-info {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.teacher-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.teacher-info p {
    color: #6b7280;
    line-height: 1.6;
}

 /* ==extra features== */
.extra-features {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.extra-features h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #007bff;
}

.feature-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #1e40af);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: #d1d5db;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #60a5fa;
    width: 1.25rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn.youtube {
    background: #dc2626;
}

.social-btn.instagram {
    background: #ec4899;
}

.social-btn.linkedin {
    background: #2563eb;
}

.social-btn.telegram {
    background: #0ea5e9;
}
.social-btn.whatsapp {
    background:#36b730;
}
.social-btn.facebook {
    background:#3050b7;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-container h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #d1d5db;
}

.contact-form select {
    color: white;
}

.contact-form select option {
    background: #1f2937;
    color: white;
}

.contact-form button {
    padding: 0.75rem;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* Copyright */
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    text-align: center;
}

.copyright p {
    color: #d1d5db;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    border-left: 4px solid #10b981;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    color: #10b981;
    font-size: 1.25rem;
}

.toast-title {
    font-weight: bold;
    color: #1f2937;
}

.toast-message {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
        top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card {
        padding: 1.5rem;
    }
    
    .skill-card i {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for skill cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-card {
    animation: fadeInUp 0.6s ease forwards;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }