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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Offline/Online Notifications */
.offline-notification {
    animation: slideDown 0.3s ease-out;
}

.online-notification {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.offline-notification .offline-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

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

/* Navigation Wrapper */
.navbar-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-wrapper.scrolled .quick-info-bar {
    transform: translateY(-100%);
}

/* Quick Info Bar */
.quick-info-bar {
    background: linear-gradient(135deg, #0d3393 0%, #1e40af 100%);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
    text-align: center;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    transition: transform 0.3s ease;
}

.quick-info-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.quick-info-item i {
    color: #60a5fa;
    font-size: 0.75rem;
}

/* Navigation */
.navbar {
    background: rgba(13, 51, 147, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    max-height: 40px;
    width: auto;
}

.company-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #60a5fa;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-cta {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

/* Mobile CTA - hidden on desktop */
.mobile-cta {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0d3393 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    padding-top: 118px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1.2;
    padding: 0;
    text-align: left;
    margin: 0;
}

.hero-image {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #60a5fa;
    color: #fff;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #60a5fa;
}

.btn-secondary:hover {
    background: #60a5fa;
    transform: translateY(-2px);
}

/* Training section button overrides */
.training-card .btn-secondary {
    background: transparent;
    color: #0d3393;
    border: 2px solid #0d3393;
}

.training-card .btn-secondary:hover {
    background: #0d3393;
    color: #fff;
    transform: translateY(-2px);
}

.training-card .btn-primary {
    background: #0d3393;
    color: #fff;
    border: 2px solid #0d3393;
}

.training-card .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 51, 147, 0.3);
}

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 150px;
    right: 50px;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 50px;
    left: 100px;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    color: #60a5fa;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d3393;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #0d3393;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d3393;
}

.stat span {
    color: #6b7280;
    font-size: 0.9rem;
}

.tech-stack-compact {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-stack-compact h4 {
    color: #0d3393;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.25rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(135deg, #0d3393 0%, #1e40af 100%);
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid #1e40af;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 51, 147, 0.3);
    background: linear-gradient(135deg, #1e40af 0%, #60a5fa 100%);
    border-color: #60a5fa;
}

.tech-tag i {
    color: #fff;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 51, 147, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d3393, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0d3393;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Careers Section */
.careers {
    padding: 100px 0;
    background: #f8fafc;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.careers-text h3 {
    font-size: 2rem;
    color: #0d3393;
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    padding: 0.5rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list i {
    color: #60a5fa;
}

.job-openings {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-openings h3 {
    color: #0d3393;
    margin-bottom: 1.5rem;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item h4 {
    color: #374151;
}

.job-type {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Trainings Section */
.trainings {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 50%, #f1f5f9 100%);
}

/* Training Courses Container */
.training-courses {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Course Card Styles */
.course-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 51, 147, 0.15);
}

/* Course specific accent colors */
.development-course {
    border-left: 5px solid #3b82f6;
}

.qa-course {
    border-left: 5px solid #10b981;
}

.ai-course {
    border-left: 5px solid #8b5cf6;
}

/* Course Header */
.course-header {
    display: flex;
    align-items: center;
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.course-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.development-course .course-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.qa-course .course-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.ai-course .course-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.course-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.course-meta {
    flex: 1;
}

.course-meta h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.course-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.course-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.course-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    color: #475569;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.course-stats i {
    color: #64748b;
}

/* Course Content */
.course-content {
    padding: 0 2.5rem 2.5rem;
}

.course-description {
    margin-bottom: 2rem;
}

.course-description p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Curriculum Section */
.course-curriculum {
    margin-bottom: 2rem;
}

.course-curriculum h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.curriculum-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #e2e8f0;
}

.development-course .topic-item {
    border-left-color: #3b82f6;
}

.qa-course .topic-item {
    border-left-color: #10b981;
}

.ai-course .topic-item {
    border-left-color: #8b5cf6;
}

.topic-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.topic-item span {
    color: #475569;
    font-weight: 500;
}

/* Technologies Section */
.course-technologies {
    margin-bottom: 2rem;
}

.course-technologies h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-technologies .tech-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e293b;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 41, 59, 0.3);
}

.tech-tag i {
    font-size: 1rem;
}

/* Training Features Section */
.training-features {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.training-features h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

.course-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.course-details {
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Course Price Section */
.course-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px solid transparent;
}

.development-course .course-price {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.qa-course .course-price {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.ai-course .course-price {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.price i {
    color: #10b981;
    font-size: 1.1rem;
}

.btn-enroll {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d3393, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #0d3393;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: #0d3393;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #60a5fa;
}

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

/* Thank You Page Styles */
.thank-you-section {
    min-height: calc(100vh - 120px);
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #10b981;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thank-you-details {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #3b82f6;
}

.thank-you-details p {
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.thank-you-details ul {
    list-style: none;
    text-align: left;
}

.thank-you-details li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 25px;
}

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

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.thank-you-actions .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.thank-you-actions .btn-secondary:hover {
    background: #3b82f6;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quick-info-bar .container {
        gap: 2rem;
    }
    
    .quick-info-item {
        font-size: 0.8rem;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 2rem 1.5rem;
    }
    
    .course-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .curriculum-topics {
        grid-template-columns: 1fr;
    }
      .tech-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .quick-info-bar {
        display: none;
    }

    .navbar-wrapper {
        top: 0;
    }

    .hero {
        padding-top: 80px;
    }

    .hamburger {
        display: flex;
    }    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(13, 51, 147, 0.1);
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-cta {
        display: block !important;
        margin-top: 1rem;
    }

    .nav-cta {
        display: none;
    }    .hero {
        padding-top: 80px;
        height: 100vh;
    }    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 15px;
        height: calc(100vh - 80px);
    }

    .hero-content {
        flex: none;
        text-align: center;
        padding: 0;
        position: static;
    }

    .hero-image {
        flex: none;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-content,
    .careers-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }    .stats {
        justify-content: center;
    }

    .tech-stack-compact {
        padding: 1rem;
    }

    .tech-tags {
        gap: 0.5rem;
    }

    .tech-tag {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .services-grid,
    .training-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .company-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }    .hero-container {
        padding: 2rem 10px;
        height: calc(100vh - 80px);
    }

    .hero-content {
        flex: none;
        text-align: center;
        padding: 0 5px;
        position: static;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .company-name {
        font-size: 1rem;
        max-width: 150px;
        white-space: normal;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for smooth transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design for Training Section */
@media (max-width: 1024px) {
    .course-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 2rem 1.5rem;
    }
    
    .course-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
      .curriculum-topics {
        grid-template-columns: 1fr;
    }
    
    .tech-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trainings {
        padding: 60px 0;
    }
    
    .training-courses {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .course-card {
        margin: 0 -1rem;
    }
    
    .course-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .course-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .course-icon {
        width: 60px;
        height: 60px;
    }
    
    .course-icon i {
        font-size: 1.8rem;
    }
    
    .course-meta h3 {
        font-size: 1.5rem;
    }
    
    .course-subtitle {
        font-size: 1rem;
    }
      .course-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .course-price {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .price {
        justify-content: center;
        font-size: 1.2rem;
    }
    
    .course-stats span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .curriculum-topics {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .topic-item {
        padding: 0.6rem;
    }
      .tech-tags {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .tech-tag {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .course-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .training-features {
        padding: 2rem 1.5rem;
    }
    
    .training-features h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .course-meta h3 {
        font-size: 1.3rem;
    }
    
    .course-subtitle {
        font-size: 0.9rem;
    }
      .course-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .course-price {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .price {
        justify-content: center;
        font-size: 1.1rem;
    }
      .course-technologies .tech-stack {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .training-features h3 {
        font-size: 1.5rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
}
