*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#f7f9fc;
    color:#222;
    overflow-x:hidden;
}
/* Moving Shine Effect */

.navbar::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:55%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.95),
    transparent
    );

    transform:skewX(-25deg);

    animation:redRibbonShine 5s linear infinite;
}

@keyframes redRibbonShine{

    0%{
        left:-120%;
    }

    100%{
        left:160%;
    }
}
/* Soft Gradient Border */

.navbar::after{

    content:'';

    position:absolute;

    inset:0;

    border-radius:24px;

    padding:1px;

    background:
    linear-gradient(
    135deg,
    rgba(248,113,113,0.35),
    rgba(255,255,255,0.8)
    );

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    pointer-events:none;
}
/* Logo */
/* ======
   DEVSTACK LOGO
========================= */

.logo{

    display:flex;

    flex-direction:column;

    justify-content:center;
}
/* Main Logo */

.logo h1{

    display:flex;

    align-items:center;

    gap:4px;

    font-size:40px;

    font-weight:1000;

    font-family:
    'Poppins',
    sans-serif;

    letter-spacing:1px;

    margin:0;
}
/* D */

.d{

    color:#2563eb;
}

/* CUSTOM E */
.custom-e{

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    width:20px;

    height:30px;

    margin:0 2px;
}
/* E Bars */
.custom-e span{

    display:block;

    width:100%;

    height:6px;

    background:#FF0000;

    border-radius:5px;
}
/* Middle Bar Short */

.custom-e span:nth-child(2){

    width:75%;
}
/* V */

.v{

    color:#2563eb;

    margin-right:4px;
}
/* STACK */

.stack{

    color:#111827;
}
/* Tagline */

.logo p{

    margin-top:8px;

    margin-left:8px;

    font-size:12px;

    letter-spacing:1px;

    color:#000000;

    font-weight:900;
}
/* Navigation */
nav{

    display:flex;

    align-items:center;

    gap:38px;

    z-index:2;
}

nav a{

    text-decoration:none;

    color:#7f1d1d;

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:0.35s;
}
/* Hover Effect */
nav a:hover{

    color:#dc2626;

    transform:translateY(-2px);
}
/* Animated Underline */
nav a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:
    linear-gradient(
    90deg,
    #f87171,
    #dc2626
    );

    border-radius:20px;

    transition:0.35s;
}

nav a:hover::after{

    width:100%;
}
/* Hover Glow */
nav a:hover{

    text-shadow:
    0 0 12px rgba(239,68,68,0.18);
}
/* Mobile Responsive */

@media(max-width:950px){

    .navbar{

        height:75px;

        padding:0 18px;
    }

    nav{

        gap:14px;
    }

    nav a{

        font-size:11px;
    }

    .logo{

        font-size:24px;
    }
}
/* Mobile */
@media(max-width:950px){

    .navbar{

        height:75px;

        padding:0 20px;
    }

    nav{

        gap:14px;
    }

    nav a{

        font-size:11px;
    }

    .logo{

        font-size:24px;
    }
}
/* Hero */
.hero{
    min-height:100vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:120px 8%;
}

.hero-left{
    width:55%;
}

.hero-left h1{
    font-size:58px;
    line-height:1.25;
    font-weight:700;
    color:#111827;
}

.typing{
    color:#2563eb;
    border-right:3px solid #2563eb;
    padding-right:5px;
}

.hero-left p{
    margin-top:22px;
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
}

.apply-btn{
    margin-top:35px;

    padding:16px 36px;

    border:none;
    border-radius:12px;

    background:#2563eb;

    color:white;
    font-size:16px;
    font-weight:600;

    cursor:pointer;
    transition:0.4s;
}

.apply-btn:hover{
    transform:translateY(-4px);
    background:#1749b3;
    box-shadow:0 10px 25px rgba(37,99,235,0.2);
}
/* Right Hero */
.hero-right{
    width:40%;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:420px;
    animation:float 4s ease-in-out infinite;
}
/* Courses */
.internships{
    padding:90px 8%;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    color:#111827;
}

.course-container{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}
.course-card{
    width:340px;

    background:white;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid #e5e7eb;

    transition:0.4s;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.course-card img{
    width:95px;
}

.course-card h3{
    margin-top:18px;
    font-size:26px;
    color:#111827;
}

.course-card p{
    margin-top:15px;
    color:#6b7280;
    line-height:1.7;
}

.course-card button{
    margin-top:24px;

    padding:13px 28px;

    border:none;

    border-radius:10px;

    background:#2563eb;

    color:white;

    cursor:pointer;

    transition:0.3s;
}

.course-card button:hover{
    background:#1749b3;
}
/* Features */
.features{
    padding:90px 8%;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.feature-box{
    background:white;

    padding:35px;

    border-radius:18px;

    border:1px solid #e5e7eb;

    transition:0.4s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 14px 35px rgba(0,0,0,0.08);
}

.feature-box h3{
    margin-bottom:15px;
    color:#2563eb;
}

.feature-box p{
    color:#6b7280;
    line-height:1.8;
}
/* Footer */
footer{
    background:white;
    padding:70px 8% 25px;
    border-top:1px solid #e5e7eb;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.footer-box{
    display:flex;
    flex-direction:column;
}

.footer-box h3{
    margin-bottom:18px;
    color:#111827;
}

.footer-box a{
    text-decoration:none;
    color:#6b7280;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#2563eb;
    transform:translateX(5px);
}

.copyright{
    text-align:center;
    margin-top:45px;
    color:#9ca3af;
}
/* Animation */
@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }
}
/* Responsive */
@media(max-width:950px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-left{
        width:100%;
    }

    .hero-right{
        width:100%;
        margin-top:50px;
    }

    .hero-left h1{
        font-size:42px;
    }

    nav{
        gap:14px;
    }

    nav a{
        font-size:12px;
    }

    .hero-right img{
        width:300px;
    }
  /* ==========
   ULTRA SMOOTH SCROLL
========================= */

html{
    scroll-behavior:smooth;
}
/* =========================
   PREMIUM MOUSE EFFECT
========================= */
.mouse-light{

    position:fixed;

    width:550px;
    height:550px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(96,165,250,0.18) 0%,
    rgba(96,165,250,0.08) 35%,
    transparent 72%);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

    filter:blur(10px);

    transition:
    left 0.08s linear,
    top 0.08s linear;
}
/* =========================
   MOUSE PARTICLES
========================= */
.particle{

    position:fixed;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#60a5fa;

    pointer-events:none;

    z-index:9999;

    opacity:0.5;

    animation:particleFade 0.6s linear forwards;
}

@keyframes particleFade{

    0%{
        transform:scale(1);
        opacity:0.6;
    }

    100%{
        transform:scale(0);
        opacity:0;
    }
}
/* =========================
   COURSE CARD PREMIUM EFFECT
========================= */
/* Floating Tiny Dots */

.dot{
    position:fixed;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#2563eb;

    pointer-events:none;

    opacity:0.4;

    z-index:9999;

    transition:transform 0.2s linear;
}
}
/* =========================
   COURSE CARD PREMIUM EFFECT
========================= */
.course-card{

    position:relative;

    overflow:hidden;

    transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.course-card::before{

    content:'';

    position:absolute;

    top:-100%;
    left:-100%;

    width:220%;
    height:220%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent);

    transform:rotate(20deg);

    transition:0.8s;
}

.course-card:hover::before{

    top:100%;
    left:100%;
}

.course-card:hover{

    transform:
    translateY(-16px)
    scale(1.03);

    box-shadow:
    0 22px 45px rgba(0,0,0,0.12);
}

/* =========================
   FEATURE BOX EFFECT
========================= */
.about-section{

    padding:120px 8%;

    background:#ffffff;
}
/* Container */

/* =========================
ABOUT SECTION
========================= */

.about-section{

    padding:120px 8%;

    background:
    linear-gradient(
    135deg,
    #f8f9fc,
    #eef2ff
    );
}



/* MAIN CONTAINER */

.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    flex-wrap:wrap;
}



/* LEFT IMAGE */

.about-left{

    flex:1;
}



/* IMAGE BOX */

.about-image-box{

    position:relative;

    width:100%;

    max-width:520px;

    margin:auto;

    border-radius:35px;

    overflow:hidden;

    transform:
    perspective(1200px)
    rotateY(-8deg);

    transition:0.5s;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.18);
}



/* IMAGE */

.about-image-box img{

    width:100%;

    display:block;

    object-fit:cover;

    transition:0.5s;
}



/* HOVER EFFECT */

.about-image-box:hover{

    transform:
    perspective(1200px)
    rotateY(0deg)
    scale(1.03);

    box-shadow:
    0 35px 80px rgba(37,99,235,0.22);
}



.about-image-box:hover img{

    transform:scale(1.05);
}



/* RIGHT SIDE */

.about-right{

    flex:1;

    min-width:320px;
}



/* TITLE */

.about-right h1{

    font-size:55px;

    color:#111827;

    margin-bottom:18px;

    font-weight:800;
}



/* LINE */

.about-line{

    width:120px;

    height:5px;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #2563eb,
    #60a5fa
    );

    margin-bottom:30px;
}



/* TEXT */

.about-right p{

    font-size:18px;

    line-height:2;

    color:#475569;

    margin-bottom:22px;
}



/* GRID */

.about-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    margin-top:40px;
}



/* CARD */

.about-card{

    background:white;

    padding:28px;

    border-radius:22px;

    transition:0.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.06);
}



/* CARD HOVER */

.about-card:hover{

    transform:
    translateY(-10px);

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #60a5fa
    );

    color:white;
}



/* CARD TITLE */

.about-card h3{

    font-size:26px;

    margin-bottom:10px;
}



/* CARD TEXT */

.about-card span{

    font-size:15px;
}



/* MOBILE */

@media(max-width:900px){

    .about-container{

        flex-direction:column;
    }

    .about-right h1{

        font-size:40px;

        text-align:center;
    }

    .about-line{

        margin:auto;
        margin-bottom:30px;
    }

    .about-right p{

        text-align:center;
    }

}
/* =========================
   FOOTER
========================= */
.footer{

    background:#d6d3d1;

    padding-top:80px;

    margin-top:100px;

    border-top-left-radius:40px;

    border-top-right-radius:40px;
}
/* Container */
.footer-container{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:50px;

    padding-bottom:50px;
}
/* Headings */
.footer-box h3{

    color:#1f2937;

    margin-bottom:22px;

    font-size:24px;
}
/* Links */

.footer-box a{

    display:block;

    text-decoration:none;

    color:#4b5563;

    margin-bottom:16px;

    transition:0.3s;

    font-size:16px;
}
/* Hover */

.footer-box a:hover{

    transform:
    translateX(6px);

    color:#111827;
}
/* Social */
.social-link{

    display:flex !important;

    align-items:center;

    gap:12px;
}
/* Icon Size */

.social-link i{

    font-size:22px;
}
/* Original Brand Colors */
.linkedin{

    color:#0A66C2;
}


.instagram{

    color:#E1306C;
}


.telegram{

    color:#229ED9;
}


.email{

    color:#f59e0b;
}
/* Bottom */

.footer-bottom{

    text-align:center;

    padding:24px;

    border-top:
    1px solid rgba(0,0,0,0.08);

    color:#4b5563;

    font-size:15px;
}

.about-image{

    display:flex;

    justify-content:center;

    margin-top:20px;
}


.about-image img{

    width:320px;

    height:auto;

    object-fit:contain;

    transition:0.4s;
}



/* Hover Effect */

.about-image img:hover{

    transform:
    scale(1.05);
}

/* =========================
   NAVBAR
========================= */
.navbar{

    position:fixed;

    top:18px;

    left:50%;

    transform:translateX(-50%);

    width:94%;

    height:82px;

    padding:0 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:
    rgba(255,240,240,0.85);

    backdrop-filter:blur(14px);

    border-radius:28px;

    z-index:1000;
}


------------------------------------------------------------------------




/* ================= SCROLL POP-UP (NO HTML CLASS NEEDED) ================= */

.scroll-item{
    opacity:0;
    transform:translateY(80px);
    transition:all 0.7s ease;
}

.scroll-item.active{
    opacity:1;
    transform:translateY(0);
}


/* =========================
   MOBILE RESPONSIVE NAVBAR
========================= */

/* Hamburger icon hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #111;
    background: none;
    border: none;
}

/* Mobile view */
@media (max-width: 768px) {

    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
        position: relative;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    /* Hide nav links by default */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff5f5;
        margin-top: 15px;
        border-radius: 15px;
        padding: 15px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        text-align: center;
    }

    /* Show menu when active */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .nav-links a:hover {
        background: rgba(220, 38, 38, 0.08);
    }
}



/* =========================
   NAVBAR DEFAULT
========================= */
.navbar {
    width: 95%;
    margin: 20px auto;
    padding: 18px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff5f5;
    border: 1px solid #f5bcbc;
    border-radius: 20px;
    position: relative;
    z-index: 1000;
}

.logo h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
}

.logo h1 span {
    color: #2563eb;
}

.logo p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -5px;
    color: #111;
}

/* Desktop Menu */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    color: #7f1d1d;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #2563eb;
}

/* Hide Hamburger on Desktop */
.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: #111;
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {

    .navbar {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo h1 {
        font-size: 30px;
    }

    .logo p {
        font-size: 11px;
    }

    /* Show Hamburger */
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    /* Hide Ribbon Options Initially */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        margin-top: 15px;
        border-radius: 15px;
        padding: 15px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        text-align: center;
    }

    /* Show when clicked */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    .nav-links li a:hover {
        background: rgba(37, 99, 235, 0.08);
    }
}

/* =========================
GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');



/* =========================
WRAPPER
========================= */

.features-wrapper{

    padding:90px 8%;

    background:#eef3f9;

    font-family:'Space Grotesk',sans-serif;
}



/* =========================
HEADING
========================= */

.section-heading{

    text-align:center;

    margin-bottom:60px;
}



.section-heading h1{

    font-size:60px;

    color:#2563eb;

    margin-bottom:18px;

    font-weight:700;
}



.section-heading p{

    font-size:22px;

    color:#475569;

    line-height:1.8;
}



/* =========================
FEATURE GRID
========================= */

.features-section{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;
}



/* =========================
FEATURE BOX
========================= */

.feature-box{

    padding:40px 28px;

    border-radius:22px;

    min-height:320px;

    text-align:center;

    transition:0.4s;

    border:2px solid rgba(255,255,255,0.5);

    box-shadow:
    0 10px 25px rgba(0,0,0,0.06);
}



.feature-box:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 18px 35px rgba(0,0,0,0.10);
}



/* =========================
ICONS
========================= */

.icon{

    font-size:52px;

    margin-bottom:22px;
}



/* =========================
TITLE
========================= */

.feature-box h2{

    font-size:28px;

    margin-bottom:18px;

    color:#0f172a;

    font-weight:700;
}



/* =========================
TEXT
========================= */

.feature-box p{

    font-size:17px;

    line-height:1.9;

    color:#475569;
}



/* =========================
LIGHT COLORS
========================= */

.box1{

    background:#ffe5ef;
}



.box2{

    background:#dff4ff;
}



.box3{

    background:#fff2d9;
}



.box4{

    background:#e4ffe9;
}



/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .section-heading h1{

        font-size:42px;
    }

    .section-heading p{

        font-size:18px;
    }

    .feature-box{

        min-height:auto;
    }

}
/* =========================
FAQ SECTION
========================= */

.faq-section{

    width:100%;

    max-width:950px;

    margin:auto;

    padding:70px 20px;

    background:#eef3f9;

    font-family:'Poppins',sans-serif;
}



/* =========================
HEADING
========================= */

.faq-heading{

    text-align:center;

    margin-bottom:40px;
}



.faq-heading h1{

    font-size:42px;

    color:#EE4B2B;

    margin-bottom:12px;

    font-weight:700;
}



.faq-heading p{

    font-size:18px;

    color:#64748b;
}



/* =========================
FAQ BOX
========================= */

.faq-box{

    background:#ffffff;

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

    border:1px solid #dbe4f0;

    box-shadow:
    0 6px 18px rgba(0,0,0,0.05);
}



/* =========================
QUESTION
========================= */

.faq-question{

    padding:20px 24px;

    font-size:20px;

    font-weight:600;

    cursor:pointer;

    color:#0f172a;

    background:#f8fbff;

    list-style:none;
}



/* REMOVE DEFAULT ARROW */

.faq-question::-webkit-details-marker{

    display:none;
}



/* =========================
ANSWER
========================= */

.faq-answer{

    padding:0 24px 24px;
}



/* ANSWER FONT */

.faq-answer p{

    font-size:17px;

    line-height:1.8;

    color:#475569;

    font-family:'Trebuchet MS',sans-serif;

    letter-spacing:0.5px;
}



/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .faq-heading h1{

        font-size:32px;
    }

    .faq-question{

        font-size:17px;

        padding:18px;
    }

    .faq-answer p{

        font-size:15px;
    }

}