* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f3f0ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, #1e1b4b 0%, #2d1b69 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(45, 27, 105, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid rgba(167, 139, 250, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(167, 139, 250, 0.3));
    transition: all 0.3s ease;
    will-change: transform, filter;
}

.logo-icon:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 16px rgba(167, 139, 250, 0.5));
}

.logo h2 {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: #d1d5db;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #a78bfa, #c4b5fd);
    border-radius: 2px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #a78bfa;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #7C3AED;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.68) 0%, rgba(109, 40, 217, 0.68) 100%), url('../images/hero-bg.jpg.png') center/contain no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

.btn-primary {
    background: #f3f0ff;
    color: #7C3AED;
}

.btn-primary:hover {
    background: #f3e8ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #f3f0ff 0%, #faf5ff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path fill="%23f3f0ff" d="M0,32L48,42.7C96,53,192,75,288,80C384,85,480,75,576,69.3C672,64,768,64,864,64C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #f3f0ff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #ede9fe;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7C3AED, #A78BFA, #6D28D9);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
    border-color: #c4b5fd;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #7C3AED;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 50%, #6D28D9 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    blur: blur(100px);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* About Page */
.about-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #f3f0ff 0%, #faf5ff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
    object-fit: cover;
    border: 3px solid rgba(167, 139, 250, 0.3);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.2);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.about-text h3 {
    color: #7C3AED;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.about-text p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #ddd6fe;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent);
    border-radius: 50%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.1);
}

.stat-card h4 {
    font-size: 2.5rem;
    color: #7C3AED;
    margin-bottom: 10px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.stat-card p {
    color: #6b7280;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Services Page */
.services {
    padding: 60px 0;
    background: linear-gradient(180deg, #faf5ff 0%, #f3f0ff 100%);
}

.services h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f3f0ff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.08);
    border: 1px solid #ede9fe;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(124, 58, 237, 0.1));
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
    border-color: #c4b5fd;
}

.service-card h3 {
    color: #7C3AED;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.service-card li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    color: #4b5563;
    font-weight: 500;
}

.service-card li:before {
    content: "✓";
    color: #7C3AED;
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Contact Page */
.contact {
    padding: 60px 0;
    background: linear-gradient(180deg, #f3f0ff 0%, #faf5ff 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: #f3f0ff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.08);
    border: 1px solid #ede9fe;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: #7C3AED;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f3e8ff;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h4 {
    color: #7C3AED;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-item p {
    color: #4b5563;
    line-height: 1.8;
}

.contact-form {
    background: #f3f0ff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.08);
    border: 1px solid #ede9fe;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #ede9fe;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #faf5ff;
    color: #1f2937;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7C3AED;
    background: #f3f0ff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e1b4b 0%, #2d1b69 100%);
    color: white;
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::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 1440 120"><path fill="rgba(167,139,250,0.05)" d="M0,32L48,42.7C96,53,192,75,288,80C384,85,480,75,576,69.3C672,64,768,64,864,64C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #a78bfa;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #a78bfa;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    color: #9ca3af;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.country-dropdown div:hover {
  background: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(124, 58, 237, 0.12);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .features h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .service-card,
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}
