*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b1120;
}

.custom-navbar{
    background:rgba(8,18,32,0.75);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:18px 0;
    transition:.4s ease;
    z-index:9999;
}

.navbar-brand{
    color:#fff !important;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.navbar-brand span{
    color:#00e5ff;
}

.navbar-nav .nav-item{
    margin:0 8px;
}

.navbar-nav .nav-link{
    color:#dbe4ee !important;
    font-size:16px;
    font-weight:500;
    padding:10px 18px !important;
    border-radius:30px;
    position:relative;
    transition:.4s;
}

.navbar-nav .nav-link:hover{
    color:#00e5ff !important;
    background:rgba(0,229,255,.08);
}

.navbar-nav .nav-link.active{
    color:#00e5ff !important;
    background:rgba(0,229,255,.12);
    box-shadow:0 0 20px rgba(0,229,255,.25);
}

.navbar-nav .nav-link::before{
    content:'';
    position:absolute;
    left:50%;
    bottom:5px;
    width:0;
    height:2px;
    background:#00e5ff;
    transform:translateX(-50%);
    transition:.4s;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before{
    width:60%;
}

.hire-btn{
    text-decoration:none;
    background:#2563eb;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hire-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(37,99,235,.3);
}

/* Hamburger Button */

.navbar-toggler{
    border:none;
    padding:0;
    box-shadow:none !important;
}

.navbar-toggler span{
    display:block;
    width:28px;
    height:3px;
    margin:6px 0;
    border-radius:10px;
    background:#00e5ff;
    transition:.4s;
}

/* Mobile */

@media(max-width:991px){

    .navbar-collapse{
        margin-top:15px;
        background:rgba(8,18,32,.95);
        backdrop-filter:blur(20px);
        border:1px solid rgba(255,255,255,.08);
        border-radius:20px;
        padding:20px;
    }

    .navbar-nav{
        text-align: left;
    }

    .navbar-nav .nav-link{
        margin:8px 0;
        display:block;
    }
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg-video,
.hero-bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: -1;
}

/* Content Center */

.hero-content{
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 900px;

    padding: 0 20px;

    text-align: center;

    z-index: 10;
}

.hero-content h4{
    color:#00e5ff;
    font-size:22px;
    margin-bottom:15px;
}

.hero-content h1{
    color:#fff;
    font-size:72px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content h2{
    color:#00e5ff;
    font-size:40px;
    min-height:55px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Button */

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-buttons a{
    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:220px;
    height:60px;

    padding:0 35px;

    text-decoration:none;
    font-size:17px;
    font-weight:600;
    letter-spacing:.5px;

    border-radius:60px;

    transition:.45s ease;

    backdrop-filter:blur(15px);

    z-index:1;
}

/* Primary Button */

.btn1{

    color:#fff;

    background:linear-gradient(135deg,#00E5FF,#0066FF);

    box-shadow:
    0 10px 35px rgba(0,229,255,.35);
}

.btn1:hover{

    color:#fff;

    transform:
    translateY(-8px)
    scale(1.04);

    box-shadow:
    0 18px 45px rgba(0,229,255,.55);
}

/* Secondary Button */

.btn2{

    color:#fff;

    border:2px solid rgba(0,229,255,.5);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);
}

.btn2:hover{

    color:#fff;

    background:linear-gradient(135deg,#00E5FF,#0066FF);

    border-color:transparent;

    transform:
    translateY(-8px)
    scale(1.04);

    box-shadow:
    0 18px 45px rgba(0,229,255,.45);
}

/* Shine Effect */

.hero-buttons a::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:.8s;
}

.hero-buttons a:hover::before{

    left:150%;
}

/* Icon */

.hero-buttons i{

    font-size:18px;

    transition:.4s;
}

.hero-buttons a:hover i{

    transform:translateX(4px);
}


@media(max-width:768px){

.hero-content{
    width:100%;
    padding:0 20px;
}

.hero-content h4{
    font-size:18px;
}

.hero-content h1{
    font-size:42px;
}

.hero-content h2{
    font-size:24px;
    min-height:35px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.btn1,
.btn2{
    width:220px;
}

}
@media(max-width:768px){

.hero-buttons{

    flex-direction:column;

    gap:18px;
}

.hero-buttons a{

    width:100%;
    max-width:280px;

    height:56px;

    font-size:16px;
}
}




.about-section{
    background:#07111f;
    padding:100px 0;
    overflow:hidden;
}

.about-image{
    position:relative;
    max-width:400px;
    margin:auto;
}

.about-image::before{
    content:'';
    position:absolute;
    inset:-15px;
    border-radius:30px;
    background:linear-gradient(
    45deg,
    #00e5ff,
    #0066ff,
    #7b2cff,
    #00e5ff);
    background-size:300% 300%;
    animation:borderMove 6s linear infinite;
    z-index:0;
}

.about-image img{
    width:100%;
    border-radius:25px;
    position:relative;
    z-index:1;
    display:block;
}

@keyframes borderMove{
    0%{
        background-position:0 50%;
    }
    100%{
        background-position:300% 50%;
    }
}

.about-content{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:25px;
    padding:40px;
    color:#fff;
    transition:.4s;
}

.about-content:hover{
    transform:translateY(-10px);
}

.sub-title{
    color:#00d9ff;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.about-content h2{
    font-size:45px;
    font-weight:700;
    margin:15px 0;
}

.about-content p{
    color:#c7d2fe;
    line-height:1.8;
}

.about-info{
    display:flex;
    gap:20px;
    margin-top:30px;
    flex-wrap:wrap;
}

.info-box{
    flex:1;
    min-width:130px;
    text-align:center;
    background:rgba(255,255,255,.05);
    border-radius:15px;
    padding:20px;
}

.info-box h3{
    color:#00d9ff;
    font-size:30px;
    margin-bottom:5px;
}

.about-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 35px;
    background:linear-gradient(
    135deg,
    #00d9ff,
    #0066ff);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.about-btn:hover{
    color:#fff;
}

@media(max-width:991px){

    .about-section{
        padding:70px 0;
    }

    .about-image{
        margin-bottom:40px;
    }

    .about-content{
        padding:25px;
        text-align:center;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-info{
        justify-content:center;
    }
}



.services-section{
    background:#07111f;
    padding:100px 0;
    position:relative;
}

.section-title{
    text-align:center;
    color:#fff;
    margin-bottom:60px;
}

.section-title span{
    color:#00d9ff;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-size:50px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#b8c5d6;
    max-width:650px;
    margin:auto;
}

.service-card{
    position:relative;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    overflow:hidden;
    transition:.5s;
    height:100%;
}

.service-card::before{
    content:'';
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:linear-gradient(
        45deg,
        transparent,
        rgba(0,217,255,.15),
        transparent
    );
    transform:rotate(45deg);
    transition:.8s;
}

.service-card:hover::before{
    left:100%;
}

.service-card:hover{
    transform:
    perspective(1000px)
    rotateX(8deg)
    rotateY(-8deg)
    translateY(-15px);

    box-shadow:
    0 20px 40px rgba(0,217,255,.2),
    0 0 30px rgba(0,217,255,.2);
}

.service-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    color:#00d9ff;

    background:rgba(0,217,255,.08);

    box-shadow:
    0 0 20px rgba(0,217,255,.4);
}

.service-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .services-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:35px;
    }

    .service-card{
        padding:30px 20px;
    }

    .service-card:hover{
        transform:translateY(-10px);
    }
}



.skills-section{
    padding:100px 0;
    background:#081220;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00e5ff;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#b7c4d6;
    max-width:650px;
    margin:auto;
}

.skill-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    padding:25px;
    border-radius:20px;
    margin-bottom:25px;
    transition:.4s;
}

.skill-card:hover{
    transform:
    perspective(1000px)
    rotateX(5deg)
    translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,229,255,.15);
}

.skill-info{
    display:flex;
    justify-content:space-between;
    color:#fff;
    margin-bottom:12px;
    font-weight:600;
}

.progress-bar{
    width:100%;
    height:12px;
    background:#12263f;
    border-radius:50px;
    overflow:hidden;
}

.progress{
    height:100%;
    border-radius:50px;
    background:linear-gradient(
    90deg,
    #00e5ff,
    #0066ff
    );
}

.html{
    width:95%;
}

.css{
    width:90%;
}

.bootstrap{
    width:90%;
}

.js{
    width:75%;
}


.php{
    width:85%;
}

.mysql{
    width:80%;
}

.tech-stack{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.tech-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(20px);
    border-radius:20px;
    padding:30px 15px;
    text-align:center;
    transition:.4s;
}

.tech-card:hover{
    transform:
    translateY(-12px)
    rotateX(8deg);

    box-shadow:
    0 15px 35px rgba(0,229,255,.25);
}

.tech-card i{
    font-size:50px;
    color:#00e5ff;
    margin-bottom:15px;
}

.tech-card h4{
    color:#fff;
    font-size:18px;
}

@media(max-width:991px){

    .skills-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:35px;
    }

    .tech-stack{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .tech-card{
        padding:25px 10px;
    }

    .tech-card i{
        font-size:40px;
    }
}




.projects-section{
    background:#07111f;
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00e5ff;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#b8c5d6;
    max-width:650px;
    margin:auto;
}

.project-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:25px;
    overflow:hidden;
    transition:.5s;
    height:100%;
}

.project-card:hover{
    transform:
    perspective(1200px)
    rotateX(6deg)
    rotateY(-6deg)
    translateY(-15px);

    box-shadow:
    0 20px 50px rgba(0,229,255,.15);
}

.project-image{
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-content{
    padding:30px;
}

.project-content span{
    color:#00e5ff;
    font-size:14px;
    letter-spacing:2px;
}

.project-content h3{
    color:#fff;
    margin:15px 0;
    font-size:28px;
    font-weight:700;
}

.project-content p{
    color:#cbd5e1;
    line-height:1.8;
}

.project-btns{
    margin-top:25px;
}

.project-btns a{
    text-decoration:none;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(
    135deg,
    #00e5ff,
    #0066ff
    );
    display:inline-block;
    transition:.4s;
}

.project-btns a:hover{
    color:#fff;
    transform:translateY(-3px);
}

@media(max-width:991px){

    .projects-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:35px;
    }

    .project-image img{
        height:220px;
    }

    .project-content{
        padding:20px;
    }

    .project-content h3{
        font-size:22px;
    }

    .project-card:hover{
        transform:translateY(-10px);
    }
}


.contact-section{
    background:#07111f;
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#00e5ff;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    color:#b8c5d6;
    max-width:650px;
    margin:auto;
}

/* Contact Info */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    transition:.5s;
}

.contact-card:hover{
    transform:
    perspective(1000px)
    rotateX(5deg)
    translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,229,255,.2);
}

.icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    #00e5ff,
    #0066ff);
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon i{
    color:#fff;
    font-size:25px;
}

.contact-card h4{
    color:#fff;
    margin-bottom:5px;
}

.contact-card p{
    color:#cbd5e1;
    margin:0;
}

/* Form */

.contact-form{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
    border-radius:25px;
    padding:35px;
}

.form-control{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    padding:15px;
    border-radius:12px;
}

.form-control:focus{
    background:rgba(255,255,255,.08);
    border-color:#00e5ff;
    box-shadow:none;
    color:#fff;
}

.form-control::placeholder{
    color:#a8b3c4;
}

.send-btn{
    border:none;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    background:linear-gradient(
    135deg,
    #00e5ff,
    #0066ff);
    transition:.4s;
}

.send-btn:hover{
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:991px){

    .contact-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:35px;
    }

    .contact-form{
        padding:25px;
    }

    .contact-card{
        padding:20px;
    }

    .icon{
        width:55px;
        height:55px;
    }
}




.footer{
    position:relative;
    background:#050d18;
    padding:80px 0 20px;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer::before{
    content:'';
    position:absolute;
    top:-150px;
    left:-150px;
    width:300px;
    height:300px;
    background:#00e5ff;
    filter:blur(150px);
    opacity:.15;
}

.footer::after{
    content:'';
    position:absolute;
    bottom:-150px;
    right:-150px;
    width:300px;
    height:300px;
    background:#0066ff;
    filter:blur(150px);
    opacity:.15;
}

.footer-content{
    display:grid;
    grid-template-columns:
    2fr 1fr 1fr 1fr;
    gap:40px;
    position:relative;
    z-index:2;
}

.footer-logo h2{
    color:#fff;
    font-size:38px;
    font-weight:700;
}

.footer-logo span{
    color:#00e5ff;
}

.footer-logo p{
    color:#b8c5d6;
    line-height:1.8;
    margin-top:15px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li a{
    color:#b8c5d6;
    text-decoration:none;
    transition:.4s;
}

.footer-links ul li a:hover{
    color:#00e5ff;
    padding-left:8px;
}

.footer-contact p{
    color:#b8c5d6;
    margin-bottom:15px;
}

.footer-contact i{
    color:#00e5ff;
    margin-right:10px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.social-icons a:hover{
    transform:
    translateY(-8px)
    rotate(360deg);

    background:#00e5ff;

    box-shadow:
    0 0 25px rgba(0,229,255,.6);
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom p{
    color:#9fb0c4;
    margin:0;
}

.footer-bottom span{
    color:#00e5ff;
    font-weight:600;
}
@media (max-width: 768px){

    .footer{
        padding:60px 0 20px;
        background:#07111f;
    }

    .footer-content{
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social{

        background:rgba(255,255,255,.04);

        border:1px solid rgba(255,255,255,.08);

        backdrop-filter:blur(20px);

        border-radius:20px;

        padding:20px;

        text-align:center;

        transition:.4s;
    }

    .footer-logo:hover,
    .footer-links:hover,
    .footer-contact:hover,
    .footer-social:hover{

        transform:translateY(-5px);

        box-shadow:
        0 10px 30px rgba(0,229,255,.15);
    }

    .footer-logo h2{
        font-size:32px;
        margin-bottom:10px;
    }

    .footer-logo p{
        font-size:14px;
        line-height:1.8;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-social h4{
        margin-bottom:15px;
        color:#00e5ff;
        font-size:18px;
    }

    .footer-links ul{
        padding:0;
        margin:0;
        list-style:none;
    }

    .footer-links ul li{
        margin:10px 0;
    }

    .footer-links ul li a{
        color:#d7e3f1;
        text-decoration:none;
        transition:.3s;
    }

    .footer-links ul li a:hover{
        color:#00e5ff;
    }

    .footer-contact p{
        margin-bottom:12px;
        font-size:14px;
        color:#d7e3f1;
    }

    .footer-contact i{
        color:#00e5ff;
        margin-right:8px;
    }

    .social-icons{
        display:flex;
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
    }

    .social-icons a{

        width:50px;
        height:50px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50%;

        background:rgba(255,255,255,.05);

        border:1px solid rgba(255,255,255,.08);

        color:#fff;

        font-size:20px;

        transition:.4s;
    }

    .social-icons a:hover{

        transform:
        translateY(-5px)
        rotate(360deg);

        color:#00e5ff;

        box-shadow:
        0 0 20px rgba(0,229,255,.35);
    }

    .footer-bottom{
        margin-top:25px;
        text-align:center;
        border-top:1px solid rgba(255,255,255,.08);
        padding-top:15px;
    }

    .footer-bottom p{
        font-size:13px;
        line-height:1.8;
        padding:0 10px;
    }
}


.tech-marquee{
    background:#081220;
    padding:35px 0;
    overflow:hidden;
    position:relative;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* Glow Effect */

.tech-marquee::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:500px;
    height:150px;
    background:rgba(0,229,255,.08);
    filter:blur(80px);
    pointer-events:none;
}

.marquee{
    width:100%;
    overflow:hidden;
}

.marquee-content{
    display:flex;
    width:max-content;
    animation:marqueeMove 25s linear infinite;
}

.marquee-content span{
    display:flex;
    align-items:center;
    gap:12px;

    margin:0 20px;
    padding:18px 35px;

    color:#fff;
    font-size:18px;
    font-weight:600;

    border-radius:60px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.4s;

    box-shadow:
    0 0 20px rgba(0,229,255,.05);
}

.marquee-content span:hover{

    transform:
    translateY(-8px)
    rotateX(10deg);

    color:#00e5ff;

    box-shadow:
    0 0 30px rgba(0,229,255,.35);
}

.marquee-content i{
    font-size:24px;
    color:#00e5ff;
}

@keyframes marqueeMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}
@media(max-width:768px){

    .tech-marquee{
        padding:25px 0;
    }

    .marquee-content span{

        padding:14px 25px;
        margin:0 10px;

        font-size:15px;
    }

    .marquee-content i{
        font-size:18px;
    }
}




.journey-section{
    background:#081220;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.journey-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,229,255,.08);
    border-radius:50%;
    filter:blur(120px);
    top:-200px;
    left:50%;
    transform:translateX(-50%);
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#00e5ff;
    letter-spacing:3px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:50px;
    margin-top:15px;
    font-weight:700;
}

.section-title p{
    color:#b6c3d4;
    max-width:700px;
    margin:auto;
}

.timeline{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.timeline::after{
    content:'';
    position:absolute;
    width:4px;
    height:100%;
    background:linear-gradient(
    #00e5ff,
    #0066ff
    );
    left:50%;
    top:0;
    transform:translateX(-50%);
}

.timeline-item{
    position:relative;
    width:50%;
    padding:20px 40px;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

.timeline-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:30px;
    color:#fff;
    transition:.5s;
}

.timeline-card:hover{
    transform:
    perspective(1000px)
    rotateX(6deg)
    translateY(-12px);

    box-shadow:
    0 15px 40px rgba(0,229,255,.25);
}

.year{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:linear-gradient(
    135deg,
    #00e5ff,
    #0066ff
    );
    margin-bottom:15px;
    font-weight:600;
}

.timeline-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.timeline-card p{
    color:#c7d3e2;
    line-height:1.8;
}

.timeline-item::before{
    content:'';
    position:absolute;
    width:22px;
    height:22px;
    background:#00e5ff;
    border-radius:50%;
    top:40px;
    z-index:2;
    box-shadow:0 0 20px #00e5ff;
}

.timeline-item.left::before{
    right:-11px;
}

.timeline-item.right::before{
    left:-11px;
}
@media(max-width:991px){

    .timeline::after{
        left:20px;
    }

    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:60px;
        padding-right:0;
        margin-bottom:25px;
    }

    .timeline-item::before{
        left:9px !important;
    }

    .section-title h2{
        font-size:35px;
    }

    .timeline-card{
        padding:25px;
    }
}


.education-section{
    background:#07111f;
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.education-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,229,255,.08);
    border-radius:50%;
    filter:blur(120px);
    top:-100px;
    right:-100px;
}

.education-wrapper{
    max-width:900px;
    margin:auto;
}

.education-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:30px;

    padding:40px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    transition:.5s;

    overflow:hidden;
}

.education-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(
        #00e5ff,
        #0066ff
    );
}

.education-card:hover{

    transform:
    perspective(1000px)
    rotateX(5deg)
    translateY(-12px);

    box-shadow:
    0 20px 50px rgba(0,229,255,.25);
}

.education-icon{
    min-width:100px;
    width:100px;
    height:100px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #00e5ff,
        #0066ff
    );

    box-shadow:
    0 0 30px rgba(0,229,255,.4);
}

.education-icon i{
    color:#fff;
    font-size:40px;
}

.education-year{
    display:inline-block;

    padding:8px 20px;

    border-radius:30px;

    background:rgba(0,229,255,.12);

    color:#00e5ff;

    font-weight:600;

    margin-bottom:15px;
}

.education-content h3{
    color:#fff;
    font-size:30px;
    margin-bottom:10px;
}

.education-content h4{
    color:#00e5ff;
    font-size:18px;
    margin-bottom:15px;
}

.education-content p{
    color:#c7d3e2;
    line-height:1.8;
    margin:0;
}





.stats-section{
    background:#081220;
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.stats-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,229,255,.08);
    border-radius:50%;
    filter:blur(120px);
    top:-200px;
    left:50%;
    transform:translateX(-50%);
}

.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px 20px;

    text-align:center;

    transition:.5s;

    position:relative;

    overflow:hidden;
}

.stat-card::before{

    content:'';

    position:absolute;

    top:-50%;

    left:-50%;

    width:200%;

    height:200%;

    background:linear-gradient(
        45deg,
        transparent,
        rgba(0,229,255,.08),
        transparent
    );

    transform:rotate(45deg);

    transition:.8s;
}

.stat-card:hover::before{
    left:100%;
}

.stat-card:hover{

    transform:
    perspective(1000px)
    rotateX(8deg)
    translateY(-15px);

    box-shadow:
    0 20px 50px rgba(0,229,255,.25);
}

.stat-icon{

    width:80px;
    height:80px;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #00e5ff,
        #0066ff
    );

    box-shadow:
    0 0 30px rgba(0,229,255,.35);
}

.stat-icon i{
    color:#fff;
    font-size:30px;
}

.stat-card h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;
}

.stat-card p{

    color:#b7c4d6;

    margin:0;

    font-size:16px;
}
@media(max-width:991px){

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }
}

@media(max-width:576px){

    .stats-section{
        padding:60px 0;
    }

    .stats-wrapper{
        grid-template-columns:1fr;
    }

    .stat-card{
        padding:30px 20px;
    }

    .stat-card h2{
        font-size:34px;
    }

    .stat-icon{
        width:70px;
        height:70px;
    }

    .stat-icon i{
        font-size:26px;
    }
}



.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    z-index:9999;

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 22px;

    border-radius:60px;

    text-decoration:none;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,229,255,.25);
}

/* Glow Effect */

.whatsapp-float::before{

    content:'';

    position:absolute;

    width:100px;
    height:100px;

    background:rgba(37,211,102,.35);

    border-radius:50%;

    filter:blur(40px);

    left:-20px;

    z-index:-1;
}

.whatsapp-float:hover{

    color:#fff;

    transform:
    translateY(-8px)
    scale(1.05);

    box-shadow:
    0 15px 40px rgba(37,211,102,.45);
}

.whatsapp-float i{

    width:55px;
    height:55px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    color:#fff;

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

    box-shadow:
    0 0 25px rgba(37,211,102,.5);

    animation:whatsappPulse 2s infinite;
}

.whatsapp-float span{

    font-size:15px;
    font-weight:600;

    white-space:nowrap;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.12);
    }

    100%{
        transform:scale(1);
    }
}
@media(max-width:768px){

    .whatsapp-float{

        right:15px;
        bottom:15px;

        padding:10px;
        border-radius:50%;
    }

    .whatsapp-float span{
        display:none;
    }

    .whatsapp-float i{

        width:55px;
        height:55px;

        margin:0;
    }
}





.cursor{

    position:fixed;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#00e5ff;

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:99999;

    box-shadow:
    0 0 15px #00e5ff,
    0 0 30px #00e5ff,
    0 0 45px #00e5ff;

    transition:
    width .2s,
    height .2s,
    background .2s;
}

.cursor-blur{

    position:fixed;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(0,229,255,.12);

    filter:blur(90px);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:99998;
}


/* Loader */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background:#050d18;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:999999;

    overflow:hidden;
}

/* Glow Background */

#loader::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(0,229,255,.12);

    filter:blur(120px);
}

.loader-content{
    text-align:center;
    position:relative;
    z-index:2;
}

.code-icon{

    font-size:80px;
    font-weight:700;

    color:#00e5ff;

    text-shadow:
    0 0 20px #00e5ff,
    0 0 40px #00e5ff;

    animation:float 3s ease-in-out infinite;
}

.loader-content h1{

    color:#fff;

    font-size:55px;

    margin-top:10px;

    letter-spacing:2px;
}

.loading-text{

    color:#00e5ff;

    margin-top:10px;

    font-size:18px;

    letter-spacing:3px;

    animation:blink 1s infinite;
}

.loading-bar{

    width:280px;
    height:8px;

    margin:30px auto 0;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    overflow:hidden;
}

.loading-bar span{

    display:block;

    width:0;
    height:100%;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #00e5ff,
        #0066ff
    );

    animation:loading 2.5s linear forwards;
}

@keyframes loading{

    from{
        width:0%;
    }

    to{
        width:100%;
    }
}

@keyframes blink{

    50%{
        opacity:.4;
    }
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }
}
@media(max-width:768px){

    .code-icon{
        font-size:55px;
    }

    .loader-content h1{
        font-size:35px;
    }

    .loading-bar{
        width:220px;
    }

    .loading-text{
        font-size:15px;
    }
}



.blog-section{
    padding:100px 0;
    background:#081220;
    position:relative;
    overflow:hidden;
}

.blog-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,229,255,.08);
    border-radius:50%;
    filter:blur(120px);
    top:-200px;
    right:-150px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{

    position:relative;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    overflow:hidden;

    transition:.5s;
}

.blog-card:hover{

    transform:
    perspective(1000px)
    rotateX(8deg)
    translateY(-15px);

    box-shadow:
    0 20px 50px rgba(0,229,255,.25);
}

.blog-image{

    height:220px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:80px;

    color:#00e5ff;

    background:linear-gradient(
        135deg,
        rgba(0,229,255,.08),
        rgba(0,102,255,.12)
    );
}

.blog-content{
    padding:25px;
}

.blog-date{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:rgba(0,229,255,.12);

    color:#00e5ff;

    font-size:14px;

    margin-bottom:15px;
}

.blog-content h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.blog-content p{
    color:#c7d3e2;
    line-height:1.8;
}

.blog-btn{

    display:inline-block;

    margin-top:15px;

    padding:12px 24px;

    border-radius:30px;

    text-decoration:none;

    color:#fff;

    background:linear-gradient(
        135deg,
        #00e5ff,
        #0066ff
    );

    transition:.4s;
}

.blog-btn:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
    0 0 25px rgba(0,229,255,.35);
}
@media(max-width:991px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .blog-section{
        padding:70px 0;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-image{
        height:180px;
        font-size:60px;
    }

    .blog-content h3{
        font-size:20px;
    }
}