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

:root {
    --primary: #007bff;  
    --secondary: #ffffff;
    --accent: #10c9aa;   
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #adb5bd;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark); /* Darker text for contrast */
    line-height: 1.6;
    background: linear-gradient(135deg, #7e030a, #302b63, #042d79);
    overflow-x: hidden;
    background-attachment: fixed;
}



h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 70px 0;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    /* border: none; */
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--accent);
}

.btn: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: 0.5s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 122, 162, 0.6);
}

.btn:hover:before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--accent);
    box-shadow: 0 5px 15px rgba(255, 122, 162, 0.3);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    line-height: 1.2;
}

.section-title h2 {
    font-size: 3rem;
    display: inline-block;
    position: relative;
    color: white;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
    box-shadow: 0 0 15px var(--accent);
}

/* Hide hamburger toggle on desktop */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.hidden-toggle {
    display: none;
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(110, 69, 226, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

nav ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent);
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    padding-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 30, 60, 0.4), rgba(28, 10, 30, 0.6)), 
                url('hero.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: -80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
}

.hero-profile {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(26, 26, 46, 0.95);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 4;
}

.hero-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 3.05rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: var(--light);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

/* Stats */
.stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    padding: 10px;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 650px;
    margin: 10px auto 0;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    min-width: 120px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .label {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.8;
}

/* Glowing Elements */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    opacity: 0.3;
    animation: pulse 8s infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    right: 10%;
    opacity: 0.2;
    animation: pulse 6s infinite 1s;
}

.glow-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 50%;
    left: 20%;
    opacity: 0.25;
    animation: pulse 7s infinite 0.5s;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    /* align-items: center; */
    align-items: start;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255,255,255,0.1);
    position: center;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);

}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(110, 69, 226, 0.3), transparent);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--light);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

.interests {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.interest-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    min-width: 160px;
}

.interest-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.interest-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 122, 162, 0.6);
}

.interest-item h4 {
    font-size: 1.3rem;
    color: white;
}

/* Portfolio */
.portfolio {
    position: relative;
}

.portfolio:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(110, 69, 226, 0.1), transparent 70%);
    z-index: -1;
}

.portfolio-grid {
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
    gap: 35px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.1);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.portfolio-overlay p {
    opacity: 0.8;
    font-size: 1rem;
}

/* Travel */
.travel {
        position: relative;
    }
    
    .travel:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at bottom left, rgba(136, 211, 206, 0.1), transparent 70%);
        z-index: -1;
    }
    
    /* Carousel Styles */
    .travel-gallery {
        position: relative;
        max-width: 98%;
        margin: 40px auto;
        overflow: hidden;
    }
    
    .carousel-container {
        position: relative;
        width: 100%;
        height: 550px;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease;
        height: 100%;
    }
    
    .travel-item {
        min-width: 100%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        height: 550px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255,255,255,0.1);
        transition: var(--transition);
    }
    
    .travel-item:hover {
        transform: none; /* Disable hover effect in carousel */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .travel-img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s ease;
    }
    
    .travel-item:hover .travel-img {
        transform: scale(1.05);
    }
    
    .travel-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 25px;
        background: linear-gradient(transparent, rgba(26, 26, 46, 0.9));
        color: white;
    }
    
    .travel-info h3 {
        font-size: 1.6rem;
        margin-bottom: 5px;
        color: white;
    }
    
    /* Carousel Controls */
    .carousel-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }
    
    .carousel-control:hover {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .carousel-control.prev {
        left: 15px;
    }
    
    .carousel-control.next {
        right: 15px;
    }
    
    .carousel-control .icon {
        font-size: 20px;
        font-weight: bold;
    }
    
    /* Carousel Indicators */
    .carousel-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .indicator.active {
        background: white;
    }
    
    .indicator:hover {
        background: rgba(255, 255, 255, 0.8);
    }

/* YouTube */
.youtube {
    position: relative;
}

.youtube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 122, 162, 0.1), transparent 70%);
    z-index: -1;
}

.youtube-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition);
    margin-top: 40px;
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-content h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.youtube-content p {
    margin-bottom: 25px;
    color: var(--light);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    transition: var(--transition);
}

.cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-box h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

/* Tech */
.tech {
    position: relative;
}

.tech:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(110, 69, 226, 0.1), transparent 70%);
    z-index: -1;
}

/* Contact */
.contact {
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 122, 162, 0.1), transparent 70%);
    z-index: -1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2.5rem;
    /* margin-bottom: 25px; */
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--light);
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 0px;
}

.contact-item {
    display: flex;
    /* color: var(--secondary) */
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 122, 162, 0.6);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 122, 162, 0.3);
}

.contact-form textarea {
    height: 180px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

/* Footer */
footer {
    background: rgba(10, 10, 20, 0.9);
    color: white;
    padding: 60px 0 30px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about p {
    margin-bottom: 25px;
    color: var(--light);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-links h3,
.footer-newsletter h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
    font-size: 1.1rem;
    display: inline-block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateX(5px);
}

.footer-newsletter form {
    display: flex;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-newsletter input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background: transparent;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.footer-newsletter button:hover {
    background: linear-gradient(45deg, var(--accent), var(--primary));
}

.copyright {
    text-align: center;
    padding-top: 0px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    color: var(--light);
    font-size: 1rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.9rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 500px;
    }
    
    .hero-bg {
        height: 60%;
        background-position: left;
        background: linear-gradient(rgba(30, 30, 60, 0.5), rgba(28, 10, 30, 0.7)), 
                url('hero-mobile.jpeg');
        background-size: cover;
    }
    
    .hero-content {
        padding-top: 150px;
    }
    
    .hero-profile {
        width: 150px;
        height: 150px;
        top: -75px;
    }
    
    .about-content,
    .youtube-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .youtube-container {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-wrapper {
        transform: none !important;
    }
    
    .about-image {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-bg {
        height: 45%;
        background-position: left;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-profile {
        width: 100px;
        height: 100px;
        top: -50px;
    }
}