/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #F5F5F5; /* Soft White */
    background: #1A3C34; /* Deep Teal */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    color: #FFD700; /* Golden Yellow */
    text-decoration: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 60, 52, 0.95); /* Deep Teal with opacity */
    padding: 20px 20px; /* Increased vertical padding for taller navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.5rem; /* Fallback if image fails */
    font-weight: 600;
    color: #F5F5F5;
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px; /* Increased logo size */
    height: 60px;
    object-fit: contain; /* Ensures the logo scales properly */
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1); /* Slight zoom on hover for interactivity */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-size: 1rem;
    color: #F5F5F5;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover {
    color: #1A3C34;
    background: #FFD700;
    transform: translateY(-2px);
}

/* Coffee Button */
.coffee-button {
    position: absolute;
    right: 20px;
}

.coffee-button a {
    font-size: 1rem;
    color: #1A3C34;
    background: #FFD700;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.coffee-button a:hover {
    transform: scale(1.1);
    background: #E6C200;
}

/* Hamburger Menu Styling */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F5F5F5;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 60, 52, 0.95);
    min-width: 180px;
    z-index: 10;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #F5F5F5;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background: #FFD700;
    color: #1A3C34;
}

/* Highlight Active Section in Nav */
.nav-links li a[href="#home"]:target,
.nav-links li a[href="#projects"]:target,
.nav-links li a[href="#about"]:target,
.nav-links li a[href="#order-now"]:target,
.nav-links li a[href="#contact"]:target,
.nav-links li a[href="#stats-facts"]:target,
.nav-links li a[href="#testimonials"]:target,
.nav-links li a[href="#achievements"]:target,
.nav-links li a[href="#visualizations"]:target,
.nav-links li a[href="#game"]:target,
.nav-links li a[href="#service"]:target,
.nav-links li a[href="#resume"]:target {
    color: #1A3C34;
    background: #FFD700;
}

/* Moving Contact Info Below Navbar */
.contact-info {
    background: #FFD700;
    color: #1A3C34;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 80px; /* Adjust based on navbar height */
    width: 100%;
    z-index: 999;
}

.contact-info p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive Navigation with Hamburger Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(26, 60, 52, 0.95);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        justify-content: flex-start;
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        padding: 12px;
        font-size: 1.1rem;
    }

    .dropdown-content {
        position: static;
        transform: none;
        background: rgba(255, 215, 0, 0.1);
        box-shadow: none;
        display: none;
        opacity: 1;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content li {
        margin-left: 20px;
    }

    .dropdown-content a {
        padding: 10px;
        font-size: 1rem;
    }

    .nav-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 40px; /* Adjusted for mobile */
        height: 40px;
    }

    .coffee-button {
        position: static; /* Reset absolute positioning for mobile */
        margin-top: 10px;
    }

    .contact-info {
        top: 60px; /* Adjust for mobile navbar height */
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 15px; /* Slightly smaller padding for very small screens */
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 10px;
    }

    .dropdown-content a {
        font-size: 0.9rem;
    }

    .coffee-button a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .contact-info {
        font-size: 0.8rem;
    }
}

/* Hero Section with Banner */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1A3C34 0%, #14332C 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Video Background */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInVideo 2s forwards;
    z-index: -1;
}

@keyframes fadeInVideo {
    from { opacity: 0; }
    to { opacity: 0.8; }
}

/* Animated Images */
.banner-images {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-img {
    position: absolute;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.banner-img-1 {
    top: 10%;
    left: 10%;
    animation: slideInLeft 1s forwards 0.5s;
}

.banner-img-2 {
    bottom: 10%;
    right: 10%;
    animation: slideInRight 1s forwards 1s;
}

.banner-img-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateInCenter 1.5s forwards 1.5s;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes rotateInCenter {
    from { opacity: 0; transform: translate(-50%, -50%) rotate(-45deg); }
    to { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
}

/* Overlay Content (hero-content) */
.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(26, 60, 52, 0.7); /* Slight background for readability */
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #F5F5F5;
    margin-bottom: 20px;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FFD700;
    animation: expand 1s forwards;
}

.hero-content p {
    font-size: 1.5rem;
    color: #F5F5F5;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #FFD700;
    color: #1A3C34;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
    animation: bounce 2s infinite;
}

.cta-button:hover {
    transform: scale(1.1);
    background: #E6C200;
}

.whatsapp-cta {
    background: #25D366;
    color: #fff;
}

.whatsapp-cta:hover {
    background: #20BD57;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Services and Contact Section */
.services-contact {
    padding: 80px 20px;
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.services-left, .services-right {
    flex: 1;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.services table {
    width: 100%;
    border-collapse: collapse;
}

.services table th,
.services table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #FFD700;
    color: #F5F5F5;
}

.services table th {
    background: #FFD700;
    color: #1A3C34;
    font-weight: 600;
}

.contact-me {
    text-align: center;
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-buttons a {
    padding: 10px 20px;
    background: #FFD700;
    color: #1A3C34;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-buttons a:hover {
    transform: scale(1.1);
    background: #E6C200;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Projects Preview Section */
.projects-preview {
    padding: 80px 20px;
    background: #1A3C34;
}

.section-title {
    font-size: 3rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    animation: waveText 1s forwards;
    animation-delay: 0.2s;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FFD700;
    animation: expand 1s forwards;
}

@keyframes waveText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expand {
    from { width: 0; }
    to { width: 50px; }
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeScale 0.8s forwards;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }
.project-card:nth-child(4) { animation-delay: 0.8s; }
.project-card:nth-child(5) { animation-delay: 1.0s; }
.project-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.project-card p {
    color: #F5F5F5;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    color: #FFD700;
    font-weight: 600;
}

.project-link:hover {
    text-decoration: underline;
}

.view-all {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #FFD700;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

/* Payment Methods Section */
.payment-methods {
    padding: 50px 20px;
    background: #14332C;
}

.payment-icons {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icon {
    perspective: 1000px;
    width: 150px;
    height: 60px;
    position: relative;
    opacity: 0;
    animation: fadeScale 0.8s forwards;
}

.payment-icon:nth-child(1) { animation-delay: 0.2s; }
.payment-icon:nth-child(2) { animation-delay: 0.4s; }
.payment-icon:nth-child(3) { animation-delay: 0.6s; }
.payment-icon:nth-child(4) { animation-delay: 0.8s; }
.payment-icon:nth-child(5) { animation-delay: 1.0s; }

.payment-front, .payment-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.payment-front {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-size: 1.2rem;
}

.payment-back {
    background: rgba(255, 215, 0, 0.2);
    color: #F5F5F5;
    font-size: 0.9rem;
    transform: rotateY(180deg);
}

.payment-icon:hover .payment-front {
    transform: rotateY(-180deg);
}

.payment-icon:hover .payment-back {
    transform: rotateY(0deg);
}

/* Rate Cards Section */
.rate-cards {
    padding: 80px 20px;
    background: #1A3C34;
}

.rate-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.rate-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: zoomIn 0.8s forwards;
}

.rate-card:nth-child(1) { animation-delay: 0.2s; }
.rate-card:nth-child(2) { animation-delay: 0.4s; }
.rate-card:nth-child(3) { animation-delay: 0.6s; }
.rate-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.rate-card:hover {
    transform: scale(1.05);
    animation: shake 0.5s ease infinite;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.rate-card h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.rate-card p {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.rate-card ul {
    list-style: none;
    color: #F5F5F5;
}

.rate-card ul li {
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #1A3C34;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    color: #F5F5F5;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.2s;
    text-align: center;
}

.about-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 20px;
}

/* Stats Facts Section */
.stats-facts {
    padding: 100px 20px;
    background: #14332C;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stats-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: popIn 0.8s forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stats-card:nth-child(1) { animation-delay: 0.2s; }
.stats-card:nth-child(2) { animation-delay: 0.4s; }
.stats-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8) rotate(-5deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.stats-card p {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stats-reveal {
    display: block;
    font-size: 1rem;
    color: #F5F5F5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.stats-card:hover .stats-reveal {
    opacity: 1;
    transform: translateY(0);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

.stats-card:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #1A3C34;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.testimonial:nth-child(1) { animation-delay: 0.2s; }
.testimonial:nth-child(2) { animation-delay: 0.4s; }
.testimonial:nth-child(3) { animation-delay: 0.6s; }

.testimonial p {
    font-size: 1.2rem;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.testimonial span {
    display: block;
    font-size: 1rem;
    color: #FFD700;
}

.testimonial:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Achievements Section */
.achievements {
    padding: 100px 20px;
    background: #14332C;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.achievement-badge {
    text-align: center;
    opacity: 0;
    animation: bounceIn 0.8s forwards;
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.achievement-badge:nth-child(1) { animation-delay: 0.2s; }
.achievement-badge:nth-child(2) { animation-delay: 0.4s; }
.achievement-badge:nth-child(3) { animation-delay: 0.6s; }
.achievement-badge:nth-child(4) { animation-delay: 0.8s; }

@keyframes bounceIn {
    from { opacity: 0; transform: scale(0.5); }
    50% { transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

.badge-icon {
    font-size: 3rem;
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}

.achievement-badge:hover {
    transform: rotate(5deg);
}

.achievement-badge:hover .badge-icon {
    transform: rotate(360deg);
}

.achievement-badge p {
    font-size: 1rem;
    color: #F5F5F5;
}

/* Game Section */
.game {
    padding: 80px 20px;
    background: #1A3C34;
    position: relative;
    overflow: hidden;
}

.game p {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    color: #F5F5F5;
}

.game-container {
    position: relative;
    height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.data-point {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: float 5s infinite ease-in-out;
}

.data-point:nth-child(1) { animation-delay: 0s; }
.data-point:nth-child(2) { animation-delay: 1s; }
.data-point:nth-child(3) { animation-delay: 2s; }
.data-point:nth-child(4) { animation-delay: 3s; }
.data-point:nth-child(5) { animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.data-reveal {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.8);
    color: #1A3C34;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-point:hover {
    transform: scale(1.2);
}

.data-point:hover .data-reveal {
    opacity: 1;
}

/* Visualizations Section */
.visualizations {
    padding: 100px 20px;
    background: #1A3C34;
}

.visualizations-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.viz-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0;
    animation: fadeScale 0.8s forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.viz-card:nth-child(1) { animation-delay: 0.2s; }
.viz-card:nth-child(2) { animation-delay: 0.4s; }
.viz-card:nth-child(3) { animation-delay: 0.6s; }

.viz-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.viz-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.5);
    color: #1A3C34;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    font-weight: 600;
    transform: scale(0.9);
}

.viz-card:hover .viz-image {
    transform: scale(1.2);
    filter: brightness(1.2);
}

.viz-card:hover .viz-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Order Now Section (Enhanced) */
.order-now {
    padding: 80px 20px;
    background: #1A3C34;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-form .form-group {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    width: 100%;
}

.order-form .form-group:nth-child(1) { animation-delay: 0.2s; }
.order-form .form-group:nth-child(2) { animation-delay: 0.4s; }
.order-form .form-group:nth-child(3) { animation-delay: 0.6s; }
.order-form .form-group:nth-child(4) { animation-delay: 0.8s; }
.order-form .form-group:nth-child(5) { animation-delay: 1.0s; }
.order-form .form-group:nth-child(6) { animation-delay: 1.2s; }

.order-form label {
    display: block;
    margin-bottom: 5px;
    color: #F5F5F5;
    font-size: 1rem;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 215, 0, 0.1);
    color: #F5F5F5;
    font-size: 1rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.order-form input[type="file"] {
    color: #F5F5F5;
}

.order-form textarea {
    resize: vertical;
    min-height: 150px;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: #F5F5F5;
    opacity: 0.7;
}

.order-form small {
    display: block;
    margin-top: 5px;
    color: #F5F5F5;
    font-size: 0.8rem;
}

.order-form button {
    padding: 15px 30px;
    background: #FFD700;
    color: #1A3C34;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    align-self: center;
}

.order-form button:hover {
    transform: scale(1.05);
    background: #E6C200;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #1A3C34;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
    color: #F5F5F5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.2s;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 215, 0, 0.1);
    color: #F5F5F5;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 215, 0, 0.2);
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form button {
    padding: 15px;
    background: #FFD700;
    color: #1A3C34;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
    background: #E6C200;
}

/* Social Media Styles */
.social-media {
    text-align: center;
    margin-top: 30px;
}

.social-media h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.social-media ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.social-media li {
    transition: transform 0.3s ease;
}

.social-media li:hover {
    transform: scale(1.1);
}

.social-media img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Section Divider */
.section-divider {
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23FFD700" d="M0,0 L1440,0 L1440,50 Q720,100 0,50 Z"/></svg>') no-repeat center;
    background-size: cover;
    animation: wave 5s infinite linear;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1440px 0; }
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background: #1A3C34;
    color: #F5F5F5;
}

/* Resume Section */
.resume {
    padding: 80px 20px;
    background: #1A3C34;
}

.resume-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.resume-part {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume-part:nth-child(1) { animation-delay: 0.2s; }
.resume-part:nth-child(2) { animation-delay: 0.4s; }
.resume-part:nth-child(3) { animation-delay: 0.6s; }
.resume-part:nth-child(4) { animation-delay: 0.8s; }

.resume-part:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.resume-part h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 10px;
    text-align: center;
}

.resume-part table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.resume-part table th,
.resume-part table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #FFD700;
    color: #F5F5F5;
}

.resume-part table th {
    background: #FFD700;
    color: #1A3C34;
    font-weight: 600;
}

.resume-part ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.resume-part ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: #F5F5F5;
}

.resume-part ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2rem;
}

.resume .cta-button {
    display: block;
    margin: 30px auto 0;
    padding: 15px 30px;
    background: #FFD700;
    color: #1A3C34;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.resume .cta-button:hover {
    transform: scale(1.1);
    background: #E6C200;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
        min-height: 80vh;
    }

    .banner {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .banner-img {
        width: 150px;
        height: 100px;
    }

    .banner-img-1 {
        top: 5%;
        left: 5%;
    }

    .banner-img-2 {
        bottom: 5%;
        right: 5%;
    }

    .banner-img-3 {
        top: 60%;
    }

    .services {
        flex-direction: column;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        padding: 15px;
    }

    .payment-icons {
        flex-direction: column;
        gap: 15px;
    }

    .payment-icon {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .rate-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rate-card {
        padding: 15px;
    }

    .about-image {
        width: 200px;
        height: 266px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-card {
        padding: 20px;
    }

    .achievements-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .game-container {
        height: 300px;
    }

    .data-point {
        width: 40px;
        height: 40px;
    }

    .data-reveal {
        font-size: 0.8rem;
        padding: 8px;
    }

    .visualizations-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .viz-image {
        height: 150px;
    }

    .order-form input,
    .order-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .order-form textarea {
        min-height: 120px;
    }

    .order-form button {
        padding: 12px 25px;
    }

    .contact-form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .contact-form textarea {
        height: 120px;
    }

    .contact-form button {
        padding: 12px 25px;
    }

    .resume-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .banner-img {
        width: 100px;
        height: 75px;
    }

    .banner-img-1 {
        top: 2%;
        left: 2%;
    }

    .banner-img-2 {
        bottom: 2%;
        right: 2%;
    }

    .banner-img-3 {
        top: 70%;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .project-card h3 {
        font-size: 1.2rem;
    }

    .project-card p {
        font-size: 0.9rem;
    }

    .stats-card p {
        font-size: 1.1rem;
    }

    .stats-reveal {
        font-size: 0.9rem;
    }

    .testimonial p {
        font-size: 1rem;
    }

    .testimonial span {
        font-size: 0.9rem;
    }

    .badge-icon {
        font-size: 2.5rem;
    }

    .achievement-badge p {
        font-size: 0.9rem;
    }

    .order-form input,
    .order-form textarea {
        padding: 10px;
        font-size: 0.8rem;
    }

    .order-form textarea {
        min-height: 100px;
    }

    .order-form button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}