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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFF8DC;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Top Header */
.top-header {
    background: rgba(255, 248, 220, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 2px solid #FFB6C1;
    box-shadow: 0 2px 10px rgba(255, 105, 180, 0.1);
    overflow: visible;
    position : relative;
    z-index: 100000;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.top-header .nav-logo h2 {
    color: #FF69B4;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
    font-size: 2rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 220, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.1);
    border-bottom: 2px solid #FFB6C1;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
    z-index: 1000;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
}

.nav-link:hover {
    color: #FF69B4;
    background: rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF69B4, #FFB6C1);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FF69B4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(255, 182, 193, 0.8), rgba(230, 230, 250, 0.8)), url('assets/images/new-hero-image.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 105, 180, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #FF69B4;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    border: 3px solid #FFB6C1;
    animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.certification-badge i {
    font-size: 1.3rem;
    color: #FF69B4;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4, #FF7F7F);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.6);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    color: #FF69B4;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-style: italic;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFCCCB 100%);
    position: relative;
}

.about::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="20" cy="20" r="2" fill="%23FFB6C1" opacity="0.3"/><circle cx="80" cy="80" r="2" fill="%23FF69B4" opacity="0.3"/><circle cx="60" cy="30" r="1.5" fill="%23E6E6FA" opacity="0.4"/></svg>');
    pointer-events: none;
}

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

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    border: 5px solid #FFB6C1;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02) rotate(1deg);
}

.about-text h2 {
    color: #FF69B4;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.traits {
    margin: 2rem 0;
}

.trait {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.1);
    border: 2px solid #FFB6C1;
    transition: all 0.3s ease;
}

.trait:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.trait i {
    color: #FF69B4;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.trait span {
    font-weight: 600;
    color: #333;
}

/* Qualifications Section */
.qualifications {
    background: #FFF8DC;
}

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

.qualification-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 182, 193, 0.1));
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #FFB6C1;
    position: relative;
    overflow: hidden;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: scale(0);
}

.qualification-card:hover::before {
    transform: scale(1);
}

.qualification-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.25);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1, #E6E6FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 2;
}

.card-icon i {
    font-size: 2.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.qualification-card h3 {
    color: #FF69B4;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.qualification-card p {
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #FFCCCB 0%, #FFF8DC 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.1);
    border: 2px solid #FFB6C1;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '💖';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.service-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF69B4, #FF7F7F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: #FF69B4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Service Area Section */
.service-area {
    background: #FFF8DC;
}

.area-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.area-cities {
    max-width: 800px;
    text-align: center;
}

.area-cities h3 {
    color: #FF69B4;
    margin-bottom: 1.5rem;
}

.cities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.cities-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.1);
    border: 2px solid #FFB6C1;
    transition: all 0.3s ease;
    text-align: left;
}

.cities-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 105, 180, 0.2);
}

.cities-list i {
    color: #FF69B4;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #FFCCCB 0%, #E6E6FA 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.15);
    border: 2px solid #FFB6C1;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FFB6C1;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #FF69B4;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: #FFF8DC;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
    overflow: hidden;
    border: 2px solid #FFB6C1;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #FFB6C1, #FFCCCB);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
}

.faq-question h3 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-question i {
    color: white;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #FFCCCB 0%, #E6E6FA 100%);
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.2);
    border: 3px solid #FFB6C1;
    width: 100%;
    max-width: 800px;
}

.contact-form-container h3 {
    color: #FF69B4;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #FFB6C1;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
    transform: scale(1.02);
}

.submit-button {
    background: linear-gradient(135deg, #FF69B4, #FF7F7F);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #FFB6C1;
    text-align: center;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #555;
    font-weight: 600;
}

.contact-info i {
    color: #FF69B4;
    font-size: 1.2rem;
}

/* Interview Section */
.interview-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    position: relative;
}

.interview-section::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"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" text-anchor="middle" fill="%23FFB6C1" opacity="0.1" font-size="12">♥</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    pointer-events: none;
}

.interview-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px solid #FFB6C1;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF69B4, #FF7F7F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.step-content h4 {
    color: #FF69B4;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: white;
    font-size: 1.1rem;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF69B4, #FF7F7F);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.6);
}

/* Hide mobile language switcher on desktop */
.mobile-language-switcher {
    display: none;
}

img.nav-logo-img {
    width: auto;
    height: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow: hidden;
    }
    
    .top-header {
        padding: 0.8rem 0;
        position: relative;
        z-index: 100001;
    }
    
    .top-header-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .top-header .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    img.nav-logo-img {
        width: auto;
        height: 60px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 45px;
        flex-direction: column;
        background: linear-gradient(135deg, #FFF8DC, #FFCCCB);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 105, 180, 0.2);
        padding: 2rem 0;
        border-top: 3px solid #FFB6C1;
        gap: 1rem;
        height: calc(100vh - 120px);
        overflow-y: auto;
        z-index: 100000;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .top-header .language-switcher {
        display: none;
    }
    
    .mobile-language-switcher {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
    
    .mobile-dropdown {
        position: relative;
    }
    
    .mobile-language-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    
    .mobile-language-options {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        margin-top: 0.5rem;
        min-width: 160px;
        z-index: 100002;
    }
    
    .language-dropdown.mobile-dropdown.active .mobile-language-options {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        width: 150px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cities-list {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }

    .interview-section {
        padding: 3rem 0;
    }

    .interview-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .certification-badge {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .qualification-card,
    .contact-form-container {
        padding: 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Special Effects */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Heart Animation for Special Elements */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.heartbeat {
    animation: heartbeat 2s ease-in-out infinite;
}



/* Language Switcher */
.language-switcher {
    position: relative;
    overflow: visible;
    z-index: 100001;
}

.language-dropdown {
    position: relative;
    overflow: visible;
}

.language-btn {
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
    font-size: 0.85rem;
}

.language-btn:hover {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 105, 180, 0.4);
}

.language-btn i:last-child {
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-btn i:last-child {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 2px solid #FFB6C1;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100001;
    margin-top: 0.5rem;
}

.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 13px;
    margin: 0.2rem;
    font-weight: 600;
}

.language-option:hover {
    background: linear-gradient(135deg, #FFB6C1, #FFCCCB);
    /* color: #FF69B4; */
    color: #fff;
}

.language-option .flag {
    font-size: 1.2rem;
}

/* Enhanced Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #FFB6C1;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
    transform: scale(1.02);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #FFB6C1;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.radio-label:hover {
    background: rgba(255, 182, 193, 0.2);
    border-color: #FF69B4;
    transform: translateX(5px);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #FF69B4;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    color: #FF69B4;
    font-weight: 600;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ff6b6b;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #51cf66;
}

/* Success notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #51cf66, #69db7c);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(81, 207, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    transform: translateX(500px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.notification i {
    font-size: 1.2rem;
}

/* Mobile responsive updates for new elements */
@media (max-width: 768px) {
    .language-switcher {
        margin-top: 1rem;
    }
    
    .language-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .language-options {
        right: 0;
        left: 0;
        min-width: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .radio-group {
        gap: 0.8rem;
    }
    
    .radio-label {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        opacity: 0;
        visibility: hidden;
    }
    
    .notification.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .language-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .language-option {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .radio-label {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

/* Language transition animations */
[data-en], [data-fr] {
    transition: opacity 0.3s ease;
}

.language-switching [data-en], 
.language-switching [data-fr] {
    opacity: 0.7;
}

/* Enhanced form styling for better UX */
.contact-form-container {
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 182, 193, 0.1));
    border-radius: 35px;
    z-index: -1;
}

.form-group label {
    font-weight: 600;
    color: #FF69B4;
    margin-bottom: 0.8rem;
    display: block;
    font-size: 1rem;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(315deg);
    cursor: pointer;
}

/* Improved textarea styling */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Enhanced submit button */
.submit-button {
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 50%, #FFB6C1 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #FF69B4;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: #FF69B4;
    color: white;
    border-color: white;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Mobile responsive for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}


/* Form Validation Error Messages */
.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Loading state for submit button */
.submit-button.loading {
    background: linear-gradient(135deg, #ccc, #999);
    cursor: not-allowed;
    position: relative;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s ease infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.submit-button.loading span {
    opacity: 0;
}

/* Success message styling */
.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #c3e6cb;
    margin-top: 1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

