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

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    width: 100%;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Language Selection Modal */
.language-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.language-modal.active {
    display: flex;
}

.language-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.language-modal-header h2 {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 8px;
    font-weight: 700;
}

.language-modal-header p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.language-modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-lang-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #e5e6e6;
    border: 2px solid #c63f3f;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
}

.modal-lang-option:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.modal-flag {
    font-size: 28px;
}

.modal-lang-name {
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Modal Styles */
@media screen and (max-width: 968px) {
    .language-modal-content {
        padding: 25px 18px;
        width: 90%;
        max-width: 340px;
    }

    .language-modal-header h2 {
        font-size: 20px;
    }

    .language-modal-header p {
        font-size: 11px;
    }

    .modal-lang-option {
        padding: 14px 18px;
        font-size: 15px;
        gap: 12px;
    }

    .modal-flag {
        font-size: 24px;
    }
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(90deg, #a3d439 0%, #8bc34a 100%);
    color: #ffffff;
    padding: 10px 0;
    font-size: 13px;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-phone {
    display: flex;
    align-items: center;
}

.phone-number-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #70d445;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.phone-number-badge:hover {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.05);
}

.phone-number-badge i {
    font-size: 14px;
    animation: ring 2s infinite ease-in-out;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

.top-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item .icon {
    font-size: 16px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links span {
    font-weight: 500;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 43px;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop: hide language selector from main navbar */
.navbar > .language-selector {
    display: none;
}

.logo img {
    height: 85px;
    width: auto;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-icon {
    font-size: 10px;
    color: #333333;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.1);
}

.contact-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #1d4ed8;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #e5e7eb;
    border-color: #2563eb;
}

.lang-btn i:first-child {
    font-size: 16px;
    color: #2563eb;
}

.lang-btn i:last-child {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn:hover i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown,
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: #f3f4f6;
}

.lang-option.active {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 600;
}

.lang-option .flag {
    font-size: 20px;
}

/* Mobile Responsive Styles for Top Bar */
@media (max-width: 968px) {
    .top-bar {
        padding: 8px 0;
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .top-bar-content {
        flex-direction: column;
        padding: 0 15px;
        gap: 8px;
    }

    .top-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .info-item {
        font-size: 11px;
        justify-content: center;
    }

    .info-item .icon {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
        font-size: 11px;
    }

    .social-links a {
        font-size: 14px;
    }

    header {
        top: 0;
    }
}

/* Hero Banner Slider */
.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 600px;
    position: relative;
}

.banner-slide {
    width: 100%;
    height: 100%;
    display: none;
    animation: fadeIn 0.5s;
}

.banner-slide.active {
    display: block;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes fadeIn {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

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

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

.dot.active,
.dot:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Fixed Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-option.call {
    background-color: #2563eb;
}

.contact-option.whatsapp {
    background-color: #25D366;
}

/* Awards & Achievements Section */
.awards-section {
    background-color: #ffffff;
    padding-bottom: 40px;
}

.awards-header {
    background: linear-gradient(135deg, #0f6646 0%, #1a7f5e 100%);
    padding: 60px 50px;
    text-align: center;
}

.awards-header h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
}

.award-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-10px);
}

.award-item img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

/* Awards Responsive */
@media screen and (max-width: 968px) {
    .awards-header {
        padding: 40px 30px;
    }

    .awards-header h2 {
        font-size: 28px;
    }

    .awards-container {
        padding: 40px 20px 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .award-item img {
        max-height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .awards-header {
        padding: 30px 20px;
    }

    .awards-header h2 {
        font-size: 22px;
    }

    .awards-container {
        padding: 30px 15px 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .award-item img {
        max-height: 150px;
    }
}

/* About Us Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 48px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-header .text-highlight {
    color: #2563eb;
    position: relative;
}

.about-header .subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.overlay-content h3 {
    font-size: 64px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.overlay-content p {
    font-size: 18px;
    color: #ffffff;
    margin-top: 5px;
    font-weight: 300;
}

.about-text h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.info-card:hover {
    transform: translateY(-8px);
    border-top-color: #2563eb;
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.card-number {
    font-size: 40px;
    font-weight: 700;
    color: #e0e7ff;
    line-height: 1;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Responsive About Section */
@media screen and (max-width: 968px) {
    .about-section {
        padding: 30px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-header {
        margin-bottom: 30px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .about-image-wrapper img {
        height: 280px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .info-card {
        padding: 20px 12px;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 25px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-header {
        margin-bottom: 25px;
    }

    .about-header h2 {
        font-size: 24px;
    }

    .about-header .subtitle {
        font-size: 13px;
    }

    .about-grid {
        margin-bottom: 25px;
        gap: 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-image-wrapper img {
        height: 220px;
    }

    .about-text h3 {
        font-size: 19px;
    }

    .about-text p {
        font-size: 14px;
    }

    .info-card {
        padding: 18px 12px;
    }

    .card-number {
        font-size: 28px;
    }

    .info-card h4 {
        font-size: 15px;
    }

    .info-card p {
        font-size: 12px;
    }
}

/* Professional Services Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-subtitle {
    font-size: 17px;
    color: #64748b;
    font-weight: 400;
}

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

.service-card {
    position: relative;
    background: rgb(218, 215, 215);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #bbd6f2;
    overflow: hidden;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
    border-color: #2563eb;
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.service-card:hover .service-bg-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 110, 209, 0.85) 0%, rgba(59, 130, 246, 0.85) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:nth-child(even) .service-overlay {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(239, 68, 68, 0.85) 100%);
}

.service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
}

.service-card:nth-child(even):hover .service-overlay {
    background: linear-gradient(135deg, rgba(211, 107, 107, 0.95) 0%, rgba(239, 68, 68, 0.95) 100%);
}

.service-content {
    position: relative;
    z-index: 3;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: rgba(255, 255, 255, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 1);
}

.service-card h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Map Section Styles */
.map-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 42px;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: 1px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

.map-info {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.office-details {
    color: white;
}

.office-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.office-details p {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.office-details p i {
    font-size: 18px;
    width: 24px;
}

.office-details p:last-child {
    margin-bottom: 0;
}

/* Map Section Mobile Styles */
@media (max-width: 968px) {
    .map-section {
        padding: 40px 0;
    }

    .map-container {
        padding: 0 20px;
    }

    .map-header h2 {
        font-size: 28px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-info {
        padding: 25px;
    }

    .office-details h3 {
        font-size: 22px;
    }

    .office-details p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 0;
    }

    .map-header h2 {
        font-size: 24px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    .office-details h3 {
        font-size: 20px;
    }
}

/* Services Responsive */
@media screen and (max-width: 968px) {
    .services-section {
        padding: 35px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-header {
        margin-bottom: 35px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
        padding: 25px 18px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .services-section {
        padding: 30px 0;
    }

    .services-container {
        padding: 0 15px;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .services-subtitle {
        font-size: 13px;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        padding: 22px 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 13px;
    }
}

/* Registration Steps Section */
.registration-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.registration-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.registration-header {
    text-align: center;
    margin-bottom: 60px;
}

.registration-header h2 {
    font-size: 40px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.registration-header h2::before,
.registration-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: #0e7490;
}

.registration-header h2::before {
    right: calc(100% + 20px);
}

.registration-header h2::after {
    left: calc(100% + 20px);
}

.registration-header p {
    font-size: 16px;
    color: #64748b;
    margin-top: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #cbd5e1 0,
        #cbd5e1 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 0;
}

.step-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #0e7490;
    box-shadow: 0 8px 30px rgba(14, 116, 144, 0.1);
}

.step-icon {
    font-size: 48px;
    color: #0e7490;
    margin-bottom: 25px;
}

.step-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0e7490;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto;
}

/* Registration Responsive */
@media screen and (max-width: 968px) {
    .registration-section {
        padding: 35px 0;
    }

    .registration-container {
        padding: 0 20px;
    }

    .registration-header {
        margin-bottom: 35px;
    }

    .registration-header h2 {
        font-size: 28px;
    }

    .registration-header h2::before,
    .registration-header h2::after {
        width: 50px;
    }

    .steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .steps-grid::-webkit-scrollbar {
        display: none;
    }

    .steps-grid::before {
        display: none;
    }

    .step-card {
        flex: 0 0 70%;
        scroll-snap-align: start;
        padding: 25px 18px;
    }

    .step-icon {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .step-card h3 {
        font-size: 17px;
    }

    .step-card p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .registration-section {
        padding: 30px 0;
    }

    .registration-container {
        padding: 0 15px;
    }

    .registration-header {
        margin-bottom: 30px;
    }

    .registration-header h2 {
        font-size: 24px;
    }

    .registration-header h2::before,
    .registration-header h2::after {
        width: 35px;
        height: 1px;
    }

    .registration-header p {
        font-size: 13px;
    }

    .steps-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .steps-grid::-webkit-scrollbar {
        display: none;
    }

    .step-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        padding: 22px 15px;
    }

    .step-icon {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .step-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .step-card p {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media screen and (max-width: 968px) {
    .navbar {
        padding: 15px 20px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        position: static;
        transform: none;
        flex: 0 0 auto;
    }

    .logo img {
        height: 45px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        order: 3;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 50px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 20px;
        max-height: calc(100vh - 50px);
        overflow-y: auto;
    }

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

    .nav-actions {
        position: fixed;
        left: -100%;
        top: calc(50px + 240px);
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        padding: 15px 0 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    }

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

    /* Language selector visible in header on mobile */
    .navbar > .language-selector {
        display: block;
        position: static;
        order: 2;
        margin: 0 10px;
    }

    .navbar > .language-selector .lang-btn {
        padding: 8px 12px;
        font-size: 14px;
        border: 1px solid #e5e7eb;
    }

    .navbar > .language-selector .lang-btn span:first-of-type {
        display: inline;
    }

    .navbar > .language-selector .lang-dropdown {
        right: 0;
        left: auto;
        min-width: 150px;
    }

    /* Hide language selector from nav-actions on mobile */
    .nav-actions .language-selector {
        display: none;
    }

    .search-btn {
        display: none;
    }

    .contact-btn {
        width: 80%;
        margin: 0 auto;
    }

    /* Banner Slider Mobile */
    .banner-slider {
        height: 200px;
    }

    .slider-btn {
        padding: 12px 15px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        text-align: center;
    }

    .top-info {
        flex-direction: column;
        gap: 8px;
    }

    .info-item {
        font-size: 11px;
    }

    .social-links {
        gap: 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 25px 20px;
    }

    .logo img {
        height: 65px;
    }

    .hamburger span {
        width: 25px;
    }

    /* Banner Slider Extra Small Screens */
    .banner-slider {
        height: 150px;
    }

    .slider-btn {
        padding: 10px 12px;
        font-size: 16px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .top-bar {
        font-size: 11px;
    }

    .info-item {
        font-size: 10px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-contact li i {
    color: #2563eb;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    background: #0a0f1a;
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #2563eb;
}

.footer-bottom-links span {
    color: #475569;
}

/* Footer Mobile Styles */
@media (max-width: 968px) {
    .footer {
        padding-top: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
        padding-bottom: 35px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-bottom-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 30px;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 12px;
    }
}
