/* =========================
   NAVBAR
========================= */

.custom-navbar{

    position:fixed;
    top:22px;
    left:50%;
    transform:translateX(-50%);
    width:88%;
    max-width:1200px;
    padding:16px 38px;
    border-radius:80px;
    z-index:9999;

    backdrop-filter:blur(18px);

    background:rgba(237,242,255,0.72);

    border:1px solid rgba(37,99,235,0.08);

    box-shadow:0 10px 35px rgba(37,99,235,0.06);

    transition:0.35s ease;
}

.custom-navbar.scrolled{

    top:14px;

    background:rgba(237,242,255,0.86);

    box-shadow:0 12px 40px rgba(37,99,235,0.10);
}

/* Logo */

.logo{

    display:flex;
    align-items:center;
    gap:10px;

    font-size:34px;
    font-weight:800;

    color:#2563EB !important;

    text-decoration:none;
}

.logo img{

    width:44px;
    height:44px;
    object-fit:contain;
    display:block;
}

.logo span{

    font-size:34px;
    font-weight:700;

    background:linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Links */

.navbar-nav{
    gap:30px;
}

.nav-link{

    position:relative;

    font-size:16px;
    font-weight:600;

    color:#0F172A !important;

    transition:.3s ease;
}

.nav-link:hover{

    color:#2563EB !important;

    transform:translateY(-2px);
}

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-8px;

    width:0;
    height:2px;

    background:linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    transform:translateX(-50%);

    transition:.35s;

    border-radius:20px;
}

.nav-link:hover::after{

    width:100%;
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .custom-navbar{
        width:95%;
        padding:14px 24px;
        border-radius:24px;
        top:15px;
    }

    .logo{
        font-size:28px;
    }

    .logo img{
        width:40px;
        height:40px;
    }

    .logo span{
        font-size:28px;
    }

    .navbar-collapse{
        margin-top:20px;
        padding-top:15px;
        text-align:center;
    }

    .navbar-nav{
        gap:16px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .custom-navbar{
        width:95%;
        padding:12px 18px;
        border-radius:20px;
        top:12px;
    }

    .logo{
        font-size:22px;
        gap:8px;
    }

    .logo img{
        width:36px;
        height:36px;
    }

    .logo span{
        font-size:22px;
    }

    .navbar-toggler{
        border:none;
        box-shadow:none;
    }

    .navbar-toggler:focus{
        box-shadow:none;
    }

    .navbar-collapse{
        margin-top:15px;
        padding:18px;
        background:#ffffff;
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar-nav{
        gap:12px;
    }

    .nav-link{
        font-size:17px;
        padding:10px 0;
    }

}
/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width:768px){

    .custom-navbar{
        width:95%;
        max-width:100%;
        top:12px;
        left:50%;
        transform:translateX(-50%);
        padding:12px 18px;
        border-radius:20px;
    }

    .logo{
        display:flex;
        align-items:center;
        gap:8px;
        font-size:22px;
    }

    .logo img{
        width:40px;
        height:40px;
        object-fit:contain;
    }

    .logo span{
        font-size:22px;
        font-weight:700;
    }

    .navbar-toggler{
        border:none;
        background:transparent;
        padding:4px;
        box-shadow:none;
    }

    .navbar-toggler:focus{
        outline:none;
        box-shadow:none;
    }

    .navbar-collapse{
        margin-top:15px;
        padding:18px;
        background:#ffffff;
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .navbar-nav{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .nav-link{
        display:block;
        width:100%;
        text-align:center;
        font-size:17px;
        font-weight:600;
        padding:10px 0;
    }

}/* =========================
   HERO SECTION
========================= */

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(124,92,255,0.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(79,93,245,0.18),
            transparent 35%
        ),
        linear-gradient(
            to bottom,
            #ffffff,
            #f8faff
        );
}

/* Glow */

.hero-section::before{

    content:'';
    position:absolute;

    width:500px;
    height:500px;

    background:#2563EB;

    opacity:.08;

    filter:blur(120px);

    top:-150px;
    left:-150px;

    border-radius:50%;
}

/* Hero Content */

.hero-content{
    position:relative;
    z-index:2;
}

/* Badge */

.hero-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#EEF2FF;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:30px;
}

/* Heading */

.hero-title{

    font-size:92px;
    line-height:1;
    margin-bottom:30px;

    font-family:'Space Grotesk',sans-serif;
    font-weight:800;
    color:#081F4D;

    max-width:1000px;
}

.hero-title span{

    background:linear-gradient(
        90deg,
        #4F5DF5,
        #7C5CFF
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Text */

.hero-text{

    font-size:21px;
    line-height:1.8;
    color:#475569;
    max-width:720px;
    margin-bottom:20px;
}

/* Buttons */

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

/* Primary Button */

.btn-primary-custom{

    padding:18px 36px;

    border:none;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );

    color:#fff;

    font-weight:600;

    transition:.35s;
}

/* Secondary */

.btn-secondary-custom{

    padding:18px 36px;

    border-radius:16px;

    border:1px solid #CBD5E1;

    background:#fff;

    color:#2563EB;

    font-weight:600;

    transition:.35s;
}

/* Hover */

.btn-primary-custom:hover,
.btn-secondary-custom:hover{

    transform:translateY(-5px);
}/* =========================
   ABOUT SECTION
========================= */

.about-section{
    background:#ffffff;
}

/* Section Badge */

.section-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#EEF2FF;

    color:#2563EB;

    font-size:14px;

    font-weight:700;

    margin-bottom:28px;
}

/* Section Title */

.section-title{

    font-size:64px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;

    color:#081F4D;

    margin-bottom:25px;
}

/* Section Text */

.section-text{

    font-size:18px;
    line-height:1.9;
    color:#475569;

    margin-bottom:22px;
}

/* About Grid */

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

    margin-top:40px;
}

/* Cards */

.about-card{

    position:relative;

    overflow:hidden;

    padding:35px;

    border-radius:28px;

    backdrop-filter:blur(14px);

    background:rgba(255,255,255,0.75);

    border:1px solid rgba(0,0,0,0.05);

    transition:all .35s ease;
}

/* Background Image */

.card-bg-image{

    position:absolute;

    right:-10px;

    bottom:-10px;

    width:150px;

    opacity:.28;

    pointer-events:none;

    transition:.35s ease;
}

.about-card:hover .card-bg-image{

    opacity:.42;

    transform:scale(1.05);
}

/* Foreground Image */

.card-image{

    position:absolute;

    right:0;

    bottom:0;

    width:180px;

    opacity:.30;

    transition:.35s ease;
}

.about-card:hover .card-image{

    transform:scale(1.08);
}

/* Hover */

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(37,99,235,.08);
}

/* Card Title */

.about-card h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

    color:#081F4D;
}

/* Card Text */

.about-card p{

    font-size:16px;

    line-height:1.8;

    color:#64748B;

    margin:0;
}

/* ==========================================
   ABOUT RESPONSIVE
========================================== */

/* Tablet */

@media (max-width:991px){

    .section-title{

        font-size:52px;

        text-align:center;
    }

    .section-text{

        text-align:center;

        max-width:700px;

        margin:0 auto 30px;
    }

    .about-grid{

        grid-template-columns:1fr;

        gap:22px;
    }

    .about-card{

        padding:30px;
    }

}

/* Mobile */

@media (max-width:768px){

    .about-section{

        padding:80px 0;
    }

    .section-badge{

        display:block;

        width:fit-content;

        margin:0 auto 20px;
    }

    .section-title{

        font-size:38px;

        text-align:center;

        letter-spacing:-1px;
    }

    .section-text{

        font-size:17px;

        line-height:1.8;

        text-align:center;

        margin-bottom:30px;
    }

    .about-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .about-card{

        padding:25px;
    }

    .about-card h3{

        font-size:22px;
    }

    .card-bg-image{

        width:110px;

        opacity:.18;
    }

    .card-image{

        width:140px;

        opacity:.22;
    }

}/* =========================
   INNOVATIONS SECTION
========================= */

.innovations-section{
    background:linear-gradient(
        to bottom,
        #ffffff,
        #eef4ff
    );
}

/* Showcase */

.innovation-showcase{

    display:flex;
    justify-content:center;
    align-items:center;

    margin:40px 0;
}

.innovation-showcase img{

    width:100%;
    max-width:500px;
    height:auto;
    object-fit:contain;

    filter:drop-shadow(
        0 20px 40px rgba(79,93,245,.15)
    );
}

/* Text */

.innovations-text{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;
}

/* Cards */

.innovation-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:30px;

    padding:40px 35px;

    height:100%;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(37,99,235,.06);
}

/* Hover */

.innovation-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(37,99,235,.12);
}

/* Icon */

.innovation-icon{

    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:20px;

    margin-bottom:28px;

    font-size:24px;
    font-weight:700;

    color:#fff;

    background:linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );
}

/* Card Title */

.innovation-card h3{

    font-size:28px;

    font-weight:700;

    color:#081F4D;

    margin-bottom:20px;
}

/* Card Text */

.innovation-card p{

    font-size:16px;

    line-height:1.9;

    color:#64748B;

    margin:0;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */

@media (max-width:991px){

    .innovation-showcase{
        margin:35px 0;
    }

    .innovation-showcase img{
        max-width:420px;
    }

    .innovations-text{
        max-width:700px;
    }

    .innovation-card{
        padding:35px 30px;
    }

    .innovation-card h3{
        font-size:25px;
    }

}

/* Mobile */

@media (max-width:768px){

    .innovations-section{
        padding:80px 0;
    }

    .innovation-showcase{
        margin:30px 0;
    }

    .innovation-showcase img{
        max-width:300px;
    }

    .innovations-text{

        width:100%;

        padding:0 15px;

        margin-bottom:35px;
    }

    .innovation-card{

        padding:28px 22px;

        text-align:center;
    }

    .innovation-icon{

        width:60px;
        height:60px;

        margin:0 auto 22px;

        font-size:22px;
    }

    .innovation-card h3{

        font-size:22px;
    }

    .innovation-card p{

        font-size:16px;

        line-height:1.8;
    }

}/* =========================
   WORKFLOW SECTION
========================= */

.workflow-section{
    background:#ffffff;
}

/* Section Text */

.workflow-text{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

/* Workflow Card */

.workflow-card{

    position:relative;

    background:#F8FAFC;

    border:1px solid rgba(0,0,0,0.05);

    border-radius:28px;

    padding:40px 35px;

    height:100%;

    overflow:hidden;

    transition:all .35s ease;

    box-shadow:0 12px 35px rgba(37,99,235,.08);
}

/* Gradient Bottom Line */

.workflow-card::after{

    content:"";

    position:absolute;

    left:25px;
    right:25px;
    bottom:0;

    height:4px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );
}

/* Hover */

.workflow-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);
}

/* Number */

.workflow-number{

    width:70px;
    height:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );

    color:#ffffff;

    font-size:24px;

    font-weight:700;
}

/* Icon */

.workflow-icon{

    width:85px;
    height:85px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(37,99,235,.08);

    color:#2563EB;

    font-size:38px;
}

/* Connector */

.workflow-connector{

    width:60px;
    height:4px;

    margin:20px auto;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );
}

/* Title */

.workflow-card h3{

    font-size:28px;

    font-weight:700;

    color:#081F4D;

    margin-bottom:18px;
}

/* Text */

.workflow-card p{

    font-size:16px;

    line-height:1.8;

    color:#64748B;

    margin:0;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */

@media (max-width:991px){

    .workflow-text{
        max-width:700px;
    }

    .workflow-card{
        padding:35px 30px;
    }

    .workflow-card h3{
        font-size:25px;
    }

}

/* Mobile */

@media (max-width:768px){

    .workflow-section{
        padding:80px 0;
    }

    .workflow-text{

        width:100%;

        padding:0 15px;

        margin-bottom:35px;
    }

    .workflow-card{

        padding:28px 22px;

        text-align:center;
    }

    .workflow-number{

        width:60px;
        height:60px;

        margin:0 auto 20px;

        font-size:22px;
    }

    .workflow-icon{

        width:70px;
        height:70px;

        margin:0 auto 20px;

        font-size:30px;
    }

    .workflow-card h3{

        font-size:22px;
    }

    .workflow-card p{

        font-size:16px;

        line-height:1.7;
    }

    .workflow-connector{

        width:45px;
    }

}/* =========================
   CAREERS SECTION
========================= */

.careers-section{
    background:#F8FAFC;
}

/* Section Text */

.careers-text{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

/* Career Card */

.career-card{

    background:#ffffff;

    padding:40px 35px;

    border-radius:28px;

    height:100%;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:0 12px 35px rgba(37,99,235,0.08);

    transition:all .35s ease;
}

/* Hover */

.career-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(37,99,235,0.12);
}

/* Title */

.career-card h3{

    font-size:28px;

    font-weight:700;

    color:#081F4D;

    margin-bottom:18px;
}

/* Description */

.career-card p{

    font-size:16px;

    line-height:1.8;

    color:#64748B;

    margin-bottom:25px;
}

/* Button */

.career-card .btn{

    border-radius:12px;

    padding:12px 28px;

    font-weight:600;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */

@media (max-width:991px){

    .careers-text{
        max-width:700px;
    }

    .career-card{
        padding:35px 30px;
    }

    .career-card h3{
        font-size:25px;
    }

}

/* Mobile */

@media (max-width:768px){

    .careers-section{
        padding:80px 0;
    }

    .careers-text{

        width:100%;

        padding:0 15px;

        margin-bottom:35px;
    }

    .career-card{

        padding:28px 22px;

        text-align:center;
    }

    .career-card h3{

        font-size:22px;
    }

    .career-card p{

        font-size:16px;

        line-height:1.7;
    }

    .career-card .btn{

        width:100%;
        max-width:240px;
    }

}/* =========================
   FOOTER SECTION
========================= */

.footer-section{

    background:#0F172A;

    color:#ffffff;

    padding:90px 0 35px;
}

/* Logo */

.footer-logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
}

.footer-logo img{

    width:70px;

    height:auto;

    object-fit:contain;
}

.footer-logo span{

    font-size:36px;

    font-weight:800;

    color:#ffffff;
}

/* Footer Text */

.footer-text{

    max-width:500px;

    font-size:17px;

    line-height:1.8;

    color:#CBD5E1;

    margin-bottom:25px;
}

/* Social Icons */

.footer-social{

    display:flex;

    align-items:center;

    gap:16px;

    margin-top:25px;
}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    color:#ffffff;

    background:rgba(255,255,255,.08);

    transition:all .35s ease;
}

.footer-social a:hover{

    background:linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );

    transform:translateY(-5px);
}

/* Footer Heading */

.footer-heading{

    font-size:22px;

    font-weight:700;

    color:#ffffff;

    margin-bottom:20px;
}

/* Links */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-links a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s ease;
}

.footer-links a:hover{

    color:#ffffff;

    transform:translateX(5px);
}

.footer-links p{

    color:#CBD5E1;

    margin:0;

    line-height:1.8;
}

/* Divider */

.footer-divider{

    height:2px;

    margin:55px 0 30px;

    background:linear-gradient(
        90deg,
        transparent,
        #2563EB,
        #7C3AED,
        transparent
    );
}

/* Bottom */

.footer-bottom{

    text-align:center;

    color:#94A3B8;

    font-size:15px;
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */

@media (max-width:991px){

    .footer-section{

        text-align:center;
    }

    .footer-logo{

        justify-content:center;
    }

    .footer-text{

        margin:0 auto 25px;
    }

    .footer-social{

        justify-content:center;

        margin-bottom:35px;
    }

    .footer-heading{

        margin-top:25px;
    }

}

/* Mobile */

@media (max-width:768px){

    .footer-section{

        padding:70px 0 30px;

        text-align:center;
    }

    .footer-logo{

        justify-content:center;
    }

    .footer-logo img{

        width:55px;
    }

    .footer-logo span{

        font-size:28px;
    }

    .footer-text{

        font-size:16px;

        line-height:1.7;

        padding:0 15px;

        margin:0 auto 25px;
    }

    .footer-social{

        justify-content:center;

        flex-wrap:wrap;

        gap:14px;
    }

    .footer-social a{

        width:45px;

        height:45px;

        font-size:20px;
    }

    .footer-heading{

        margin-top:30px;

        font-size:20px;
    }

    .footer-links{

        align-items:center;
    }

    .footer-divider{

        margin:45px 0 25px;
    }

    .footer-bottom{

        font-size:14px;

        padding:0 15px;
    }

}
/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */

@media (max-width:991px){

    .hero-visual{

        min-height:500px;

        margin-top:50px;
    }

    .glow-circle{

        width:260px;
        height:260px;
    }

    .floating-card{

        padding:15px 20px;

        font-size:15px;
    }

    .card-1{

        top:40px;
        left:30px;
    }

    .card-2{

        top:190px;
        right:20px;
    }

    .card-3{

        bottom:40px;
        left:50px;
    }

}

/* Mobile */

@media (max-width:768px){

    .hero-visual{

        min-height:380px;

        margin-top:40px;
    }

    .glow-circle{

        width:200px;
        height:200px;
    }

    .floating-card{

        padding:12px 16px;

        font-size:13px;

        border-radius:16px;
    }

    .card-1{

        top:20px;
        left:10px;
    }

    .card-2{

        top:150px;
        right:10px;
    }

    .card-3{

        bottom:20px;
        left:20px;
    }

}/* ==========================================
   HERO RESPONSIVE
========================================== */

/* ---------- Tablet ---------- */

@media (max-width:991px){

    .hero-section{
        min-height:auto;
        padding-top:150px;
        padding-bottom:80px;
        text-align:center;
    }

    .hero-content{
        text-align:center;
    }

    .hero-title{
        font-size:68px;
        line-height:1.1;
        letter-spacing:-2px;
        max-width:100%;
        margin:0 auto 25px;
    }

    .hero-text{
        font-size:19px;
        line-height:1.8;
        max-width:700px;
        margin:0 auto;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;
        margin-top:35px;
    }

    .hero-visual{
        margin-top:60px;
        min-height:500px;
    }

    .glow-circle{
        width:260px;
        height:260px;
    }

    .floating-card{
        font-size:15px;
        padding:15px 20px;
    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .hero-section{
        min-height:auto;
        padding-top:140px;
        padding-bottom:70px;
        text-align:center;
    }

    .hero-content{
        text-align:center;
    }

    .hero-title{
        font-size:48px;
        line-height:1.15;
        letter-spacing:-1px;
        max-width:100%;
        margin-bottom:20px;
    }

    .hero-text{
        font-size:17px;
        line-height:1.7;
        max-width:100%;
        padding:0 15px;
        margin:0 auto;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:16px;
        margin-top:30px;
    }

    .btn-primary-custom,
    .btn-secondary-custom{
        width:100%;
        max-width:280px;
    }

    .hero-visual{
        min-height:380px;
        margin-top:40px;
    }

    .glow-circle{
        width:200px;
        height:200px;
    }

    .floating-card{
        font-size:13px;
        padding:12px 16px;
    }

    .card-1{
        top:20px;
        left:10px;
    }

    .card-2{
        top:150px;
        right:10px;
    }

    .card-3{
        bottom:20px;
        left:20px;
    }

}
/* =========================
   INTERNSHIP MODAL
========================= */

.internship-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    background:rgba(15,23,42,.75);

    backdrop-filter:blur(12px);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:all .35s ease;

    z-index:9999;
}

/* Active */

.internship-modal.active{

    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* Modal Box */

.internship-container{

    width:100%;
    max-width:650px;

    max-height:90vh;

    overflow-y:auto;

    background:#ffffff;

    padding:45px;

    border-radius:28px;

    position:relative;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    animation:modalFade .35s ease;
}

/* Close Button */

.close-modal{

    position:absolute;

    top:18px;
    right:22px;

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:28px;

    color:#475569;

    cursor:pointer;

    transition:.3s ease;
}

.close-modal:hover{

    background:#EEF2FF;

    color:#2563EB;

    transform:rotate(90deg);
}

/* Animation */

@keyframes modalFade{

    from{
        opacity:0;
        transform:translateY(20px) scale(.95);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .internship-container{

        max-width:600px;

        padding:40px 35px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .internship-modal{

        padding:15px;
    }

    .internship-container{

        width:100%;

        max-height:85vh;

        padding:30px 20px;

        border-radius:22px;
    }

    .close-modal{

        top:15px;
        right:15px;

        width:36px;
        height:36px;

        font-size:24px;
    }

}/* =========================
   PARTICLES
========================= */

#particles-js{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    overflow:hidden;

    z-index:1;
}

/* Hero Content Above Particles */

.hero-content,
.hero-visual{

    position:relative;

    z-index:2;
}
/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    #particles-js{
        display:none;
    }

    .floating-card{

        animation-duration:4.5s;
    }

}/* =========================
   CARD HOVER EFFECT
========================= */

.about-card,
.innovation-card,
.workflow-card,
.career-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.about-card:hover,
.innovation-card:hover,
.workflow-card:hover,
.career-card:hover{

    transform:translateY(-8px);

    border-color:rgba(37,99,235,.15);

    box-shadow:
        0 20px 45px rgba(37,99,235,.12);
}

/* Mobile */

@media (max-width:768px){

    .about-card:hover,
    .innovation-card:hover,
    .workflow-card:hover,
    .career-card:hover{

        transform:translateY(-5px);

        box-shadow:
            0 15px 30px rgba(37,99,235,.10);
    }

}/* =========================
   SECTION DIVIDERS
========================= */

/* Light Sections */

.about-section,
.workflow-section{

    background:linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );
}

/* Alternate Sections */

.innovations-section,
.careers-section{

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F8FAFC 100%
    );
}

/* Footer */

.footer-section{

    background:#0F172A;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

    .about-section,
    .innovations-section,
    .workflow-section,
    .careers-section{

        padding:90px 0;
    }

}

@media (max-width:768px){

    .about-section,
    .innovations-section,
    .workflow-section,
    .careers-section{

        padding:70px 0;
    }

}/* =========================
   SECTION BACKGROUNDS
========================= */

/* Light Gradient Sections */

.about-section,
.workflow-section{

    background:linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );
}

/* Alternate Gradient Sections */

.innovations-section,
.careers-section{

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F8FAFC 100%
    );
}

/* Dark Footer */

.footer-section{

    background:#0F172A;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

    .about-section,
    .innovations-section,
    .workflow-section,
    .careers-section{

        padding:90px 0;
    }

}

@media (max-width:768px){

    .about-section,
    .innovations-section,
    .workflow-section,
    .careers-section{

        padding:70px 0;
    }

}/* =========================
   GLOBAL SECTION SPACING
========================= */

section{

    position:relative;

    padding:110px 0;
}

/* =========================
   SECTION BACKGROUNDS
========================= */

.about-section,
.workflow-section{

    background:linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );
}

.innovations-section,
.careers-section{

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F8FAFC 100%
    );
}

/* =========================
   GLOBAL HEADINGS
========================= */

h2{

    margin-bottom:24px;

    font-weight:800;

    line-height:1.15;

    color:#081F4D;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */

@media (max-width:991px){

    section{
        padding:90px 0;
    }

    h2{
        margin-bottom:20px;
    }

}

/* Mobile */

@media (max-width:768px){

    section{
        padding:70px 0;
    }

    h2{
        margin-bottom:18px;
        line-height:1.2;
    }

}/* =========================
   PREMIUM NAVBAR
========================= */

.custom-navbar{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.30);

    transition:all .35s ease;

    z-index:9999;
}

/* Navbar When Scrolled */

.custom-navbar.scrolled{

    background:rgba(255,255,255,.85);

    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

/* Logo */

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:34px;

    font-weight:800;

    color:#2563EB !important;

    text-decoration:none;
}

.logo img{

    width:44px;

    height:44px;

    object-fit:contain;
}

/* Navigation */

.navbar-nav{

    gap:18px;
}

.nav-link{

    position:relative;

    font-size:16px;

    font-weight:600;

    color:#0F172A !important;

    transition:.3s ease;
}

.nav-link:hover{

    color:#2563EB !important;
}

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    transform:translateX(-50%);

    transition:.35s;
}

.nav-link:hover::after{

    width:100%;
}

/* CTA Button */

.nav-cta{

    border:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:700;

    color:#ffffff;

    background:linear-gradient(
        90deg,
        #2563EB,
        #7C3AED
    );

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(37,99,235,.18);
}

.nav-cta:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(37,99,235,.22);
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .navbar-collapse{

        margin-top:20px;

        padding:20px;

        border-radius:20px;

        background:rgba(255,255,255,.95);

        backdrop-filter:blur(14px);

        text-align:center;
    }

    .nav-cta{

        width:100%;

        margin-top:20px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .custom-navbar{

        width:95%;

        padding:12px 18px;

        border-radius:20px;
    }

    .logo{

        font-size:22px;

        gap:8px;
    }

    .logo img{

        width:40px;

        height:40px;
    }

    .logo span{

        font-size:22px;
    }

    .navbar-nav{

        gap:12px;
    }

    .nav-link{

        font-size:17px;

        padding:10px 0;
    }

}/* =========================
   VISION MODAL
========================= */

.vision-modal{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    background:rgba(15,23,42,.75);

    backdrop-filter:blur(12px);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:all .35s ease;

    z-index:99999;
}

/* Active */

.vision-modal.active{

    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* Modal Container */

.vision-container{

    position:relative;

    width:100%;
    max-width:720px;

    max-height:90vh;

    overflow-y:auto;

    padding:50px;

    border-radius:30px;

    background:rgba(255,255,255,.96);

    box-shadow:0 25px 60px rgba(37,99,235,.15);

    animation:visionFade .35s ease;
}

/* Heading */

.vision-container h2{

    font-size:36px;

    font-weight:800;

    color:#081F4D;

    margin-bottom:20px;
}

/* Text */

.vision-text{

    font-size:18px;

    line-height:1.9;

    color:#475569;


    margin-top:20px;
}

/* Close Button */

.vision-close{

    position:absolute;

    top:18px;
    right:20px;

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    cursor:pointer;

    font-size:28px;

    color:#64748B;

    transition:.3s ease;
}

.vision-close:hover{

    background:#EEF2FF;

    color:#2563EB;

    transform:rotate(90deg);
}

/* Animation */

@keyframes visionFade{

    from{
        opacity:0;
        transform:translateY(20px) scale(.95);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .vision-container{

        max-width:650px;

        padding:40px 35px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .vision-modal{

        padding:15px;
    }

    .vision-container{

        width:100%;

        max-height:85vh;

        padding:30px 20px;

        border-radius:22px;
    }

    .vision-container h2{

        font-size:28px;

        text-align:center;
    }

    .vision-text{

        font-size:16px;

        line-height:1.8;

        text-align:center;
    }

    .vision-close{

        top:15px;
        right:15px;

        width:36px;
        height:36px;

        font-size:24px;
    }

}/* ==========================================
   HERO RESPONSIVE
========================================== */

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .hero-section{
        min-height:auto;
        padding-top:150px;
        padding-bottom:90px;
        text-align:center;
    }

    .hero-content{
        text-align:center;
        margin:0 auto;
    }

    .hero-title{
        font-size:64px;
        line-height:1.1;
        letter-spacing:-2px;
        max-width:100%;
        margin:0 auto 25px;
    }

    .hero-text{
        font-size:19px;
        line-height:1.8;
        max-width:700px;
        margin:0 auto;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:18px;
        margin-top:35px;
    }

    .hero-visual{
        margin-top:60px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .hero-section{
        min-height:auto;
        padding-top:130px;
        padding-bottom:70px;
        text-align:center;
    }

    .hero-content{
        text-align:center;
    }

    .hero-title{
        font-size:42px;
        line-height:1.15;
        letter-spacing:-1px;
        max-width:100%;
        margin:0 auto 20px;
    }

    .hero-text{
        font-size:17px;
        line-height:1.8;
        max-width:100%;
        padding:0 15px;
        margin:0 auto;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:16px;
        margin-top:30px;
    }

    .btn-primary-custom,
    .btn-secondary-custom{
        width:100%;
        max-width:280px;
    }

    .hero-visual{
        margin-top:40px;
    }

    margin-top:20px;
}

/* Close Button */

.vision-close{

    position:absolute;

    top:18px;
    right:20px;

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    cursor:pointer;

    font-size:28px;

    color:#64748B;

    transition:.3s ease;
}

.vision-close:hover{

    background:#EEF2FF;

    color:#2563EB;

    transform:rotate(90deg);
}

/* Animation */

@keyframes visionFade{

    from{
        opacity:0;
        transform:translateY(20px) scale(.95);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}



@media (max-width:991px){

    .vision-container{

        max-width:650px;

        padding:40px 35px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .vision-modal{

        padding:15px;
    }

    .vision-container{

        width:100%;

        max-height:85vh;

        padding:30px 20px;

        border-radius:22px;
    }

    .vision-container h2{

        font-size:28px;

        text-align:center;
    }

    .vision-text{

        font-size:16px;

        line-height:1.8;

        text-align:center;
    }

    .vision-close{

        top:15px;
        right:15px;

        width:36px;
        height:36px;

        font-size:24px;
    }

}/* ==========================================
   HERO RESPONSIVE
========================================== */

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .hero-section{
        min-height:auto;
        padding-top:150px;
        padding-bottom:90px;
        text-align:center;
    }

    .hero-content{
        text-align:center;
        margin:0 auto;
    }

    .hero-title{
        font-size:64px;
        line-height:1.1;
        letter-spacing:-2px;
        max-width:100%;
        margin:0 auto 25px;
    }

    .hero-text{
        font-size:19px;
        line-height:1.8;
        max-width:700px;
        margin:0 auto;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:18px;
        margin-top:35px;
    }

    .hero-visual{
        margin-top:60px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .hero-section{
        min-height:auto;
        padding-top:130px;
        padding-bottom:70px;
        text-align:center;
    }

    .hero-content{
        text-align:center;
    }

    .hero-title{
        font-size:42px;
        line-height:1.15;
        letter-spacing:-1px;
        max-width:100%;
        margin:0 auto 20px;
    }

    .hero-text{
        font-size:17px;
        line-height:1.8;
        max-width:100%;
        padding:0 15px;
        margin:0 auto;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:16px;
        margin-top:30px;
    }

    .btn-primary-custom,
    .btn-secondary-custom{
        width:100%;
        max-width:280px;
    }

    .hero-visual{
        margin-top:40px;
    }

}