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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Logo Image Styles - HUGE, fixed on left, NOT movable */
.logo {
    position: fixed;
    left: 80px;
    top: 10px;
    z-index: 1002;
}

.logo-image {
    height: 280px;
    width: auto;
    display: block;
}

/* Navigation menu stays on the right */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    margin-left: auto;
    position: relative;
    z-index: 1001;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.hero-wrapper {
    text-align: center;
    width: 100%;
    padding: 100px 20px;
}

.centered-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    margin-top: 0;
    color: white;
    text-align: center;
}

.centered-title .highlight {
    color: #ffd700;
}

/* Carousel Styles */
.hero-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-card {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px !important;
}

/* Pagination (dots) below the picture */
.swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 30px;
    margin-bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
    opacity: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    color: #666;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card:nth-child(1) .service-icon { color: #3ddc84; }
.service-card:nth-child(2) .service-icon { color: #ff6b35; }
.service-card:nth-child(3) .service-icon { color: #61dafb; }
.service-card:nth-child(4) .service-icon { color: #00a8ff; }
.service-card:nth-child(5) .service-icon { color: #0faaaf; }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.contact-detail i {
    font-size: 1.5rem;
    color: #667eea;
}

.contact-detail h4 {
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: #666;
}

/* Coffee Card - Right side with logo2 - TIGHT */
.coffee-card {
    background: white;
    padding: 0.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.coffee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.support-logo {
    width: 200px;
    height: 200px;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.coffee-message {
    color: #555;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-size: 0.9rem;
}

.coffee-call {
    color: #666;
    margin-bottom: 0.75rem;
    margin-top: 0;
    font-weight: 500;
    font-size: 1.1rem;  /* Made larger */
}

.coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    padding: 12px 32px;  /* Made larger */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;  /* Made larger */
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 180, 71, 0.3);
}

.coffee-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 180, 71, 0.4);
    background: linear-gradient(135deg, #ffe44d, #ffa500);
}

.coffee-btn i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

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

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: #f0f0f0;
    color: #667eea;
}

.dropdown-menu li a i {
    font-size: 16px;
}

/* Nested Dropdown (Sub-dropdown) Styles */
.sub-dropdown {
    position: relative;
}

.sub-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sub-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.sub-dropdown:hover .sub-dropdown-toggle i {
    transform: rotate(90deg);
}

.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}

.sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.sub-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.sub-dropdown-menu li a:hover {
    background: #f0f0f0;
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Smaller logo on mobile */
    .logo-image {
        height: 180px;
    }
    
    .logo {
        left: 40px;
        top: 5px;
    }
    
    .centered-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding: 160px 0 60px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-carousel {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .carousel-card {
        max-width: 100%;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px !important;
    }
    
    .swiper-pagination {
        margin-top: 20px;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        display: inline-block;
    }

    /* Mobile nested dropdown */
    .sub-dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f0f0f0;
        padding-left: 30px;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .sub-dropdown.active .sub-dropdown-menu {
        display: block;
    }
    
    .sub-dropdown-toggle i {
        transform: rotate(0deg);
    }
    
    .sub-dropdown.active .sub-dropdown-toggle i {
        transform: rotate(90deg);
    }
}
