@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%;
}
:root {
    --base: #ffffff;
    --surface: #ffffff;
    --surface-strong: #fff7ef;
    --text: #111111;
    --muted: #575761;
    --border: #f2e4d0;
    --primary: #ff7a18;
    --primary-dark: #db5e00;
    --secondary: #111111;
    --accent: #ff7a18;
    --gradient: #ff7a18;
    --gradient-soft: rgba(255,122,24,0.15);
}

.navbar {
  /* background: #ffffffeb; */
background: linear-gradient(
  to bottom,
  #f1dbdb,
  #f5eeee,
  #ffffff
);  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17,17,17,0.08);
}
.logo {
  font-weight: bold;
  color: var(--primary);
}
.btn {
  background: var(--primary);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  background: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(255, 122, 24, 0.3);
}
.project-card,
.plan-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(255,122,24,0.2);
  transition: 0.3s;
  opacity: 0;
  animation: fadeInUp 0.95s ease-out both;
}

.project-card:hover,
.plan-box:hover {
  transform: translateY(-5px);
  border: 1px solid var(--secondary);
}
.section-title,
.main-title {
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.send-btn {
  background: var(--primary);
  border: none;
  color: white;
}

.send-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.2);
}

body{
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--base);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.topheader-logo{
    border-radius: 100%;
}
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.4),
        transparent 40%
    );
    opacity: 0.4;
    pointer-events: none;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
.navbar {
    top: 16px;
    transform: translateX(-50%) translateY(-12px);
    margin-left:15%;
    width: 100%;              /* better responsiveness */
    max-width: 1100px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 100;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(14px);

    /* Glass border */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* Depth */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);

    border-radius: 40px;

    padding: 12px 24px; /* cleaner spacing */

    /* Animation */
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}


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: var(--primary);
    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;
    z-index: 100;
}

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

.profile-name{
    font-size: 1.2rem;
    color: var(--secondary);
    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: var(--text);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    opacity: 0;
    animation: fadeInRight 0.9s ease-out both;
}
.text-black{
    color: var(--text);
}
nav a:hover,
nav a.active{
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

@media(max-width:995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid var(--primary);
        border-bottom: 3px solid var(--primary);
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #ffffff;
        border-top: 0.1rem solid rgba(17,17,17,0.06);
        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 var(--primary);
        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:#f5e3cb9f;
    opacity: 0;
    padding-top: 150px;
    animation: fadeInUp 0.9s ease-out both;
}

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

span{
    color: var(--primary);
}

.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 rgba(255,122,24,0.3);  
    cursor: pointer;
    transition: 0.2s linear;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out both, floatUp 6s ease-in-out 1.2s infinite alternate;
}

.home-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255,122,24,0.45);
}


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

.section-sub-title{
     text-align: center;
    font-size: 3.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 var(--primary);
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: var(--primary);
    opacity: 0;
    animation: fadeInUp 0.9s ease-out both;
}

.social-icons a:hover{
    color: white;
    transform: scale(1.3) translateY(-5px);
    background: var(--primary);
    box-shadow: 0  0 25px rgba(255,122,24,0.25);
}

@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: var(--primary);
    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: var(--primary-dark);
    transform: translateY(-2px);
}


.typing-text span {
  border-right: 3px solid #EB273A;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}





@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,
.projects {
    padding-top: 100px;
    /* padding: 80px 9%; */
  background: linear-gradient(
  to bottom,
  #F9EEDF 0%,
  #f9ffde 30%,
  #ffe5d6 60%,
  #ffd2b8 100%
);   text-align: center;
}

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

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

/* ===== Common Card Style ===== */
.project-card {
    background: #ffffff;
    padding: 4px;
    height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(17,17,17,0.08);
    transition: 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ===== 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; /* ✅ allows wrapping */
    padding: 20px;
}

/* Cards */
.project-card.youtube {
    flex: 1 1 300px; /* ✅ responsive width */
    max-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 {
    /* padding-top: 100px; */
    width: 100%;
    min-height: 60vh;
    background:linear-gradient(#fffeff,#F9EEDF);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 100px; /* updated */
}

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

.stats-heading {
    font-size: 40px;
        /* padding-top:40%; */

    color: rgb(0, 0, 0);
    margin-bottom: 40px;
    font-weight: 600;
}

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

/* Individual Box */
.stat-box {
    /* background: #361336; */
    padding: 30px 40px;
    border-radius: 18px;
    width: 220px;
    transition: 0.3s ease;
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    opacity: 0;
    color: #000000;
    animation: fadeInUp 0.95s ease-out both;
}

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

/* Icon */
.stat-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Number */
.stat-box h2 {
    font-size: 36px;
    color: var(--text);
    margin-bottom: 5px;
}

/* Text */
.stat-box p {
    color:rgb(2, 0, 0);
    font-size: 16px;
}

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

.contact {
    background:linear-gradient(#F9EEDF,#ffffff);
    padding: 100px 10%;
    color: var(--text);
}

/* Heading */

.contact-title {
    color: var(--secondary);
    text-align: center;
    font-size: 5rem;
    margin-bottom: 10px;
    font-weight: 600;
    opacity: 0;
    animation: fadeInUp 0.9s ease-out both;
}

.contact-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.8rem;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out both;
}

/* 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;
    opacity: 0;
    animation: fadeInUp 1s ease-out both;
}

.contact-form input,
.contact-form textarea {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: 12px;
    color: var(--text);
    font-size: 1.6rem;
}

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

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

.send-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,122,24,0.2);
}

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

.contact-info {
    flex: 1;
    min-width: 350px;
    max-width: 650px;
    opacity: 0;
    animation: fadeInUp 1s ease-out both;
}

/* Info Box */

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 18px;
}

.info-box i {
    background: var(--surface-strong);
    color: var(--primary);
    font-size: 26px;
    padding: 20px;
    border-radius: 14px;
}

.info-box span {
    display: block;
    font-size: 1.6rem;
    color: var(--muted);
}

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

/* Follow Section */

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

.social-icons i {
    background: #ffffff;
    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: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255,122,24,0.2);
}



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

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

header, .home, .home-content, .main-title, .section-title, .section-sub-title,
.project-card, .plan-box, .stat-box, .contact-title, .contact-subtitle,
.contact-form, .contact-info, .info-box, .social-icons a, .btn {
    opacity: 0;
    animation: fadeInUp 0.9s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUp {
    from {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    to {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Base reset is defined at the top of this stylesheet */

/* Section */
.pricing {
padding: 100px 8% 90px;    background: #000;
}

/* ===== Heading ===== */
.section-title {
    text-align: center;
    font-size: 4.5rem;      /* big heading */
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 80px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: none;
}

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

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

/* Hover */
.plan-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Plan Title */
.plan-box h3 {
    color: var(--secondary);
    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: var(--secondary);
}

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

/* 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: #ffffff;
    border: 1px solid var(--border);
    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: var(--muted);
    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;
        color: black;
    }

    .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%;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary);
}

/* Container */
.portrait-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top:-5%;
}

/* Card */
.portrait-card {
    position: relative;
    width: 260px;
    height: 460px; /* portrait ratio */
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.4s ease;
}

/* Video */
.portrait-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover effect */
.portrait-card:hover {
    transform: scale(1.05);
}

/* Overlay text */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}
.portrait-card {
    position: relative;
    width: 260px;
    height: 460px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.video-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: 0.3s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-weight: 600;
    pointer-events: none;
}

/* ANIMATIONS */
/* ============================================
   ENHANCED ANIMATIONS — ADD AT END OF style.css
   ============================================ */

/* Reset old conflicting opacity:0 on static elements */
header, .home-content, .main-title, .contact-title,
.contact-subtitle, .contact-form, .contact-info, .btn {
    opacity: 1;
    animation: none;
}

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger for children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.18s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.31s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.44s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.57s; }

/* Navbar slide down on load */
.navbar {
    animation: slideDown 0.7s cubic-bezier(0.16,1,0.3,1) both !important;
    opacity: 1 !important;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero section fade in */
.home {
    animation: heroFadeIn 0.9s ease both !important;
    opacity: 1 !important;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Profile image float + glow */
.home-img img {
    opacity: 1 !important;
    animation: floatAnim 5s ease-in-out infinite, glowPulse 3s ease-in-out infinite !important;
}
@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 25px rgba(255,122,24,0.25); }
    50%       { box-shadow: 0 0 55px rgba(255,122,24,0.55); }
}

/* Typing cursor */


/* Nav links underline slide */
nav a {
    position: relative;
    border-bottom: none !important;
}
nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Button ripple */
.btn, .send-btn {
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
.btn::after, .send-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.22);
    border-radius: inherit;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}
.btn:active::after, .send-btn:active::after {
    opacity: 1;
    transform: scale(2.5);
    transition: 0s;
}

/* Cards hover lift */
.project-card,
.plan-box,
.stat-box,
.info-box {
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.35s ease,
                border-color 0.3s ease !important;
}
.project-card:hover,
.plan-box:hover,
.stat-box:hover,
.info-box:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 48px rgba(255,122,24,0.13) !important;
    border-color: var(--primary) !important;
}

/* Portrait card video zoom */
.portrait-card .video-item {
    transition: transform 0.5s ease;
}
.portrait-card:hover .video-item {
    transform: scale(1.06);
}

/* Social icons bounce */
.social-icons a {
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease !important;
}
.social-icons a:hover {
    transform: scale(1.35) translateY(-5px) !important;
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255,122,24,0.35) !important;
}

/* Stat number color on hover */
.stat-box h2 {
    transition: color 0.4s ease;
}
.stat-box:hover h2 {
    color: var(--primary);
}

/* Contact inputs focus glow */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(255,122,24,0.15) !important;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Logo image spin on hover */
.logoimage {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 10;
}

.logoimage:hover {
    transform: rotate(12deg) scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 122, 24, 0.4);
}

/* Availability breathing border */
.availability {
    animation: borderPulse 3.5s ease-in-out infinite;
}
@keyframes borderPulse {
    0%, 100% { border-color: var(--border); box-shadow: none; }
    50%       { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,122,24,0.08); }
}
/* ===== SECTION BACKGROUND ===== */
.pricing {
  background: linear-gradient(
  to bottom,
  #FFD2B9 25%,
  #ffd3c9 50%,
  #ffc3a8 75%,
  #ffffff 100%
);
  padding: 80px 20px;
}

/* ===== MAIN TITLE ===== */
.main-titleplans {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #522505, #362307);
  -webkit-background-clip: text;
  color: rgb(0, 0, 0);
}

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

/* ===== PLAN CARDS ===== */
.plan-box {
background: linear-gradient(
  to bottom,
  #e85a18 0%,
  #5e1e00 100%
);
 border-radius: 20px;
  padding: 30px;
  width: 320px;
  border: 1px solid rgba(255,122,24,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow border effect */
/* .plan-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255,122,24,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* Hover */
/* .plan-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(255,122,24,0.15);
} */

.plan-box:hover::before {
  opacity: 1;
} */

/* Highlight (Standard Plan) */
.highlight {
  border: 2px solid #ff7a18;
  box-shadow: 0 25px 60px rgba(255,122,24,0.2);
}

/* ===== TEXT ===== */
.plan-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fffefe;
  font-weight: 700;
}

.sub {
  font-size: 14px;
  color: #fdfdfd;
  margin-bottom: 15px;
}

.label {
  font-weight: 600;
  margin-top: 12px;
  color: #e6e6e6;
}

/* ===== FEATURES ===== */
.plan-box ul {
  list-style: none;
  padding: 0;
  margin-top:1px;
}

.plan-box ul li {
  padding:1px;
  font-size: 14px;
  color: #dcdada;
  position: relative;
  padding-left: 18px;
}

/* gold bullet */
.plan-box ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #ff7a18;
  font-size: 10px;
}

/* ===== PRICE ===== */
.price {
  margin-top: 18px;
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(90deg, #fafafa, #adc510);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== MONTHLY ===== */
.monthly-section {
  margin-top: 70px;
  text-align: center;
  color: #fff;
}

.monthly-section h2 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #000000;
}

/* ===== CTA SECTION (GLASS) ===== */
.cta-section {
  margin: 70px auto;   /* THIS centers it */
  padding: 50px 25px;

  width: 85%;
  /* max-width: 1500px;   keeps it clean on large screens */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  color: #ebebeb;

  position: relative;
  overflow: hidden;
}

/* subtle glass shine (refined) */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25),
    transparent 40%
  );

  opacity: 0.2;
  pointer-events: none;
}

/* ===== NEGOTIABLE TEXT ===== */
.negotiable {
  color: #2a0000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

/* ===== HEADING ===== */
.cta-section h2 {
  font-size: 28px;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #261c54, #47010f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== STYLE TAGS ===== */
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

/* chips */
.styles-grid span {
  padding: 10px 18px;
  border-radius: 30px;

background: linear-gradient(
  135deg,
  #ff7a18,
  #ff4d00
);  /* backdrop-filter: blur(8px); */

  border: 1px solid rgba(255, 80, 100, 0.3);

  font-size: 14px;
  color: #ffffff;

  transition: all 0.3s ease;
  cursor: pointer;
}

/* hover */
.styles-grid span:hover {
  color: #9e3636;
  transform: translateY(-3px) scale(1.05);

 background: linear-gradient(
    135deg,
    #ff8c42,
    #ff3d00
  );  border-color: rgba(255, 80, 100, 0.6);

  box-shadow: 0 10px 25px rgba(255, 80, 100, 0.25);
}

/* hover */
.styles-grid span:hover {
  color: #203f9b;
  transform: translateY(-3px) scale(1.05);

  background: rgba(255,255,255,0.1);
  border-color: rgba(74, 208, 145, 0.3);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;

 background: #522204;
  color: #fff;

  font-weight: 600;
  text-decoration: none;
  font-size: 15px;

  transition: all 0.3s ease; 
}
.recommended {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 70%;
  justify-content:center;
  max-width: 1300px;
  margin:auto ;
  
}

/* Monthly section */
.monthly-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 2;
  min-width: 300px;
}

.weekly-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
  align-items: center; /* center card under heading */
}

.weekly-section h2 {
  font-size: 29px;
  padding-top: 70px;
  padding-bottom: 20px;
  text-align: center; /* important */
}
/* Monthly cards row */
.pricing-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  /* margin-left: -100px; */
}

/* Weekly card center */
.weekly-section .plan-box {
  width: 100%;
  max-width: 380px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 22px;
  }

  .styles-grid span {
    font-size: 13px;
    padding: 8px 14px;
  }
}
/* ===== MAIN CIRCLE ===== */
.price-circle {
  position: absolute;
  left: 500px;
  bottom:150px;

  width: 150px;
  height: 150px;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #000000;
  box-shadow: 0 15px 40px rgba(216, 216, 216, 0.2);

  overflow: hidden;
}

/* ===== CENTER PRICE ===== */
.price-text {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  z-index: 5;
}

/* ===== ROTATING BORDER TEXT ===== */
.price-circle {
  width: 200px;
  height: 200px;
  position: relative;
  cursor: pointer;
}

.price-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* TEXT STYLES */
.small-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  fill: #fccbb3;
}

.price-main {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  fill: #FF7028;
}

.price-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  fill: #aaa;
}

/* ROTATION */
.rotating-ring {
  transform-origin: 100px 100px;
  animation: rotateRing 16s linear infinite;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* OPTIONAL HOVER 🔥 */
.price-circle:hover .rotating-ring {
  animation-duration: 6s;
}
.price-circle:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* Hide navbar completely on mobile */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }
}
@media (max-width: 768px) {

  .home {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    min-height: 100vh; /* ✅ correct */
  }
  .Projects{
    flex-direction: column;
    gap: 30px;
    width: 100%;
    min-height: 100vh; /* ✅ correct */
    margin-left:15px;
    margin-top:-25px;
    /* align-items: center; */
    justify-content: center;
  }

  .price-circle {
    position: absolute;

    left: 70%;                 /* ✅ center horizontally */
    transform: translateX(-50%);

    bottom: 20px;

    width: 120px;
    height: 120px;
  }
  .projects-container {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    min-height: 100vh; /* ✅ correct */
    margin-left:15px;
    margin-top:-25px;
    /* align-items: center; */
    justify-content: center;
  }
  .Projects{
    flex-direction: column;
    gap: 30px;
    width: 100%;
    min-height: 100vh; /* ✅ correct */
    margin-left:15px;
    margin-top:-25px;
    /* align-items: center; */
    justify-content: center;
  }
  .plan-box {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .pricing{
    padding: 80px 20px 150px; /* extra bottom padding for circle */
  }
  body {
    padding-bottom: 140px; /* space for circle */
    width: 100%;
  }
}