/*==========================
        NAVBAR
==========================*/

.navbar {
    background: #111827  !important;
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    transition: .3s;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .3s;
}

.navbar-brand:hover {
    color: #ffc107 !important;
}

.navbar-nav .nav-item {
    margin-left: 15px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 30px;
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    background: #ffc107;
    color: #000 !important;
}

.navbar-nav .nav-link.active {
    background: #ffc107;
    color: #000 !important;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, .3);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media(max-width:991px) {

    .navbar-collapse {
        background: #1e293b;
        margin-top: 15px;
        padding: 15px;
        border-radius: 10px;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }
}





/*=============== Footer ================ */




.footer {
    background: #000a1f;
    color: #ffffff;
    padding: 40px 20px 10px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h2,
.footer-section h3 {
    margin-bottom: 15px;
    color: #38bdf8;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #38bdf8;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #475569;
    margin-top: 30px;
    padding-top: 15px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}



/* ================= HERO SECTION ================= */
/*==============================
        HERO SECTION
==============================*/

section.bg-dark {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;

    background: #000a1f !important;

    z-index: 1;
}

/*==============================
    Animated Background
==============================*/

section.bg-dark::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -180px;
    left: -180px;

    background: 071126(37, 99, 235, .18);

    filter: blur(30px);

    animation: floatOne 8s ease-in-out infinite;
}

section.bg-dark::after {

    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;

    right: -160px;
    bottom: -160px;



    filter: blur(30px);

    animation: floatTwo 9s ease-in-out infinite;

}

/*==============================
        Content
==============================*/

section.bg-dark .container {

    position: relative;
    z-index: 2;

}

section.bg-dark h5 {

    color: #ffffff !important;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;

}

section.bg-dark h1 {

    color: #f5ce09;
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;

}

section.bg-dark h3 {

    color: #38bdf8 !important;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;

}

section.bg-dark p {

    color: #d1d5db;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 580px;

}

/*==============================
        Buttons
==============================*/

section.bg-dark .btn {

    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;

}

section.bg-dark .btn-warning {

    background: linear-gradient(45deg, #f5ce09, #ff0000);
    border: none;
    color: #fff;

}

section.bg-dark .btn-warning:hover {

    transform: translateY(-5px);
    box-shadow: 0 rgb(0, 0, 0);

}

section.bg-dark .btn-outline-light {

    border: 2px solid rgba(255, 255, 255, .3);

}

section.bg-dark .btn-outline-light:hover {

    background: #f5ce09;
    color: #111;
    transform: translateY(-5px);

}

/*==============================
        Social Icons
==============================*/

section.bg-dark .fs-3 {

    width: 55px;
    height: 55px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    transition: .4s;

}

section.bg-dark .fs-3:hover {

    transform: translateY(-8px) rotate(360deg);

    background: linear-gradient(45deg, #2563eb, #7c3aed);

    color: white !important;

    box-shadow: 0 0 25px rgba(37, 99, 235, .5);

}

/*==============================
        Image
==============================*/

section.bg-dark img {

    width: 380px;
    height: 450px;

    object-fit: cover;

    border-radius: 30px;

    border: 2px solid rgba(255, 255, 255, .08);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .45);

    transition: .5s;

    animation: floating 5s ease-in-out infinite;

}

section.bg-dark img:hover {

    transform: scale(1.05);

    box-shadow: 0 35px 80px rgba(255, 242, 1, 0.35);

}

/*==============================
        Animations
==============================*/

@keyframes floating {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0);

    }

}

@keyframes floatOne {

    0%,
    100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(40px, 35px);

    }

}

@keyframes floatTwo {

    0%,
    100% {

        transform: translate(0, 0);

    }

    50% {

        transform: translate(-40px, -35px);

    }

}

/*==============================
        Responsive
==============================*/

@media(max-width:991px) {

    section.bg-dark {

        text-align: center;
        min-height: auto;
        padding: 90px 0;

    }

    section.bg-dark h1 {

        font-size: 48px;

    }

    section.bg-dark h3 {

        font-size: 26px;

    }

    section.bg-dark p {

        margin: auto;
        margin-bottom: 35px;

    }

    section.bg-dark img {

        margin-top: 60px;

        width: 300px;
        height: 360px;

    }

}

@media(max-width:576px) {

    section.bg-dark h1 {

        font-size: 38px;

    }

    section.bg-dark h3 {

        font-size: 22px;

    }

    section.bg-dark p {

        font-size: 16px;

    }

    section.bg-dark img {

        width: 240px;
        height: 300px;

    }

    section.bg-dark .btn {

        width: 100%;
        margin-bottom: 12px;

    }

    section.bg-dark .btn-outline-light {

        margin-left: 0 !important;

    }

}




/* =========================
   ABOUT SECTION
========================= */

#about {

    background:

        #000a1f;

    z-index: 1;
}

#about h2 {
    font-weight: 700;
    color: #fff;
}


#about h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}



#about p {
    color: #fff;
    ;
    line-height: 1.8;
}

#about img {
    width: 100%;
    max-width: 350px;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

#about img:hover {
    transform: scale(1.03);
}

#about .list-group-item {
    border: none;
    background: #fff;
    margin-bottom: 12px;
    border-radius: 12px;
    padding: 15px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

#about .btn-warning {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

/* =========================
   SKILLS SECTION
========================= */

#skills {
    background: #000a1f !important;
}

#skills h2 {
    font-weight: 700;
    color: white;
}

#skills h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.progress {
    height: 26px;
    border-radius: 30px;
    overflow: hidden;
    background: #dbe4ec;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, .1);
}

.progress-bar {
    border-radius: 30px;
    font-weight: 600;
    transition: width 1.5s ease;
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .bg-dark {
        text-align: center;
    }

    .bg-dark img {
        margin-top: 40px;
        width: 300px;
        height: 360px;
    }

    #about {
        text-align: center;
    }

    #about img {
        margin-bottom: 30px;
    }

    #about .list-group {
        margin-bottom: 20px;
    }
}

@media(max-width:576px) {

    .bg-dark h1 {
        font-size: 2.3rem;
    }

    .bg-dark img {
        width: 250px;
        height: 300px;
    }

    .progress {
        height: 22px;
    }
}



/* ================= PROJECTS SECTION ================= */

#projects {
    background: #000a1f !important;
    padding: 80px 0;
}

#projects h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

#projects p {
    color: white;
}

#projects .text-muted {
    font-size: 1rem;
}

/* Card */

#projects .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    background: #00ffff48;
}

#projects .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/* Image */

#projects .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

#projects .card:hover .card-img-top {
    transform: scale(1.08);
}

/* Body */

#projects .card-body {
    padding: 20px;
}

#projects .card-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

#projects .card-text {
    color: white;
    font-size: 15px;
    line-height: 1.7;
}

/* Footer */

#projects .card-footer {
    background: transparent;
    border-top: none;
    padding: 0 20px 20px;
}


/* Buttons */

#projects .btn {
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    transition: .3s;
}

#projects .btn-dark {
    background: #000000;
    border: none;
}

#projects .btn-dark:hover {
    background: #231a1a;
    transform: translateY(-3px);
}

#projects .btn-warning:hover {
    transform: translateY(-3px);
}

/* Space between buttons */

#projects .btn+.btn {
    margin-left: 10px;
}

/* Responsive */

@media (max-width:768px) {

    #projects {
        padding: 60px 0;
    }

    #projects h2 {
        font-size: 2rem;
    }

    #projects .card-title {
        font-size: 20px;
    }

    #projects .btn {
        width: 100%;
        margin-top: 10px;
    }

    #projects .btn+.btn {
        margin-left: 0;
    }
}



/* ================= SERVICES ================= */


#services {
    background-color: #000a1f;   /* Change to any color you like */
    padding: 80px 0;
}

#services h2 {
    color: #ffffff;
}

#services .text-muted {
    color: #d1d1d1 !important;
}
#services h4{
    color: #fff;
 }

#services p{
    color: #fff;
 }

.service-card {
    background: #00ffff48 !important;
    transition: .3s;
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 4px solid #fdc201;
    padding: 5px;
}


.stat-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.counter {
    font-size: 45px;
    font-weight: 700;
    color: #0d6efd;
}

.stat-card p {
    font-size: 18px;
    margin-top: 10px;
}



/* ================= GALLERY ================= */

.gallery-section {
    background: #000a1f;
}

#gallery {
    color: white;
}



.gallery-box {
    background: #00ffff48;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.gallery-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}



.gallery-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.see-all-btn {
    text-decoration: none;
    color: #fda90d;
    font-weight: 600;
    padding: 8px 18px;
    border: 2px solid #fda90d;
    border-radius: 30px;
    transition: .3s;
}

.see-all-btn:hover {
    background: #fda90d;
    color: #fa0101;
}

.gallery-card {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: .4s;
}

.gallery-card img:hover {
    transform: scale(1.08);
}

.gallery-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

@media(max-width:768px) {

    .gallery-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .gallery-title {
        font-size: 24px;
    }

    .gallery-card img {
        height: 200px;
    }

    .gallery-card video {
        height: 220px;
    }

}

/* ================= STATISTICS ================= */

#statistics {
    background: #000a1f !important;
}

#statistics h2 {
    color: white;
}

#statistics p {
    color: white;
}



.stat-card {
    background: #00ffff48;
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
    height: 100%;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 50px;
    color: #f48b02;
    margin-bottom: 20px;
    display: block;
}

.counter {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Hover Effect */

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(8deg);
    transition: .3s;
    color: #6610f2;
}

.stat-card:hover .counter {
    color: #0d6efd;
}

/* Mobile */

@media(max-width:768px) {

    .stat-card {
        margin-bottom: 20px;
    }

    .counter {
        font-size: 36px;
    }

    .stat-icon {
        font-size: 40px;
    }

}


/* ================= TIMELINE ================= */

/*==============================
        MY JOURNEY
===============================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000a1f;
}

.journey-section {

    padding: 100px 0;

    background:
        radial-gradient(circle at top left, #1d4ed8 0%, transparent 30%),
        radial-gradient(circle at bottom right, #7c3aed 0%, transparent 35%),
        #000a1f;

    overflow: hidden;
    position: relative;
}

/* Floating circles */

.journey-section::before {

    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -150px;
    left: -150px;
    animation: float1 9s ease-in-out infinite;

}

.journey-section::after {

    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    right: -120px;
    bottom: -120px;
    animation: float2 8s ease-in-out infinite;

}

.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;

}

.section-heading {

    text-align: center;
    margin-bottom: 80px;

}

.section-heading span {

    color: #60a5fa;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;

}

.section-heading h2 {

    color: white;
    font-size: 50px;
    margin: 15px 0;

}

.section-heading p {

    color: #b5b5b5;
    width: 700px;
    max-width: 100%;
    margin: auto;
    line-height: 1.8;

}

/* Timeline */

.timeline {

    position: relative;

}

.timeline::before {

    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(#3b82f6, #9333ea);
    border-radius: 20px;

}

.timeline-item {

    width: 50%;
    padding: 40px;
    position: relative;

}

.timeline-item.left {

    left: 0;
    text-align: right;

}

.timeline-item.right {

    left: 50%;

}

.timeline-content {

    display: inline-block;
    width: 90%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 35px;
    border-radius: 20px;
    transition: .5s;
    color: white;
    position: relative;
    overflow: hidden;

}

.timeline-content::before {

    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    left: 0;
    top: 0;
    opacity: .15;
    transition: .6s;

}

.timeline-content:hover::before {

    width: 100%;

}

.timeline-content:hover {

    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .4);

}

.timeline-item::before {

    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #3b82f6;
    border: 5px solid white;
    border-radius: 50%;
    top: 65px;
    z-index: 5;

}

.left::before {

    right: -13px;

}

.right::before {

    left: -11px;

}

.year {

    display: inline-block;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;

}

.timeline-content h3 {

    font-size: 28px;
    margin-bottom: 15px;

}

.timeline-content p {

    color: #d8d8d8;
    line-height: 1.8;

}

/* Floating animation */

.timeline-item {

    animation: updown 5s ease-in-out infinite;

}

.timeline-item:nth-child(even) {

    animation-delay: 1s;

}

@keyframes updown {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

@keyframes float1 {

    50% {

        transform: translateY(40px);

    }

}

@keyframes float2 {

    50% {

        transform: translateY(-40px);

    }

}

/* Responsive */

@media(max-width:900px) {

    .timeline::before {

        left: 20px;

    }

    .timeline-item {

        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;

    }

    .timeline-content {

        width: 100%;

    }

    .timeline-item::before {

        left: 9px;

    }

    .left::before,
    .right::before {

        left: 9px;

    }

    .section-heading h2 {

        font-size: 38px;

    }

}

/*-=================== Image_detail =================== */

/* ===========================
   Academic Programs Section
=========================== */

.program-section {
    background: #000a1f;
    min-height: 100vh;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.section-title p {
    font-size: 15px;
    max-width: 700px;
    margin: 15px auto 0;
    color: #fff;
    line-height: 1.8;
}

/* Back Button */

.back-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    background: #fff;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    font-weight: 600;
    transition: .35s;
}

.back-btn:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateX(-6px);
}

/* Card */

.program-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
    cursor: pointer;
    background: #fff;
    transition: .4s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

/* Image */

.program-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.program-card:hover img {
    transform: scale(1.12);
}

/* Overlay */

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .92),
            rgba(0, 0, 0, .65),
            transparent);
    color: #fff;
    transform: translateY(45%);
    transition: .45s;
}

.program-card:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay p {
    font-size: .95rem;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 18px;
}

/* Buttons */

.overlay .btn-light {
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    transition: .35s;
}

.overlay .btn-light:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* Arrow Button */

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: .35s;
}

.arrow-btn:hover {
    background: #fff;
    color: #0d6efd;
    transform: rotate(90deg) scale(1.1);
}

/* Responsive */

@media(max-width:992px) {

    .program-card img {
        height: 280px;
    }

}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 2rem;
    }

    .program-card img {
        height: 250px;
    }

    .overlay {
        transform: translateY(0);
    }

}




/*==========  image modal ========== */
/* Modal */

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);

    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 65%;
    max-width: 800px;
    max-height: 80vh;

    border-radius: 15px;
    object-fit: contain;

    background: #fff;
    padding: 10px;

    animation: zoom .3s;
}

@keyframes zoom {

    from {
        transform: scale(.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}

.close-btn {
    position: absolute;
    top: 25px;
    right: 40px;

    color: #fff;
    font-size: 45px;
    cursor: pointer;

    transition: .3s;
}

.close-btn:hover {
    color: #0d6efd;
    transform: rotate(90deg);
}

.gallery-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    cursor: pointer;
}



/*================== video detail =======================*/
.video-detail-section {
    background: #000a1f;
    min-height: 100vh;
}

.video-detail-card {
    background: #00ffff48;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

/* Video */
.video-player {
    background: #000;
    width: 100%;
    overflow: 0;
}

.video-player video {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* Content */
.video-content {
    padding: 35px;
}

.video-badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
}

.video-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.video-content span{
    color: #fff;
}


/* Meta */
.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    color: #666;
    font-size: 15px;
}

.active-status {
    color: #28a745;
    font-weight: 600;
}

.inactive-status {
    color: #dc3545;
    font-weight: 600;
}

/* Description */
.video-description {
    color: #fff;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}

/* Button */
.back-btn {
    display: inline-block;
    text-decoration: none;
    background: #0d6efd;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    transition: .3s;
    font-weight: 600;
}

.back-btn:hover {
    background: #0b5ed7;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:991px) {
    .video-player video {
        height: 400px;
    }

    .video-content h2 {
        font-size: 28px;
    }
}

@media(max-width:768px) {
    .video-player video {
        height: 250px;
    }

    .video-content {
        padding: 20px;
    }

    .video-content h2 {
        font-size: 24px;
    }

    .video-meta {
        flex-direction: column;
        gap: 8px;
    }

    .video-description {
        font-size: 15px;
    }

    .back-btn {
        width: 100%;
        text-align: center;
    }
}




/*=========== About Details =============*/

/*==============================
    ABOUT DETAILS SECTION
==============================*/

.about-details-section {
    background: #000a1f;
    min-height: 100vh;
}

/* Image */

.about-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
    transition: .5s;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .2);
}

.about-image:hover img {
    transform: scale(1.08);
}

/* Content */

.about-content {
    background: #00ffff48;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.about-content:hover {
    transform: translateY(-5px);
}

.about-content h6 {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffa807;
    margin-bottom: 10px;
}

.about-content h5 {
    color: #38bdf8 !important;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: #FFF;
    line-height: 1.9;
    text-align: justify;
}

/* Details */

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    background: #f8f9fa;
    margin-bottom: 12px;
    padding: 14px 18px;
    border-left: 4px solid #0d6efd;
    border-radius: 10px;
    transition: .35s;
}

.detail-list li:hover {
    transform: translateX(8px);
    background: #eaf3ff;
}

.detail-list strong {
    color: #0d6efd;
}

/* Divider */

.about-content hr {
    margin: 35px 0;
    border-top: 2px dashed #ddd;
}

/* Skills */

.about-content h4 {
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
}

.badge {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 50px;
    margin: 5px;
    transition: .35s;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

/* Buttons */

.about-content .btn {
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
    margin-bottom: 10px;
}

.about-content .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
}

/* Animation */

.about-image,
.about-content {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* Responsive */

@media(max-width:991px) {

    .about-content {
        margin-top: 30px;
        padding: 30px;
    }

    .about-content h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .about-content {
        padding: 22px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .badge {
        display: inline-block;
        margin-bottom: 10px;
    }

}




/*============== Login ================*/


/*==============================
            LOGIN
===============================*/

.login-wrapper {

    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000a1f;
    padding: 40px 20px;

}

/*==============================
      Animated Background
===============================*/

.bg-circle {

    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: float 8s ease-in-out infinite;

}

.circle-1 {

    width: 320px;
    height: 320px;
    background: #00ffff48;
    top: -120px;
    left: -120px;

}

.circle-2 {

    width: 350px;
    height: 350px;
    background: #00ffff48;
    bottom: -150px;
    right: -120px;
    animation-delay: 2s;

}

@keyframes float {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-40px);

    }

    100% {

        transform: translateY(0px);

    }

}

/*==============================
          Login Card
===============================*/


/*==============================
        Login Card
===============================*/

.login-card {
    width: 450px;
    max-width: 450px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 28px 30px;
    position: relative;
    z-index: 5;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .30);
    animation: cardAnimation .9s ease;
}

@keyframes cardAnimation {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(.85);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/*==============================
          Header
===============================*/

.login-header {
    text-align: center;
    margin-bottom: 22px;
}

.login-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 10px;
    font-size: 36px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .40);
    transition: .5s;
}

.login-icon:hover {
    transform: rotate(360deg) scale(1.08);
}

.login-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-header p {
    color: #dbeafe;
    font-size: 14px;
}

/*==============================
            Inputs
===============================*/

.input-box {
    position: relative;
    margin-bottom: 16px;
}

.input-box i:first-child {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
}

.input-box input {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    padding-left: 55px;
    padding-right: 55px;
    color: #fff;
    font-size: 15px;
    transition: .4s;
}

.input-box input::placeholder {
    color: #f1f5f9;
}

.input-box input:focus {
    background: rgba(255, 255, 255, .22);
    box-shadow: 0 0 20px rgba(255, 255, 255, .25);
    transform: scale(1.02);
}

/*==============================
        Password Eye
===============================*/

.password-box span {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.password-box span:hover {
    transform: translateY(-50%) scale(1.2);
}

/*==============================
         Options
===============================*/

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 13px;
}

.login-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.login-options input {
    accent-color: #2563eb;
}

.login-options a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.login-options a:hover {
    color: #93c5fd;
}

/*==============================
         Login Button
===============================*/

.login-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .35);
}

.login-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(37, 99, 235, .45);
}

.login-btn:active {
    transform: scale(.97);
}

/*==============================
          Divider
===============================*/

.divider {
    position: relative;
    text-align: center;
    margin: 22px 0;
}

.divider::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .20);
    top: 50%;
    left: 0;
}

.divider span {
    position: relative;
    background: rgba(15, 23, 42, .80);
    padding: 0 18px;
    color: #fff;
    border-radius: 30px;
}

/*==============================
       Social Buttons
===============================*/

.social-login {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.social-login a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    background: rgba(255, 255, 255, .15);
    transition: .4s;
}

.social-login a:hover {
    transform: translateY(-6px) rotate(10deg);
    background: #fff;
    color: #2563eb;
    box-shadow: 0 15px 30px rgba(255, 255, 255, .25);
}

/*==============================
        Signup Link
===============================*/

.signup-link {
    text-align: center;
    color: #e2e8f0;
    font-size: 14px;
}

.signup-link a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.signup-link a:hover {
    color: #93c5fd;
}

/*==============================
         Responsive
===============================*/

@media(max-width:576px) {

    .login-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }

    .login-header h2 {
        font-size: 28px;
    }

    .login-options {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}



/*===================== CONTACT ============================*/


.contact-section {

    padding: 100px 0;

    background: #000a1f;

}

.section-title {

    text-align: center;

    margin-bottom: 60px;

}

.text-center h2 {

    font-size: 42px;

    font-weight: 700;

    color: #FFF;

}

.text-center p {

    color: #FFF;

    max-width: 650px;

    margin: auto;

    margin-top: 15px;

}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.info-box {

    display: flex;

    align-items: center;

    gap: 20px;

    background: #fff;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);

    transition: .3s;

}

.info-box:hover {

    transform: translateY(-5px);

}

.info-box i {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #4f46e5;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

}

.info-box h5 {

    margin-bottom: 6px;

    font-weight: 700;

}

.info-box p {

    margin: 0;

    color: #64748b;

}

.contact-form {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.form-control {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #d1d5db;

    box-shadow: none;

}

textarea.form-control {

    height: auto;

    resize: none;

}

.form-control:focus {

    border-color: #4f46e5;

    box-shadow: 0 0 0 .2rem rgba(79, 70, 229, .15);

}

.contact-btn {

    background: #4f46e5;

    color: #fff;

    border: none;

    padding: 14px 35px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.contact-btn:hover {

    background: #3730a3;

}

.contact-btn i {

    margin-left: 8px;

}

.map-box {

    margin-top: 70px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.map-box iframe {

    width: 100%;

    height: 450px;

    border: 0;

}

@media(max-width:768px) {

    .contact-section {

        padding: 70px 0;

    }

    .section-title h2 {

        font-size: 32px;

    }

    .contact-form {

        padding: 25px;

    }

}

/*============== FOR BACK BUTTON IN CONTACT ===============*/


.back-home {

    display: flex;

    justify-content: flex-start;

    margin-bottom: 40px;

}

.back-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    background: #4f46e5 !important;

    color: #fff !important;

    text-decoration: none;

    border-radius: 10px;

    font-weight: 600;

    transition: .3s;

}

.back-btn:hover {

    background: #3730a3;

    color: #fff;

    transform: translateX(-5px);

}

.back-btn i {

    font-size: 18px;

}




/*====================== SKILLS DETAILS ===========================*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skills-page {
    padding: 90px 0;
    background: #000a1f;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.top-bar {
    margin-bottom: 40px;
}

.home-btn {

    display: inline-block;

    padding: 12px 28px;

    background: #4f46e5;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.home-btn:hover {

    background: #2d1dc8;

    transform: translateY(-3px);

}

.heading {


    text-align: center;

    margin-bottom: 70px;

}

.heading span {

    color: #4f46e5;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.heading h1 {

    margin: 15px 0;

    font-size: 48px;

    color: #fff;

}

.heading p {

    color: #fff;

    max-width: 700px;

    margin: auto;

    line-height: 1.8;

}

.skills-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

    gap: 35px;

}

.skill-card {

    background: #00ffff48;
    

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s;

}

.skill-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.skill-image {

    height: 230px;

    overflow: hidden;

}

.skill-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.skill-card:hover img {

    transform: scale(1.08);

}

.skill-body {

    padding: 25px;

}

.skill-body h3 {

    font-size: 28px;

    color: #fff;

    margin-bottom: 10px;

}

.category {

    display: inline-block;

    background: #1602f8;

    color: #fff;

    padding: 6px 18px;

    border-radius: 30px;

    margin-bottom: 18px;

    font-size: 14px;

    font-weight: 600;

}

.skill-body p {

    color: #fff;

    line-height: 1.8;

    margin-bottom: 25px;

}




.info {

    display: flex;

    justify-content: space-between;

    margin-bottom: 18px;

}

.info strong {

    display: block;

    color: #fff;

    margin-bottom: 5px;

}

.info span {

    color: #fff;

}

.progress {

    width: 100%;

    height: 12px;

    background: #e5e7eb;

    border-radius: 30px;

    overflow: hidden;

}

.progress-fill {

    height: 100%;

    border-radius: 30px;

    transition: 1.5s;

}

.empty {

    text-align: center;

    padding: 80px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

@media(max-width:768px) {

    .heading h1 {

        font-size: 35px;

    }

    .info {

        flex-direction: column;

        gap: 15px;

    }

}


/*========= SKILLAS DESCRIPTION ==========================*/

.see-btn {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}

.see-btn:hover {
    text-decoration: underline;
}




/*======================================
            ALL PROJECTS 
========================================*/


.projects-section {
    background: #000a1f;
}

.projects-section h2{
    color: #fff;
}

.projects-section p{
    color: #fff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #FFF;
}

.section-subtitle {
    color: #FFF;
    max-width: 650px;
    margin: auto;
}

.project-card {

    background: #00ffff48;
    border: 1px solid #000a1f;
    border-radius: 12px;
    overflow: hidden;

    transition: .35s;

    height: 100%;

}

.project-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);

}

.project-image {

    height: 240px;

    overflow: hidden;

}

.project-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .5s;

}

.project-card:hover img {

    transform: scale(1.08);

}

.project-body {

    padding: 22px;

}

.project-body h4 {

    font-weight: 700;

    margin-bottom: 12px;
    color: #fff;

}

.project-body p {

    color: #fff;

    line-height: 1.7;

    margin-bottom: 20px;

}

.project-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;

}

.project-tags span {

    background: #0d6efd;

    color: #fff;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

}

.project-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.buttons {

    display: flex;

    gap: 10px;
    

}

.btn-project {

    text-decoration: none;

    border: 1px solid #d0d0d0;

    color: #fff;

    padding: 8px 18px;

    border-radius: 6px;

    transition: .3s;

    font-size: 14px;

}

.btn-project:hover {

    background: #0d6efd;

    color: #fff;

    border-color: #0d6efd;

}

.project-footer small {

    color: #fff;

}

@media(max-width:992px) {

    .project-image {

        height: 220px;

    }

}

@media(max-width:576px) {

    .project-image {

        height: 200px;

    }

    .section-title {

        font-size: 32px;

    }

}




/*===================================
        ALL SERVICES
=====================================*/


/*==========================
    SERVICES
===========================*/

.services-section {
    background: #000a1f;
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.section-subtitle {
    max-width: 650px;
    margin: auto;
    color: #FFF;
}

.services-card {
    background: #00ffff48;
    border-radius: 18px;
    padding: 35px 30px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #068fca;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: .4s;
}

.services-card:hover .service-icon img {
    transform: rotate(10deg) scale(1.1);
}

.services-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.services-card p {
    color: #fff !important;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-block;
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    transition: .3s;
}

.service-btn:hover {
    color: #fff;
}

@media(max-width:991px) {

    .section-title {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 25px;
    }

}