@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
}

.topheader-logo{
    border-radius: 100%;
}


.navbar{
    background-color: black;
    filter: drop-shadow(10px);
    z-index: 100;
    position: fixed;
    top: -20px;
    
}


header{
    margin-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.top-right{
    display: flex;
    align-items: center;
}

.logo{
    font-size: 3rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover{
    transform: scale(1.1);
}

.logoimage{
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    
}

.navbar-profile{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.profile-name{
    font-size: 1.2rem;
    color: #b74b4b;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.topheader-logo{
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: block;
}

nav a{
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active{
    color: #b74b4b;
    border-bottom: 3px solid #b74b4b;
}

@media(max-width:995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid #b74b4b;
        border-bottom: 3px solid #b74b4b;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
        z-index: 50;
        max-height: 90vh;
        overflow-y: auto;
    }

    nav.active{
        display: flex;
        flex-direction: column;
    }

    nav a{
        display: block;
        font-size: 1.6rem;
        margin: 1.5rem 1rem;
        padding: 0.5rem;
        border: none;
        border-bottom: none;
    }

    nav a:hover,
    nav a.active{
        padding: 0.8rem;
        border-radius: 0.5rem;
        border-left: 3px solid #b74b4b;
        border-bottom: none;
    }
}

@media(max-width:600px){
    nav{
        width: 60%;
    }

    nav a{
        font-size: 1.4rem;
        margin: 1rem 0.8rem;
    }
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color: #b74b4b;
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p{
    font-size: 1.6rem;
}

.home-img{
    border-radius: 50%;
}

.home-img img {
    position: relative;
    width: 27vw;
    height: 27vw;           
    border-radius: 50%;     
    object-fit: cover;      
    box-shadow: 0 0 25px #b74b4b;  
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px #b74b4b;
}


.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.section-sub-title{
     text-align: center;
    font-size: 2.5rem;
    padding: 2.5rem;
}

@media(max-width: 768px) {
    .section-sub-title {
        font-size: 1.8rem;
        padding: 1.5rem;
    }
}

@media(max-width: 480px) {
    .section-sub-title {
        font-size: 1.4rem;
        padding: 1rem;
    }
}
.social-icons{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1.5rem;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color:transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0  0 25px #b74b4b;
}

@media(max-width: 768px) {
    .social-icons a {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
        margin: 2rem 1rem 2rem 0;
    }
}

@media(max-width: 480px) {
    .social-icons a {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
        margin: 1.5rem 0.8rem 1.5rem 0;
        align-items: center;
        justify-content: center;
         display: flex;
    }
}

.btn{
    display: inline-flex;            
    align-items: center;
    gap: 10px;                     

    padding: 1rem 2.5rem;
    background-color: #ff2e2e;      
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 12px;             
    border: none;                   
    cursor: pointer;
    transition: 0.3s ease;
}


.btn .icon{
    color: white;              /* make arrow white */
    font-size: 1.4rem;
}

.btn:hover{
    background-color: #e02626;
    transform: translateY(-2px);
}


.typing-text{
    font-size: 2.2rem;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "Video Editor";
    color: #b74b4b;
    animation: words 20s infinite;
}

.typing-text span::after{
    content: "";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #b74b4b;
    }
}

@keyframes words{
   
    21%, 40%{
        content: "Cinematic storyteller";
    }
    41%, 60%{
        content: "Motion graphics Artist";
    }
    61%, 80%{
        content: "Youtuber";
    }
       
}

@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width:995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3{
        font-size: 2.5rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }
}


/* ===== Projects Section ===== */
.projects {
    padding: 80px 9%;
    background: black;
    text-align: center;
}

/* ===== Main Title (Big) ===== */
.main-title {
    font-size: 5rem;
    color: #b74b4b;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #b74b4b;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

/* ===== Section Titles (Smaller) ===== */
.section-title {
    font-size: 0.5rem;
    color: #ffffff;   /* White text */
    margin: 40px 0 20px;
    font-weight: 25;
}

/* ===== Common Card Style ===== */
.project-card {
    background: #111;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #b74b4b;
    transition: 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #ff2e2e;
    box-shadow: 0 0 25px rgba(255, 46, 46, 0.4);
}

/* ===== Reels Row (Side by Side) ===== */
.reels-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.project-card.reel {
    width: 200px;
}

.project-card.reel video {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== YouTube Row (Side by Side) ===== */
.youtube-row {
    
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.project-card.youtube {
    width: 350px;
}

.project-card.youtube video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .main-title {
        font-size: 3.5rem;
    }

    .project-card.youtube {
        width: 100%;
    }

    .project-card.reel {
        width: 45%;
    }
}



.Experience {
    width: 100%;
    min-height: 60vh;
    background: blacklinear-gradient(135deg, #000000 70%, #b30000);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.stats {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.stats-heading {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Individual Box */
.stat-box {
    background: #111;
    padding: 30px 40px;
    border-radius: 12px;
    width: 220px;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* Hover Effect */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

/* Icon */
.stat-icon {
    font-size: 40px;
    color: #ff1a1a;
    margin-bottom: 15px;
}

/* Number */
.stat-box h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 5px;
}

/* Text */
.stat-box p {
    color: #cccccc;
    font-size: 16px;
}

/* ================= CONTACT SECTION ================= */

.contact {
    background: black;
    padding: 100px 10%;
    color:#b74b4b;
}

/* Heading */

.contact-title {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-subtitle {
    text-align: center;
    color: #9aa4b2;
    font-size: 1.8rem;
    margin-bottom: 60px;
}

/* Layout */

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* ========== LEFT FORM ========== */

.contact-form {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    background: #0d111a;
    border: 1px solid #1c2330;
    padding: 18px;
    border-radius: 12px;
    color: white;
    font-size: 1.6rem;
}

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

.send-btn {
    background: #ff2e2e;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

.send-btn:hover {
    background: #ff4d4d;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* ========== RIGHT SIDE ========== */

.contact-info {
    flex: 1;
    min-width: 350px;
    max-width: 650px;
}

/* Info Box */

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.info-box i {
    background: #1a0d0f;
    color: #ff2e2e;
    font-size: 26px;
    padding: 20px;
    border-radius: 14px;
}

.info-box span {
    display: block;
    font-size: 1.6rem;
    color: #9aa4b2;
}

.info-box p {
    font-size: 2rem;
    font-weight: 500;
}

/* Follow Section */

.follow-title {
    font-size: 2.2rem;
    text-align: left;
    color: #fff;
    
    /* margin-top: 40px;
    margin-bottom: 20px; */
}

.social-icons i {
    background: #0d111a;
    font-size: 22px;
    padding: 18px;
    border-radius: 12px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;

;
}

.social-icons i:hover {
    background: #ff2e2e;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
}



/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: black;
    color: white;
}

/* Section */
.pricing {
    padding: 100px 8%;
}

/* ===== Heading ===== */
.section-title {
    text-align: center;
    font-size: 4.5rem;      /* big heading */
    font-weight: 700;
    color: #b74b4b;
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(183, 75, 75, 0.6),
        0 0 20px rgba(183, 75, 75, 0.4);
}

/* Container */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ===== Card ===== */
.plan-box {
    background: #0f0f0f;
    padding: 35px;
    width: 360px;              /* section size same */
    border-radius: 15px;
    text-align: left;
    border: 1px solid #b74b4b33;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    line-height: 1.6;
}

/* Hover */
.plan-box:hover {
    transform: translateY(-10px);
    border-color: #b74b4b;
    box-shadow: 0 0 35px rgba(183, 75, 75, 0.4);
}

/* Plan Title */
.plan-box h3 {
    color: #b74b4b;
    margin-bottom: 20px;
    font-size: 2.2rem;   /* increased text */
}

/* Labels (Pricing, Features, etc.) */
.label {
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.4rem;
    color: #b74b4b;
}

/* Normal text */
.plan-box p {
    font-size: 1.3rem;
}

/* Feature List */
.plan-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.plan-box ul li {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 3rem;
    }

    .plan-box {
        width: 100%;
    }
}

/* Availability Box */

.availability {
    background: #0d111a;
    border: 1px solid #1c2330;
    padding: 10px;
    border-radius: 18px;
    margin-top: 40px;
    text-align: center;
}

.availability h4 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.availability p {
    font-size: 1.7rem;
    color: #9aa4b2;
    line-height: 1.6;
}

/* ========== COMPREHENSIVE MOBILE RESPONSIVE ========== */

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    html {
        font-size: 50%;
    }

    section {
        padding: 3rem 5% 3rem;
    }

    /* Header */
    header {
        padding: 0.8rem 5%;
    }

    .logo {
        font-size: 2rem;
    }

    .logoimage {
        width: 3rem;
        height: 3rem;
        margin-right: 0.5rem;
    }

    .navbar-profile {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }

    .profile-name {
        font-size: 0.9rem;
    }

    /* Home Section */
    .home {
        gap: 2rem;
        margin: 3rem 2rem;
    }

    .home .home-content h1 {
        font-size: 3rem;
    }

    .home-content h3 {
        font-size: 1.8rem;
    }

    .home-content p {
        font-size: 1.3rem;
    }

    .home-img img {
        width: 80vw;
        height: 80vw;
    }

    .social-icons a {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
        margin: 2rem 1rem 2rem 0;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }

    /* Projects */
    .main-title {
        font-size: 2.5rem;
    }

    .section-sub-title {
        font-size: 1.8rem;
        padding: 1.5rem;
    }

    .project-card.reel {
        width: 100%;
    }

    .project-card.youtube {
        width: 100%;
    }

    /* Pricing */
    .contact-title {
        font-size: 3rem;
    }

    .contact-subtitle {
        font-size: 1.3rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 1.3rem;
    }

    .contact-form textarea {
        height: 120px;
    }

    .send-btn {
        padding: 1rem;
        font-size: 1.3rem;
    }

    /* Stats */
    .stats-heading {
        font-size: 2rem;
    }

    .stats-container {
        gap: 2rem;
    }

    .stat-box {
        width: 100%;
        padding: 2rem;
    }

    /* Availability */
    .availability {
        padding: 1.5rem;
    }

    .availability h4 {
        font-size: 1.5rem;
    }

    .availability p {
        font-size: 1.2rem;
    }
}

/* Small Devices / Tablets (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    html {
        font-size: 55%;
    }

    section {
        padding: 4rem 7% 4rem;
    }

    header {
        padding: 1rem 7%;
    }

    .logo {
        font-size: 2.3rem;
    }

    .logoimage {
        width: 3.5rem;
        height: 3.5rem;
    }

    /* Home */
    .home {
        gap: 3rem;
        margin: 4rem 3rem;
    }

    .home .home-content h1 {
        font-size: 4rem;
    }

    .home-content h3 {
        font-size: 2.2rem;
    }

    .home-img img {
        width: 70vw;
        height: 70vw;
    }

    /* Projects Grid */
    .project-card.reel {
        width: 45%;
    }

    .project-card.youtube {
        width: 100%;
    }

    .reels-row {
        gap: 1.5rem;
    }

    /* Contact */
    .contact {
        padding: 5rem 7%;
    }

    .contact-title {
        font-size: 3.5rem;
    }

    .contact-container {
        gap: 4rem;
    }

    .contact-form {
        min-width: 100%;
    }

    .contact-info {
        min-width: 100%;
    }

    /* Pricing */
    .pricing {
        padding: 5rem 7%;
    }

    .section-title {
        font-size: 3rem;
    }

    .plan-box {
        width: 90%;
    }

    /* Stats */
    .stats-container {
        gap: 2rem;
    }

    .stat-box {
        width: 45%;
        padding: 2rem;
    }
}

/* Medium Devices (769px - 1000px) */
@media (max-width: 1000px) and (min-width: 769px) {
    html {
        font-size: 58%;
    }

    section {
        padding: 4rem 8% 4rem;
    }

    header {
        padding: 1rem 8%;
    }

    .home {
        gap: 3rem;
    }

    .home .home-content h1 {
        font-size: 4.5rem;
    }

    .home-img img {
        width: 40vw;
        height: 40vw;
    }

    .project-card.reel {
        width: 22%;
    }

    .project-card.youtube {
        width: 48%;
    }

    .plan-box {
        width: 300px;
    }

    .stat-box {
        width: 30%;
    }

    .contact-container {
        gap: 5rem;
    }
}

/* Large Devices & Up (1001px+) */
@media (min-width: 1001px) {
    html {
        font-size: 62.5%;
    }

    .project-card.reel {
        width: 18%;
    }

    .project-card.youtube {
        width: 32%;
    }
}