:root {
    --primary: #1bb0ce;
    --secondary: #ff8c00;
    --dark: #0a2b5e;
    --light: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #fff;
    color: #333;
}

/* Header */
.aux-elementor-header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-area img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.site-title a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
}
.site-description {
    color: var(--secondary);
    font-size: 0.8rem;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.main-nav a:hover { color: var(--secondary); }

/* Hero Slider */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2b5e 0%, #1e4a8a 100%);
}
.slider-container {
    position: relative;
    height: 700px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}
.slide.active {
    opacity: 1;
    z-index: 1;
}
.slide-content {
    width: 50%;
    color: white;
}
.slide-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.slide-highlight {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}
.slide-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn-learn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-learn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}
.slide-image {
    width: 45%;
    text-align: center;
}
.slide-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}
.nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.nav-dot.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 10px;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 0;
    background: var(--light);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.col-image, .col-content {
    flex: 1;
}
.col-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.section-subtitle {
    color: var(--secondary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}
.section-title span {
    color: var(--primary);
}
.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Services Grid */
.services-header {
    padding: 60px 0 30px;
    text-align: center;
}
.services-grid {
    padding: 0 0 50px;
}
.services-grid .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-icon i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.service-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Premium Services */
.premium-services-section {
    background: linear-gradient(135deg, var(--dark), #1e4a8a);
    padding: 80px 0;
    color: white;
}
.premium-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.premium-services-section .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.premium-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}
.premium-card:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.02);
}
.premium-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}
.btn-primary-lg {
    background: var(--secondary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}
.btn-primary-lg:hover {
    background: #e07a00;
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    background: var(--light);
    padding: 60px 0;
    text-align: center;
}
.stats-section .row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
}
.target-audience {
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}
.contact-section .row {
    display: flex;
    gap: 50px;
}
.contact-info, .contact-form {
    flex: 1;
}
.contact-info i {
    width: 30px;
    color: var(--primary);
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.contact-form button {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}

/* Footer */
.aux-elementor-footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}
.footer-logo img {
    border-radius: 50%;
    margin-bottom: 10px;
}
.footer-links ul, .footer-contact p {
    list-style: none;
    margin-top: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
}
.footer-social a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .slide-content, .slide-image { width: 100%; text-align: center; }
    .slide { flex-direction: column; justify-content: center; }
    .slide-highlight { font-size: 2.5rem; }
}