/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #007bff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-hidden {
    transform: translateY(-75px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.language-switch {
    display: flex;
    gap: 5px;
    margin-right: 20px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.lang-btn.active {
    background: #00d4ff;
    color: #000;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
}

.navbar-brand img {
    height: 75px;
    margin-right: 15px;
    transition: transform 0.3s;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
}

.brand-subtitle {
    font-size: 0.8em;
    color: #ffffff;
    font-weight: 400;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin: 0 15px;
}

.navbar-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-nav a:hover {
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding-top: 89px;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn {
    display: inline-block;
    background: #0056b3;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 86, 179, 0.4);
    background: #004085;
}

.buy-btn {
    padding: 20px 40px;
    font-size: 1.2em;
    font-weight: 700;
    animation: pulse 2s infinite ease-in-out;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.buy-btn:hover {
    animation: none;
    transform: translateY(-5px) scale(1.05);
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
    text-align: center;
}

.problem, .solution, .service-card, form, .footer-content, .booking-card {
    text-align: left;
}

#problem-solution .container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.problem, .solution {
    flex: 1;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem h2, .solution h2 {
    color: #007bff;
    margin-bottom: 20px;
}

.problem p, .solution p {
    color: #666;
    margin-bottom: 20px;
}

.problem ul, .solution ul {
    list-style: none;
    padding: 0;
}

.problem li, .solution li {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem i, .solution i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2em;
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #007bff;
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background-color: transparent;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.1);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: #ffffff;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.step p {
    color: #666666;
}

/* Trust Signals */
.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.trust-item i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 10px;
}

.trust-item h3 {
    color: #333333;
    font-size: 1.1em;
    margin: 0;
}

.reviews {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #ffd700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.reviews p {
    color: #666666;
    margin: 0;
}

.counters {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.counter h2 {
    color: #007bff;
    font-size: 2.5em;
    margin: 0;
}

.counter p {
    color: #666666;
    margin: 5px 0 0 0;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.service-card h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.service-card h3 i {
    margin-right: 10px;
    font-size: 1.8em;
}

.service-card p {
    color: #666666;
    margin-bottom: 20px;
}

.service-card .price {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.trust-message {
    font-size: 0.9em;
    color: #007bff;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.discount-banner {
    text-align: center;
    padding: 20px;
    background: #e7f3ff;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.discount-banner p {
    color: #007bff;
    font-size: 1.1em;
    font-weight: 500;
    margin: 0;
}

.note {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.cta-card:hover {
    border: 3px solid #007bff;
}

.cta-card h2 {
    color: #007bff;
    margin-bottom: 20px;
}

.cta-card p {
    color: #666666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.1);
}

.trust-item i {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 15px;
}

.trust-item h3 {
    color: #333333;
    font-size: 1.2em;
    margin: 0;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reach-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.reach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.1);
}

.reach-item i {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 15px;
}

.reach-item h3 {
    color: #333333;
    font-size: 1.2em;
    margin: 0;
}

/* Testimonials Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    animation: slide 40s linear infinite;
}

.testimonial {
    flex: 0 0 100%;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 10px;
}

.testimonial p {
    color: #333333;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial span {
    color: #007bff;
    font-weight: 600;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-600%); }
}

/* Booking Trust Reach */
#booking-trust-reach {
    padding: 80px 20px;
}
.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.booking-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
}
.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 123, 255, 0.1);
}
.booking-card h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.8em;
}
.booking-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.booking-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
}
.booking-card li {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}
.booking-card i {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.2em;
    min-width: 20px;
}
.large-btn {
    padding: 20px 40px;
    font-size: 1.2em;
    font-weight: 700;
}
/* About and Contact */
#about p, #contact p, #confianza p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    color: #666666;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1em;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: #999999;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 40px 20px;
    color: #666666;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3, .footer-section h4 {
    color: #007bff;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007bff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5em;
    color: #cccccc;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.8em;
    color: #cccccc;
    margin: 5px 0;
    line-height: 1.4;
}

.service-clarification {
    font-size: 1em;
    color: #ffffff;
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

/* Policy Pages */
.policy {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.policy h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 600;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    color: #007bff;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 500;
    border-bottom: 2px solid #00d4ff;
    padding-bottom: 10px;
}

.policy-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1em;
    text-align: justify;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        /* No padding for transparent navbar */
    }
    .navbar-container {
        flex-wrap: wrap;
    }
    .language-switch {
        order: 3;
        margin: 10px 0 0 0;
        margin-right: 0;
    }
    .navbar-brand img {
        height: 75px;
    }
    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .navbar-nav li {
        margin: 10px 0;
    }
    .hamburger {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    section {
        padding: 60px 15px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .trust-container {
        grid-template-columns: 1fr;
    }
    .reviews {
        grid-column: span 1;
    }
    .counters {
        flex-direction: column;
        gap: 20px;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .booking-cards {
        grid-template-columns: 1fr;
    }
    .booking-card {
        padding: 20px;
    }
    #problem-solution .container {
        flex-direction: column;
        gap: 30px;
    }
    .service-card {
        padding: 20px;
    }
    .discount-banner {
        padding: 15px;
        margin: 15px;
    }
    .discount-banner p {
        font-size: 1em;
    }
    .cta-card {
        padding: 30px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .reach-grid {
        grid-template-columns: 1fr;
    }
    .trust-item, .reach-item {
        padding: 20px;
    }
    .trust-item i, .reach-item i {
        font-size: 2.5em;
    }
    .testimonial {
        padding: 20px 10px;
        margin: 0 5px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .founder-image {
        width: 150px;
        height: 150px;
    }
    .founder-text h2 {
        font-size: 2em;
    }
    .founder-text h3 {
        font-size: 1.5em;
    }
    .founder-text p {
        font-size: 1em;
    }
    #founder {
        padding: 60px 15px;
    }
    .policy-content h2 {
        font-size: 1.5em;
        margin-top: 40px;
    }
    .policy-content p {
        font-size: 1em;
        text-align: left;
    }
    .confirmation-page section h1 {
        font-size: 2em;
    }
    .confirmation-page section p {
        font-size: 1.1em;
    }
    .confirmation-page section .note {
        font-size: 0.9em;
        padding: 15px;
    }
    .disclaimer {
        font-size: 0.7em;
    }
    .service-clarification {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    body {
        /* No padding for transparent navbar */
    }
    .testimonial p {
        font-size: 1em;
    }
    .testimonial span {
        font-size: 0.9em;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .buy-btn {
        padding: 15px 30px;
        font-size: 1em;
    }
    section h2 {
        font-size: 2em;
    }
}

/* Background Video for Policy and Confirmation Pages */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Z-index adjustments for content visibility on video background pages */
.policy-page .policy {
    position: relative;
    z-index: 10;
}

.confirmation-page section {
    position: relative;
    z-index: 10;
}

/* Color overrides for pages with video background */
.policy-page .policy h1,
.policy-page .policy h2,
.policy-page .policy p {
    color: #ffffff;
}

.confirmation-page section h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.confirmation-page section p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-page section a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.confirmation-page section .note {
    color: #ffffff;
    font-size: 1em;
    line-height: 1.6;
    margin-top: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Founder Section */
#founder {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 80px 20px;
    text-align: center;
}

.founder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.founder-text h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.founder-text h3 {
    color: #00d4ff;
    margin-bottom: 5px;
    font-size: 1.8em;
}

.founder-text p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
}