@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f1f5f9;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffffcc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fbbf24;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: #f1f5f9;
    color: #2563eb;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Company Info */
.company-info {
    padding: 5rem 0;
    background: #ffffff;
}

.company-info h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 2rem;
    position: relative;
}

.company-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #fbbf24;
    border-radius: 2px;
}

.company-info p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
    text-indent: 2em;
    padding: 0 1rem;
}

.core-competencies {
    margin: 2.5rem auto;
    max-width: 800px;
}

.core-competencies h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.competencies-list {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    text-indent: 0;
}

.competencies-list li {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    list-style-position: outside;
}

/* Vision Mission */
.vision-mission {
    padding: 5rem 0;
    background: #f8fafc;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.vision-card,
.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vision-card .section-title,
.mission-card .section-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.vision-card p,
.mission-card p {
    color: #555;
    line-height: 1.8;
}

/* Technology Slider */
.technology-slider {
    padding: 5rem 0;
    background: #eef2ff;
}

.sliding-container {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sliding-container .section-title {
    color: #1e40af;
    margin-bottom: 2rem;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.swiper-slide h4 {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #1e40af;
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    color: #1e40af;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #1e40af;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Live Counters */
.live-counters {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #38bdf8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #f8fafc;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
    text-align: right;
    font-size: 1.2rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e2e8f0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: #f8fafc;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-arrow-prev {
    left: -80px;
}

.carousel-arrow-next {
    right: -80px;
}

.carousel-arrow svg {
    color: #2563eb;
    transition: color 0.3s ease;
    width: 28px;
    height: 28px;
}

.carousel-arrow:hover svg {
    color: #1d4ed8;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #2563eb;
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: #64748b;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 5rem 0;
    background: #f8fafc;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Training/Services Section */
.training-section,
.services-section {
    padding: 5rem 0;
    background: white;
}

.training-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.training-card,
.service-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.training-card:hover,
.service-card:hover {
    transform: translateY(-5px);
}

.training-icon,
.service-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.training-card h3,
.service-card h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.training-card p,
.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.training-features,
.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.training-features li,
.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.training-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-features li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Careers Section */
.careers-section {
    padding: 5rem 0;
    background: white;
}

.careers-content {
    text-align: center;
    margin-bottom: 3rem;
}

.careers-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    margin-bottom: 1rem;
    color: #2563eb;
    font-size: 3rem;
}

.benefit-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

.job-listings-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.job-listings {
    display: grid;
    gap: 2rem;
}

.job-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.3rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-type {
    background: #2563eb;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-details {
    color: #666;
    margin-bottom: 1rem;
}

.job-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-requirements {
    list-style: none;
    margin-bottom: 2rem;
}

.job-requirements li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.job-requirements li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item strong {
    display: block;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Terms Section */
.terms-section {
    padding: 5rem 0;
    background: white;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-content h2 {
    color: #1e40af;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.terms-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.terms-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* Button Styles */
.btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #1e40af;
}

.submit-btn {
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e40af;
}

/* Footer */
.site-footer {
    background-color: #1e1e1e;
    color: #eee;
    padding: 4rem 0 0;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fbbf24;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column li {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column li {
    list-style: none;
}

.footer-column i {
    color: #fbbf24;
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #fbbf24;
    color: #000;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #fbbf24;
    color: #000;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #f59e0b;
}

.footer-bottom {
    background-color: #111;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #2563eb;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: #1e40af;
}

/* Mobile Navigation Styles */
@media (max-width: 767px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom, #1e3a8a, #2563eb);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 6rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0;
        display: none;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fbbf24;
    }
    
    /* Hero Section */
    .hero-slider {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    /* Company Info */
    .company-info {
        padding: 3rem 0;
    }
    
    .company-info p {
        font-size: 1rem;
        padding: 0 0.5rem;
        text-indent: 1em;
    }
    
    /* Vision Mission */
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 2rem;
    }
    
    /* Technology Slider */
    .technology-slider {
        padding: 3rem 0;
    }
    
    .sliding-container {
        padding: 2rem;
    }
    
    .swiper-slide img {
        height: 200px;
    }
    
    /* Stats */
    .live-counters {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
    }
    
    .carousel-arrow-prev {
        left: 10px;
    }
    
    .carousel-arrow-next {
        right: 10px;
    }
    
    /* Training/Services */
    .training-section,
    .services-section {
        padding: 3rem 0;
    }
    
    .training-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-card,
    .service-card {
        padding: 2rem;
    }
    
    /* Careers */
    .careers-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .job-card {
        padding: 2rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Contact */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero-slider {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Swiper */
    .swiper-slide img {
        height: 150px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Training/Service Cards */
    .training-card,
    .service-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
}