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



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

/* Header */

html{
    scroll-behavior:smooth;
}

header{
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(15px);
}

.navbar{

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

    padding:18px 35px;
    margin-top:20px;

    border-radius:20px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    box-shadow:
    8px 8px 20px rgba(0,0,0,.25),
    -8px -8px 20px rgba(255,255,255,.08);

    transition:.4s;

}

.logo{
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#FFD60A;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{

    position:relative;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.nav-links a:hover{

    color:#FFD60A;

}

.nav-links a::after{

    content:'';
    position:absolute;

    left:50%;
    bottom:-8px;

    width:0%;
    height:3px;

    background:#FF006E;

    transition:.35s;

    transform:translateX(-50%);
    border-radius:20px;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}
.progress-bar{

    position:fixed;
    top:0;
    left:0;

    width:0%;
    height:5px;

    background:linear-gradient(90deg,#FFD60A,#FF006E);

    z-index:9999;

}

.card{

    transition:.4s;

}

.card:hover{

    transform:translateY(-12px) scale(1.03);

    box-shadow:
    0 20px 40px rgba(0,0,0,.3);

}
.btn{

    transition:.4s;

}

.btn:hover{

    transform:translateY(-5px);

    background:#FFD60A;

    color:#111;

    box-shadow:
    0 0 20px #FFD60A,
    0 0 40px #FFD60A;

}
.hidden{

    opacity:0;
    transform:translateY(60px);
    transition:1s;

}

.show{

    opacity:1;
    transform:translateY(0);

}

/* Hero */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85vh;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    min-width:300px;
}

.hero-text h2{
    font-size:55px;
}

.hero-text h3{
    color:#FFD60A;
    margin:15px 0;
    font-size:30px;
}

.hero-text p{
    width:90%;
    line-height:1.8;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    background:#FF006E;

    box-shadow:
    8px 8px 18px rgba(0,0,0,.3),
    -8px -8px 18px rgba(255,255,255,.15);

    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

.profile{
    flex:1;
    display:flex;
    justify-content:center;
    min-width:300px;
}

.image-box{

    width:320px;
    height:320px;
    border-radius:50%;
    background:#00C2FF;

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

    font-size:22px;
    text-align:center;
    font-weight:bold;

    box-shadow:
    18px 18px 40px rgba(0,0,0,.25),
    -18px -18px 40px rgba(255,255,255,.18);

}

/* Sections */

section{
    padding:70px 0;
}

.title{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{

    background:#08B7E8;
    padding:30px;
    border-radius:25px;

    box-shadow:
    10px 10px 20px rgba(0,0,0,.25),
    -10px -10px 20px rgba(255,255,255,.15);

}

.card h3{
    margin-bottom:15px;
    color:#FFD60A;
}

/* Contact */

.contact{
    text-align:center;
}

.contact p{
    margin:15px 0;
}

footer{
    text-align:center;
    padding:30px;
    background:#0096C7;
    margin-top:40px;
}

@media(max-width:768px){

.hero{
    text-align:center;
    gap:50px;
}

.hero-text p{
    width:100%;
}

.hero-text h2{
    font-size:40px;
}

.image-box{
    width:250px;
    height:250px;
}

nav{
    flex-direction:column;
    gap:20px;
}

}


.card,
.navbar{
    background:#1C1C1C;
}

.logo span,
.title{
    color:#FFD700;
}

.btn{
    background:#FFD700;
    color:black;
}

.btn:hover{
    background:#FFB000;
}

.image-box{
    background:#222;
    border:5px solid #FFD700;
}

.progress-bar{
    background:linear-gradient(90deg,#FFD700,#FFA500);
}
.hero{

    position:relative;
    min-height:100vh;

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

    overflow:hidden;

}

.bg-text{

    position:absolute;

    font-size:10vw;
    font-weight:900;

    color:rgba(255,255,255,.04);

    white-space:nowrap;

    animation:slideText 18s linear infinite;

    user-select:none;

    letter-spacing:15px;

}

@keyframes slideText{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}
.hero-content{

    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:2;

}

.hero-left{

    width:55%;

}

.hero-right{

    width:40%;
    display:flex;
    justify-content:center;
    position:relative;

}
.hello{

    color:#38BDF8;
    font-size:22px;
    letter-spacing:3px;
    margin-bottom:15px;

}

.name{

    font-size:75px;
    line-height:1.1;
    font-weight:800;

}

.name span{

    display:block;

    font-size:110px;

    background:linear-gradient(90deg,#38BDF8,#8B5CF6);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:glowName 3s infinite;

}

@keyframes glowName{

50%{

filter:drop-shadow(0 0 15px #38BDF8);

}

}
.typing{

    margin:20px 0;

    font-size:34px;
    color:#A78BFA;

}

.typing::after{

    content:"|";

    animation:blink .7s infinite;

}

@keyframes blink{

50%{
opacity:0;
}

}
.glow{

    position:absolute;

    width:340px;
    height:340px;

    background:linear-gradient(#38BDF8,#8B5CF6);

    border-radius:50%;

    filter:blur(70px);

    opacity:.45;

    animation:pulse 4s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.1);

}

}

.image-box{

    position:relative;
    z-index:2;

}
.hero-buttons{

    margin-top:35px;
    display:flex;
    gap:20px;

}

.secondary{

    background:transparent;
    border:2px solid #38BDF8;

}

.secondary:hover{

    background:#38BDF8;
    color:#111;

}
.hero-right{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
    width:45%;
    min-height:500px;
}

.image-box{

    width:360px;
    height:360px;

    border-radius:30px;

    overflow:hidden;

    position:relative;
    z-index:10;

    background:#1E293B;

    border:4px solid rgba(255,255,255,.15);

    box-shadow:
    0 25px 60px rgba(0,0,0,.45);

}

.image-box img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.image-box:hover img{

    transform:scale(1.05);

}
.triangle{

    position:absolute;

    width:0;
    height:0;

    opacity:.8;

    animation:float 6s ease-in-out infinite;

}

.t1{

    border-left:70px solid transparent;
    border-right:70px solid transparent;
    border-bottom:120px solid #38BDF8;

    top:40px;
    left:30px;

}

.t2{

    border-left:55px solid transparent;
    border-right:55px solid transparent;
    border-bottom:95px solid #8B5CF6;

    bottom:50px;
    right:20px;

    animation-delay:1.5s;

}

.t3{

    border-left:40px solid transparent;
    border-right:40px solid transparent;
    border-bottom:70px solid #00E5FF;

    top:220px;
    right:-20px;

    animation-delay:3s;

}
.circle{

    position:absolute;

    border-radius:50%;

    filter:blur(2px);

    animation:float 5s ease-in-out infinite;

}

.c1{

    width:70px;
    height:70px;

    background:#8B5CF6;

    top:60px;
    right:80px;

}

.c2{

    width:40px;
    height:40px;

    background:#38BDF8;

    bottom:40px;
    left:50px;

    animation-delay:2s;

}
@keyframes float{

0%{
transform:translateY(0) rotate(0deg);
}

50%{
transform:translateY(-18px) rotate(8deg);
}

100%{
transform:translateY(0) rotate(0deg);
}

}
.image-box::before{

    content:"";

    position:absolute;

    inset:-5px;

    background:linear-gradient(
        45deg,
        #38BDF8,
        #8B5CF6,
        #00E5FF,
        #38BDF8
    );

    z-index:-1;

    filter:blur(25px);

    opacity:.5;

}
.hero-left{

    width:55%;

}

.status{

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

    padding:10px 18px;

    border-radius:30px;

    background:#1E293B;

    color:#E2E8F0;

    font-size:14px;

    margin-bottom:25px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#22C55E;

    animation:pulse 1.5s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.5);

opacity:.5;

}

}

.intro{

    color:#94A3B8;

    font-size:14px;

    letter-spacing:6px;

    margin-bottom:10px;

}

.hero-name{

    font-size:82px;

    font-weight:800;

    line-height:1;

    color:rgb(90, 233, 190);

    margin-bottom:20px;

}

.title-wrapper{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.line{

    width:70px;

    height:4px;

    background:#38BDF8;

    border-radius:20px;

}

.profession{

    font-size:32px;

    color:#38BDF8;

    font-weight:600;

}

.hero-desc{

    max-width:600px;

    line-height:1.9;

    color:#CBD5E1;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.btn-outline{

    padding:14px 30px;

    border:2px solid #38BDF8;

    color:#38BDF8;

    border-radius:12px;

    text-decoration:none;

    transition:.3s;

}

.btn-outline:hover{

    background:#38BDF8;

    color:#0F172A;

}

.hero-info{

    display:flex;

    gap:50px;

}

.hero-info h3{

    font-size:30px;

    color:rgb(80, 173, 240);

}

.hero-info span{

    color:#94A3B8;

    font-size:15px;

}
.hero-right{

    position:relative;

    width:480px;
    height:480px;

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

}

/* -----------------------
   Profile Image
------------------------ */

.image-box{

    width:320px;
    height:320px;

    overflow:hidden;

    border-radius:22px;

    position:relative;

    z-index:5;

    background:#1E293B;

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

}

.image-box img{

    width:100%;
    height:100%;

    object-fit:cover;

}

/* -----------------------
   Right Angle - Top Left
------------------------ */

.corner{

    position:absolute;

    width:140px;
    height:140px;

    z-index:2;

}

.corner-top{

    top:40px;
    left:40px;

    border-top:8px solid #334155;
    border-left:8px solid #334155;

}

/* -----------------------
   Right Angle - Bottom Right
------------------------ */

.corner-bottom{

    bottom:40px;
    right:40px;

    border-bottom:8px solid #334155;
    border-right:8px solid #334155;

}

/* -----------------------
   Obtuse Triangle
------------------------ */

.triangle{

    position:absolute;

    width:260px;
    height:260px;

    background:#273449;

    clip-path:polygon(
        10% 100%,
        100% 75%,
        40% 0%
    );

    transform:rotate(-18deg);

    z-index:1;

}
.triangle{

    animation:rotateTriangle 8s ease-in-out infinite;

}

@keyframes rotateTriangle{

0%{
transform:rotate(-18deg);
}

50%{
transform:rotate(-10deg);
}

100%{
transform:rotate(-18deg);
}
}
body{
    background:#0F172A;
}
.hero-content{

    width:100%;
    max-width:1300px;

    margin:0 auto;

    padding:80px 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;

}
.hero-left{

    flex:1;
    max-width:600px;

}

.hero-right{

    flex:1;

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

}
@media (max-width:992px){

.hero-content{

    gap:50px;
    padding:60px 40px;

}

.hero-name{

    font-size:60px;

}

.profession{

    font-size:28px;

}

.hero-right{

    transform:scale(.9);

}

}
@media (max-width:768px){

.hero{

    min-height:auto;
    padding:120px 0 80px;

}

.hero-content{

    flex-direction:column-reverse;

    text-align:center;

    padding:20px;

    gap:50px;

}

.hero-left{

    max-width:100%;

}

.title-wrapper{

    justify-content:center;

}

.hero-buttons{

    justify-content:center;
    flex-wrap:wrap;

}

.hero-info{

    justify-content:center;
    gap:30px;
    flex-wrap:wrap;

}

.hero-desc{

    margin:auto;
    margin-bottom:35px;

}

.hero-right{

    width:100%;

}

}
@media (max-width:480px){

.hero-name{

    font-size:46px;
    line-height:1.1;

}

.profession{

    font-size:22px;

}

.hero-desc{

    font-size:15px;
    line-height:1.8;

}

.hero-buttons{

    flex-direction:column;
    width:100%;

}

.btn,
.btn-outline{

    width:100%;
    text-align:center;

}

.hero-info{

    gap:20px;

}

.hero-info h3{

    font-size:22px;

}

.hero-info span{

    font-size:13px;

}

}
.image-box{

    width:70%;
    aspect-ratio:1;

}
.hero-right{

    position:relative;

    width:min(480px,90vw);
    height:min(480px,90vw);

}
.menu-btn{

    width:40px;
    height:32px;

    display:none;

    cursor:pointer;

    position:relative;

    z-index:1001;

}

.menu-btn span{

    position:absolute;

    width:100%;
    height:4px;

    background:#fff;

    left:0;

    border-radius:20px;

    transition:.4s;

}

.menu-btn span:nth-child(1){
    top:0;
}

.menu-btn span:nth-child(2){
    top:14px;
}

.menu-btn span:nth-child(3){
    top:28px;
}
.menu-btn.active span:nth-child(1){

    transform:rotate(45deg);
    top:14px;

}

.menu-btn.active span:nth-child(2){

    opacity:0;

}

.menu-btn.active span:nth-child(3){

    transform:rotate(-45deg);
    top:14px;

}
@media (max-width:768px){

.menu-btn{

    display:block;

}

.nav-links{

    position:absolute;

    top:85px;
    left:0;

    width:100%;

    background:#1E293B;

    border-radius:20px;

    flex-direction:column;

    align-items:center;

    gap:30px;

    padding:35px 0;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

    transform:translateY(-20px);

    opacity:0;

    visibility:hidden;

    transition:.4s;

}

.nav-links.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

}
@media (min-width:769px){

.menu-btn{

    display:none;

}

.nav-links{

    display:flex !important;

}

}
.style-4{
    width:320px;
    height:320px;
    position:relative;
}

.style-4 img{
    width:100%;
    height:100%;
    border-radius:20px;
    object-fit:cover;
}

.style-4::before,
.style-4::after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    border:4px solid #38BDF8;
}

.style-4::before{
    top:-10px;
    left:-10px;
    border-right:none;
    border-bottom:none;
}

.style-4::after{
    bottom:-10px;
    right:-10px;
    border-left:none;
    border-top:none;
}
.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.image-card{
    position:relative;
    width:370px;
    height:500px;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    background:#111;
}

.image-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:contrast(1.05) brightness(.92);
    transition:.5s;
}

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

.image-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent 45%
    );
}

.image-text{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    font-size:80px;
    font-weight:700;
    color:white;
    letter-spacing:4px;
    text-transform:uppercase;
    pointer-events:none;
    z-index:2;
}
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#040404;
}
.image-card::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("grain.png");
    opacity:.08;
    mix-blend-mode:overlay;
    z-index:1;
}
#contact{
    padding:100px 8%;
    background:#0d1117;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:60px;
}

.contact-info{
    color:#fff;
}

.contact-info h3{
    font-size:38px;
    margin-bottom:20px;
    color:#fff;
}

.contact-info p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:35px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
    background:#161b22;
    padding:18px 22px;
    border-left:4px solid #00e5ff;
    border-radius:12px;
    transition:.35s;
}

.info-box:hover{
    transform:translateX(10px);
    background:#1f2937;
}

.info-box span{
    font-size:24px;
}

.info-box p{
    margin:0;
    color:#fff;
}

.contact-form{
    background:#161b22;
    padding:40px;
    border-radius:20px;
    box-shadow:0 0 35px rgba(0,229,255,.18);
}

.input-box{
    margin-bottom:25px;
}

.input-box input,
.input-box textarea{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#0d1117;
    color:#fff;
    font-size:16px;
    border:2px solid transparent;
    transition:.3s;
}

.input-box input:focus,
.input-box textarea:focus{
    border-color:#00e5ff;
    box-shadow:0 0 18px rgba(0,229,255,.4);
}

.input-box input::placeholder,
.input-box textarea::placeholder{
    color:#8b949e;
}

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    background:linear-gradient(135deg,#00e5ff,#0066ff);
    color:#fff;
    transition:.35s;
}

.submit-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,229,255,.4);
}

@media(max-width:900px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-info{
    text-align:center;
}

.info-box{
    justify-content:center;
}

}


/* X Animation */

.menu-btn.active span:nth-child(1){
    transform:rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:rotate(-45deg);
}
@media(max-width:768px){

.menu-btn{
    display:flex;
}

.nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;
    background:#111827;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:35px;
    transition:.4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.35);
    z-index:1000;
}

.nav-links.active{
    right:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#00d9ff;
}

}
@media(min-width:769px){

.nav-links{
    display:flex;
}

.menu-btn{
    display:none;
}

}
header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    position:relative;
}
@media (max-width:768px){

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

.logo{
    font-size:2rem;
}


}
/* .menu-btn{
    display:none;
    width:45px;
    height:45px;
    position:relative;
    cursor:pointer;
    justify-content:center;
    align-items:center;
    z-index:1002;
}

.menu-btn span{
    position:absolute;
    width:28px;
    height:3px;
    background:#fff;
    border-radius:50px;
    transition:.35s;
}

.menu-btn span:nth-child(1){
    transform:translateY(-8px);
}

.menu-btn span:nth-child(2){
    transform:translateY(0);
}

.menu-btn span:nth-child(3){
    transform:translateY(8px);
}

.menu-btn.active span:nth-child(1){
    transform:rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:rotate(-45deg);
} */
@media (max-width:768px){

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

.menu-btn{
    display:flex;
}

.nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;

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

    gap:35px;

    background:#111827;

    transition:.4s;

    z-index:1000;
}

.nav-links.active{
    right:0;
}

}
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.navbar{
    height:80px;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.hero{
    padding-top:100px;
}
.nav-links{
    position:fixed;
    top:80px;        /* below navbar */
    right:-100%;
    width:260px;
    height:calc(100vh - 80px);
    background:#111827;
    transition:.4s;
}
.nav-links.active{
    right:0;
}
.navbar{
    margin-top:0;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    height:80px;
    padding:0 30px;
    background:#1C1C1C;
}
.logo{
    color:#fff;
}

.logo span{
    color:#FFD700;
}
@media (max-width:768px){

.nav-links{

    position:fixed;

    top:80px;

    right:-100%;

    width:250px;

    height:calc(100vh - 80px);

    background:#111827;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    padding-top:40px;

    gap:30px;

    transition:.35s;

}

.nav-links.active{

    right:0;

}

}
@media(max-width:768px){

    nav{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

}
@media (min-width:769px){

    .nav-links{
        display:flex !important;
        position:static !important;
        flex-direction:row;
        gap:35px;
        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;
        right:auto !important;
        width:auto !important;
        height:auto !important;
        background:transparent !important;
        box-shadow:none !important;
    }

    .menu-btn{
        display:none !important;
    }

}
section{
    color:#fff;
}
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background: #1EBE5D;
    transform: scale(1.1);
}
/* Larger sections */
section {
    padding: 140px 0;
}

/* Wider container */
.container {
    width: 92%;
    max-width: 1450px;
    margin: auto;
}

/* Bigger section titles */
.title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    color: #ffd21f;
}

/* Bigger cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

.card {
    width: 100%;
    box-sizing: border-box;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255,210,31,.15);
}

/* More spacing between cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 40px;
}

/* Card headings */
.card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffd21f;
}

/* Card paragraph */
.card p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #f5f5f5;
}

/* About card */
#about .card {
    max-width: 100%;
    min-height: 220px;
}

#about p {
    font-size: 1.35rem;
    line-height: 2;
}

/* Contact spacing */
.contact-wrapper {
    gap: 70px;
}
.card {
    transition: transform .4s ease, box-shadow .4s ease;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
}
#skills .card,
#projects .card {
    min-height: 280px;
}
/* Mobile Responsive */
@media (max-width: 768px) {

    .container {
        width: 90%;
        margin: auto;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        width: 100%;
        min-height: auto;
        padding: 25px;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .title {
        font-size: 2.5rem;
    }

    section {
        padding: 70px 0;
    }
}
@media (max-width: 768px) {

    #contact .title {
        text-align: center;
        margin: 0 auto 40px;
        font-size: 2.5rem;
    }

    #contact .container {
        width: 92%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .contact-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}
.image-card{
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 20px 60px rgba(0,255,255,.08);
    transition:.4s ease;
}

.image-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 80px rgba(0,255,255,.2);
}
.navbar{
    backdrop-filter:blur(15px);
    background:rgba(22,22,22,.8);
    border:1px solid rgba(255,255,255,.08);
}
.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}
/* Social Icons */
.social-icons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.social-icons a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;

    background:#1b1b1b;
    color:#fff;
    font-size:1.4rem;

    border:2px solid rgba(255,255,255,.08);

    transition:.35s ease;
}

.social-icons a:hover{
    transform:translateY(-6px);
    color:#000;
    background:#ffd400;
    box-shadow:0 0 25px rgba(255,212,0,.6);
}

/* Individual hover colors (optional) */
.social-icons a:nth-child(1):hover{
    background:#ffffff;
    color:#000;
}

.social-icons a:nth-child(2):hover{
    background:#0A66C2;
    color:#fff;
}

.social-icons a:nth-child(3):hover{
    background:#EA4335;
    color:#fff;
}

.social-icons a:nth-child(4):hover{
    background:linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
    color:#fff;
}
@media (max-width:768px){

    .social-icons{
        justify-content:center;
        margin-top:30px;
        gap:15px;
    }

    .social-icons a{
        width:50px;
        height:50px;
        font-size:1.2rem;
    }

}
nav a::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#ffcc00;
transition:.3s;
}

nav a:hover::after{
width:100%;
}
section{
padding:80px 0;
}
/*==========================
    Journey Section
==========================*/

.timeline-section{
    width:100%;
    padding:100px 10%;
    background:#0b132d;
}

.section-title{
    text-align:center;
    font-size:55px;
    color:#ffcc00;
    margin-bottom:70px;
    font-weight:700;
}

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:100%;
    background:#ffcc00;
    border-radius:10px;
}

.timeline-item{
    width:50%;
    position:relative;
    margin-bottom:60px;
}

.timeline-item:nth-child(odd){
    left:0;
    padding-right:60px;
    text-align:right;
}

.timeline-item:nth-child(even){
    left:50%;
    padding-left:60px;
}

.timeline-dot{
    width:18px;
    height:18px;
    background:#ffcc00;
    border-radius:50%;
    position:absolute;
    top:20px;
    right:-11px;
    box-shadow:0 0 20px #ffcc00;
}

.timeline-item:nth-child(even) .timeline-dot{
    left:-9px;
}

.timeline-content{
    background:#1b1b1b;
    padding:25px;
    border-radius:20px;
    transition:.4s;
    border:1px solid rgba(255,204,0,.2);
    box-shadow:0 0 25px rgba(255,204,0,.08);
}

.timeline-content:hover{
    transform:translateY(-10px);
    box-shadow:0 0 35px rgba(255,204,0,.35);
}

.timeline-content h3{
    color:#ffcc00;
    font-size:28px;
    margin-bottom:12px;
}

.timeline-content p{
    color:#f1f1f1;
    line-height:1.8;
    font-size:17px;
}
@media(max-width:768px){

.timeline::before{
    left:20px;
}

.timeline-item{
    width:100%;
    left:0 !important;
    padding-left:60px;
    padding-right:0;
    text-align:left;
}

.timeline-dot{
    left:11px !important;
    right:auto;
}

.section-title{
    font-size:42px;
}

}
.timeline-item{
    opacity:0;
    transform:translateY(50px);
    animation:fadeUp .8s forwards;
}

.timeline-item:nth-child(1){animation-delay:.2s;}
.timeline-item:nth-child(2){animation-delay:.4s;}
.timeline-item:nth-child(3){animation-delay:.6s;}
.timeline-item:nth-child(4){animation-delay:.8s;}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media (max-width:768px){

nav{
    height:70px;
    padding:0 20px;
    border-radius:18px;
}

.logo{
    font-size:2rem;
    line-height:1.1;
}

.logo span{
    display:inline;
}

.menu-btn{
    font-size:30px;
}

}
@media(max-width:768px){

.hero{
    min-height:90vh;
    padding-top:100px;
}

}
.hero-image{

width:80%;
max-width:300px;

margin:auto;

border-radius:25px;

}
.hero-image{

box-shadow:

0 0 40px rgba(255,204,0,.2);

}
.hero h1{

font-size:3rem;

line-height:1;

}
.hero p{

font-size:1rem;

line-height:1.7;

width:90%;

margin:auto;

color:#cfcfcf;

}
.hero-buttons{

display:flex;

flex-direction:column;

gap:15px;

margin-top:30px;

}

.hero-buttons a{

width:100%;

text-align:center;

padding:15px;

border-radius:50px;

}
.card{

padding:25px;

border-radius:25px;

margin-bottom:25px;

}
.card:hover{

transform:translateY(-8px);

}
.section-title{

font-size:2.3rem;

margin-bottom:50px;

}
body{

font-size:16px;

letter-spacing:.3px;

line-height:1.7;

}
.mobile-menu{
    position:fixed;
    top:0;
    left:-100%;
    width:85%;
    max-width:330px;
    height:100vh;

    background:#141414;

    transition:.45s ease;

    z-index:9999;

    overflow-y:auto;

    box-shadow:10px 0 40px rgba(0,0,0,.6);
}

.mobile-menu.active{
    left:0;
}
.menu-header{

height:220px;

background:linear-gradient(135deg,#1c1c1c,#0f172a);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

border-bottom:2px solid #ffcc00;

}

.menu-header h2{

color:#fff;

font-size:28px;

margin-top:15px;

}

.menu-header p{

color:#bdbdbd;

}
.mobile-menu a{

display:flex;

align-items:center;

gap:18px;

padding:22px 28px;

font-size:20px;

font-weight:600;

color:white;

text-decoration:none;

border-bottom:1px solid rgba(255,255,255,.08);

transition:.3s;

}
.mobile-menu a:hover{

background:#ffcc00;

color:#111;

padding-left:40px;

}
.mobile-menu i{

font-size:22px;

width:30px;

}
.overlay{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

backdrop-filter:blur(5px);

opacity:0;

visibility:hidden;

transition:.4s;

z-index:9998;

}

.overlay.active{

opacity:1;

visibility:visible;

}
/* ===============================
        PREMIUM MOBILE UI
================================= */

@media (max-width:768px){

html{
    font-size:15px;
}

body{
    overflow-x:hidden;
}

/* Sections */

section{
    padding:70px 20px;
}

/* Main Titles */

.title,
.section-title{
    font-size:2.2rem;
    margin-bottom:35px;
    line-height:1.2;
}

/* Hero Name */

.hero-name{
    font-size:3.2rem;
    line-height:1;
}

/* Background Text */

.bg-text{
    font-size:3rem;
    opacity:.04;
}

/* Profession */

.profession{
    font-size:1.4rem;
}

/* Paragraphs */

.hero-desc,
.card p,
.contact-info p,
.timeline-content p,
.info-box p{

    font-size:1rem;
    line-height:1.8;
    letter-spacing:.2px;

}

/* Cards */

.card{

    padding:28px 24px;
    border-radius:22px;

}

/* Card Titles */

.card h3{

    font-size:1.45rem;
    margin-bottom:12px;

}

/* Skills */

.cards{

    gap:20px;

}

/* Timeline */

.timeline-content{

    padding:22px;

}

.timeline-content h3{

    font-size:1.3rem;

}

/* Contact */

.contact-wrapper{

    gap:30px;

}

/* Buttons */

.btn,
.btn-outline,
.submit-btn{

    width:100%;

    font-size:1rem;

    padding:15px;

}

/* Hero Buttons */

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}

/* Stats */

.hero-info{

    justify-content:space-between;

}

.hero-info h3{

    font-size:1.6rem;

}

.hero-info span{

    font-size:.85rem;

}

/* Image */

.image-card{

    width:90%;
    margin:auto;

}

.image-card img{

    width:100%;

}

/* Overlay Text */

.image-text{

    font-size:3rem;
    line-height:1;
    letter-spacing:2px;

}

/* Navbar */

.logo{

    font-size:2rem;

}

.navbar{

    padding:14px 18px;

}

/* Menu Links */

.mobile-menu a{

    font-size:1.1rem;

    padding:18px 25px;

}

/* Footer */

footer{

    font-size:.9rem;

    padding:25px 20px;

}

/* WhatsApp */

.floating-whatsapp{

    width:60px;

    height:60px;

    right:18px;

    bottom:18px;

}

}
.image-text{
    font-size:3rem;
    line-height:1;
    letter-spacing:2px;
}
.menu-btn{
    width:56px;
    height:56px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;

    background:#1b1b1b;
    border:2px solid rgba(255,204,0,.2);
    border-radius:18px;

    padding:0;
    cursor:pointer;

    transition:.35s;
}

.menu-btn span{
    display:block;
    width:24px;
    height:3px;
    background:#fff;
    border-radius:20px;
    margin:0;
    transition:.35s;
}

.menu-btn:hover{

    background:#ffcc00;

    transform:scale(1.05);

}

.menu-btn:hover span{

    background:#111;

}.menu-btn.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}
.menu-btn{
    padding:0;
}
.menu-btn span{
    width:24px;
    height:3px;
    margin:0;
}
/* ==============================
      PREMIUM MENU BUTTON
============================== */

.premium-toggle{
    width:60px;
    height:60px;

    background:#1b1b1b;

    border:2px solid rgba(255,204,0,.25);

    border-radius:20px;

    display:flex;
    flex-direction:column;

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

    gap:7px;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.35);

    position:relative;

    overflow:hidden;
}

.premium-toggle:hover{

    transform:scale(1.05);

    border-color:#ffcc00;

    box-shadow:
    0 0 25px rgba(255,204,0,.25);

}

.premium-toggle .line{

    width:28px;
    height:3px;

    background:white;

    border-radius:50px;

    transition:.35s ease;

}

/* Different widths for a premium look */

.premium-toggle .one{
    width:28px;
}

.premium-toggle .two{
    width:22px;
}

.premium-toggle .three{
    width:16px;
}

/* Open Animation */

.premium-toggle.active .one{

    width:28px;

    transform:
    translateY(10px)
    rotate(45deg);

}

.premium-toggle.active .two{

    opacity:0;

    transform:scale(0);

}

.premium-toggle.active .three{

    width:28px;

    transform:
    translateY(-10px)
    rotate(-45deg);

}
@media (max-width:768px){

.nav-links{
    display:none;
}

.premium-toggle{
    display:flex;
}

}

@media (min-width:769px){

.premium-toggle,
.drawer-menu,
.drawer-overlay{
    display:none;
}

}
.drawer-menu{
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;

    background: #151515;

    z-index: 9999;

    transition: left .4s ease;
}

.drawer-menu.active{
    left: 0;
}
.drawer-menu a{
    text-decoration: none;
    color: white;
}
.drawer-menu a i{
    color: #ffcc00;
    margin-right:15px;
}
.drawer-menu a{

    display:flex;

    align-items:center;

    padding:20px;

    font-size:20px;

    border-bottom:1px solid rgba(255,255,255,.08);

}
.drawer-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    backdrop-filter:blur(5px);

    visibility:hidden;

    opacity:0;

    transition:.3s;

    z-index:9998;

}

.drawer-overlay.active{

    visibility:visible;

    opacity:1;

}
/* ==========================================
        PREMIUM MOBILE RESPONSIVE
========================================== */

@media (max-width:768px){

    /* General */
    html{
        font-size:14px;
    }

    body{
        overflow-x:hidden;
    }

    section{
        padding:60px 18px;
    }

    /* Navbar */
    .navbar{
        height:65px;
        padding:0 18px;
        border-radius:18px;
    }

    .logo{
        font-size:1.8rem;
        line-height:1;
    }

    .premium-toggle{
        width:48px;
        height:48px;
        border-radius:14px;
    }

    .premium-toggle .line{
        width:22px;
        height:2.5px;
    }

    /* Hero */

    .hero{
        min-height:90vh;
        padding-top:90px;
    }

    .hero h1{
        font-size:2.8rem;
        line-height:1;
    }

    .hero h2{
        font-size:1.5rem;
    }

    .hero p{
        font-size:.95rem;
        line-height:1.7;
    }

    /* Image */

    .hero-image,
    .image-card{
        width:82%;
        max-width:280px;
        margin:auto;
    }

    .image-text{
        font-size:2.6rem;
        letter-spacing:2px;
    }

    /* Buttons */

    .btn,
    .btn-outline{
        padding:12px 22px;
        font-size:.95rem;
    }

    /* Section Titles */

    .section-title{
        font-size:2.2rem;
        margin-bottom:35px;
    }

    /* Cards */

    .card{
        padding:20px;
        border-radius:18px;
    }

    .card h3{
        font-size:1.3rem;
    }

    .card p{
        font-size:.95rem;
        line-height:1.7;
    }

    /* Skills */

    .skills-grid{
        gap:18px;
    }

    /* Projects */

    .project-card{
        padding:20px;
    }

    .project-card h3{
        font-size:1.3rem;
    }

    .project-card p{
        font-size:.9rem;
    }

    /* Timeline */

    .timeline-content{
        padding:18px;
    }

    .timeline-content h3{
        font-size:1.2rem;
    }

    .timeline-content p{
        font-size:.9rem;
    }

    /* Contact */

    .contact-box{
        padding:20px;
    }

    .contact-box h3{
        font-size:1.3rem;
    }

    .contact-box p{
        font-size:.9rem;
    }

    input,
    textarea{
        font-size:.95rem;
        padding:12px;
    }

    /* Footer */

    footer{
        padding:20px;
        font-size:.85rem;
    }

    /* WhatsApp */

    .floating-whatsapp{
        width:55px;
        height:55px;
        right:16px;
        bottom:16px;
    }

}
@media (max-width:768px){

    /* All cards */
    .card{
        width:90%;
        max-width:320px;
        margin:15px auto;
        padding:18px;
        border-radius:18px;
    }

    /* Skills & Projects container */
    .cards,
    .skills-container,
    .projects-container{
        gap:18px;
        justify-content:center;
    }

}
@media (max-width:768px){

    .project-card{
        width:90%;
        max-width:320px;
        min-height:220px;
        margin:15px auto;
    }

}
/* @media (max-width:768px){

    .skill-card{
        width:90%;
        max-width:300px;
        min-height:180px;
        margin:15px auto;
    }

} */
@media (max-width:768px){

    .about-card{
        width:90%;
        max-width:320px;
        padding:20px;
        margin:auto;
    }

}
.drawer-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;

    z-index: 9998;
}

.drawer-overlay.active{
    opacity: 1;
    visibility: visible;
}
/* ===============================
      MOBILE SKILLS & PROJECTS
=============================== */

@media (max-width:768px){

    /* Skills & Project Cards */
    .skill-card,
    .project-card{

        width:90%;
        max-width:340px;
/* 
        min-height:auto;
        height:auto; */

        padding:22px;

        margin:18px auto;

        border-radius:20px;
    }

    /* Card Titles */
    .skill-card h3,
    .project-card h3{

        font-size:1.8rem;
        margin-bottom:18px;
        line-height:1.2;
    }

    /* Card Description */
    .skill-card p,
    .project-card p{

        font-size:1.1rem;
        line-height:1.8;
        color:#e8e8e8;
    }

}
@media (max-width:768px){

.skill-card p{

    font-size:1.15rem;
    line-height:2;
    letter-spacing:.3px;

}

}
@media (max-width:768px){

.skill-card li{

    font-size:1.05rem;
    line-height:2;
}

}
@media (max-width:768px){

    /* About Me card */
    #about .card p{
        font-size: 1.1rem;   /* Same size as Skills/Projects info */
        line-height: 1.8;
        letter-spacing: 0.3px;
    }

}
/* ===========================
      COMPACT SKILL CARDS
=========================== */

.skill-card{

    width:92%;
    max-width:300px;

    padding:16px 18px;

    margin:12px auto;
/* 
    min-height:auto;
    height:auto; */

    border-radius:16px;

}

/* Skill icon */

.skill-card i,
.skill-card img{

    width:42px;
    height:42px;

    font-size:2rem;

    margin-bottom:10px;

}

/* Skill title */

.skill-card h3{

    font-size:1.3rem;

    margin-bottom:8px;

}

/* Skill description */

.skill-card p{

    font-size:0.95rem;

    line-height:1.6;

    margin:0;

}
.skills-grid,
.skills-container{

    gap:14px;

}
@media (max-width:768px){

.skills .card{
    width:90%;
    max-width:300px;
    padding:16px 18px;
    margin:10px auto;
    height:auto;
    min-height:auto;
}

}
/* ===================================
      COMPACT SKILL CARDS (MOBILE)
=================================== */

@media (max-width:768px){

    /* Skills container */
    .skills-container,
    .skills-grid{
        gap:14px;
        padding:0 10px;
    }

    /* Skill Card */
    .skill-card{
        width:90%;
        max-width:300px;
        margin:10px auto;
        padding:16px 18px;

        min-height:auto;
        height:auto;

        border-radius:16px;
    }

    /* Icon */
    .skill-card i,
    .skill-card img{
        width:45px;
        height:45px;
        font-size:2rem;
        margin-bottom:10px;
    }

    /* Heading */
    .skill-card h3{
        font-size:1.4rem;
        margin-bottom:8px;
    }

    /* Description */
    .skill-card p{
        font-size:1rem;
        line-height:1.6;
        margin:0;
    }
}
@media (max-width:768px){

    /* Skill Card Text */
    .skill-card h3{
        font-size: 1.5rem;
    }

    .skill-card p{
        font-size: 1.08rem;
        line-height: 1.7;
    }

    /* Project Card Text */
    .project-card h3{
        font-size: 1.5rem;
    }

    .project-card p{
        font-size: 1.08rem;
        line-height: 1.7;
    }

}
@media (max-width:768px){

    .card h3{
        font-size: 1.5rem;
    }

    .card p{
        font-size: 1.08rem;
        line-height: 1.7;
    }

}
.drawer-header{
    color: white;
}
/* ===================================
      CONTACT SECTION - MOBILE
=================================== */

@media (max-width:768px){

    /* Contact Section */
    .contact{
        padding:60px 18px;
    }

    /* Contact Container */
    .contact-container{
        display:flex;
        flex-direction:column;
        gap:20px;
    }

    /* Contact Info Card (Smaller) */
    .contact-info{
        width:100%;
        padding:18px;
        border-radius:18px;
    }

    .contact-info h3{
        font-size:1.4rem;
        margin-bottom:12px;
    }

    .contact-info p{
        font-size:0.95rem;
        line-height:1.6;
    }

    /* Contact Form (Larger) */
    .contact-form{
        width:100%;
        padding:22px;
        border-radius:18px;
    }

    .contact-form input,
    .contact-form textarea{
        width:100%;
        font-size:1rem;
        padding:14px 16px;
        margin-bottom:14px;
        border-radius:12px;
    }

    .contact-form textarea{
        min-height:180px; /* More space for writing */
        resize:vertical;
    }

    .contact-form button{
        width:100%;
        padding:14px;
        font-size:1rem;
        border-radius:12px;
    }

}
@media (max-width:768px){

    .contact-card{
        width:96%;
        max-width:420px;
    }

}
/* ==========================
      CONTACT - MOBILE
========================== */

@media (max-width:768px){

    .contact-wrapper{
        display:flex;
        flex-direction:column;
        gap:20px;
        width:100%;
    }

    /* Make the left card wider */
    .contact-info{
        width:100%;
        max-width:100%;
        padding:20px;
        box-sizing:border-box;
        font-size: 40px;
    }

    /* Wider info cards */
    .info-box{
        width:100%;
        min-height:75px;

        display:flex;
        align-items:center;
        gap:18px;

        padding:4px 6px;

        box-sizing:border-box;
    }

    .info-box span{
        font-size:18px;
        flex-shrink:0;
    }

    .info-box p{
        flex:1;
        font-size:12px;
        line-height:1.5;
        margin:0;

        word-break:break-word;
        overflow-wrap:anywhere;
    }

}
@media (max-width:768px){

    .contact-wrapper{
        padding:0 8px;
    }
.contact-form{
    width:98%;
    max-width:98%;
}

}
@media (max-width:768px){

    #contact .container{
        width:100%;
        max-width:100%;
        padding:0 10px;
    }

}