
    :root{
        --theme:#0d6efd;
        --theme-rgb:13,110,253;
        --theme2:#00c6ff;
        --theme2-rgb:0,198,255;
        --dark:#071120;
        --white:#ffffff;
        --text:#0f172a;
        --muted:#64748b;
        --light:#f5f9ff;
        --border:#e5edf7;
        --shadow:0 20px 60px rgba(15,23,42,.10);
        --gradient:linear-gradient(135deg,var(--theme),var(--theme2));
    }

    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    html{
        scroll-behavior:smooth;
    }

    body{
        font-family:'Inter',sans-serif;
        background:#f8fbff;
        color:var(--text);
        overflow-x:hidden;
    }

    body.menu-open{
        overflow:hidden;
    }

    a{
        text-decoration:none;
        color:inherit;
    }

    ul{
        list-style:none;
    }

    img{
        max-width:100%;
        display:block;
    }

    button,
    input{
        font-family:inherit;
    }

    button{
        cursor:pointer;
    }

    .container{
        width:100%;
        max-width:1280px;
        margin:auto;
        padding:0 20px;
    }

    section{
        padding:90px 0;
        scroll-margin-top:100px;
    }

    .btn{
        padding:14px 26px;
        border-radius:16px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:9px;
        border:none;
        font-weight:800;
        cursor:pointer;
        transition:.35s;
    }

    .btn-primary{
        background:var(--gradient);
        color:#fff;
        box-shadow:0 12px 30px rgba(var(--theme-rgb),.25);
    }

    .btn-primary:hover{
        transform:translateY(-4px);
        box-shadow:0 18px 38px rgba(var(--theme-rgb),.32);
    }

    .btn-outline{
        background:#fff;
        color:var(--theme);
        border:1px solid rgba(var(--theme-rgb),.22);
    }

    .btn-outline:hover{
        background:var(--gradient);
        color:#fff;
    }

    .section-title{
        text-align:center;
        max-width:850px;
        margin:0 auto 55px;
    }

    .section-title > span{
        display:inline-flex;
        padding:9px 16px;
        border-radius:40px;
        background:rgba(var(--theme-rgb),.10);
        color:var(--theme);
        font-size:13px;
        font-weight:900;
        margin-bottom:15px;
        text-transform:uppercase;
    }

    .section-title h2{
        font-size:46px;
        line-height:1.2;
        font-weight:900;
        margin-bottom:14px;
    }

    .section-title p{
        color:var(--muted);
        line-height:1.8;
    }

    .text-gradient{
        background:var(--gradient);
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent;
        background-clip:text;
    }

    .grid-2{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .grid-3{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:30px;
    }

    .grid-4{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:25px;
    }

    .theme-switcher{
        position:fixed;
        left:0;
        bottom:90px;
        z-index:99990;
        display:flex;
        align-items:flex-end;
    }

    .theme-panel{
        position:absolute;
        left:0;
        bottom:0;
        width:225px;
        padding:20px;
        background:#fff;
        border:1px solid var(--border);
        border-left:none;
        border-radius:0 22px 22px 0;
        box-shadow:0 20px 55px rgba(15,23,42,.18);
        transform:translateX(-110%);
        transition:.35s;
    }

    .theme-switcher.active .theme-panel{
        transform:translateX(0);
    }

    .theme-toggle{
        position:relative;
        z-index:2;
        width:55px;
        height:55px;
        border:none;
        border-radius:0 16px 16px 0;
        background:var(--gradient);
        color:#fff;
        font-size:22px;
        box-shadow:0 14px 35px rgba(var(--theme-rgb),.30);
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .theme-switcher.active .theme-toggle{
        transform:translateX(225px);
    }

    .theme-toggle,
    .theme-panel{
        transition:.35s;
    }

    .theme-toggle i{
        animation:themeRotate 3s linear infinite;
    }

    @keyframes themeRotate{
        from{
            transform:rotate(0deg);
        }

        to{
            transform:rotate(360deg);
        }
    }

    .theme-panel h4{
        font-size:16px;
        margin-bottom:7px;
    }

    .theme-panel p{
        color:var(--muted);
        font-size:11px;
        line-height:1.6;
        margin-bottom:15px;
    }

    .theme-colors{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:10px;
    }

    .theme-color{
        width:37px;
        height:37px;
        border-radius:12px;
        border:3px solid #fff;
        box-shadow:0 0 0 1px #dce5ef;
        transition:.25s;
    }

    .theme-color:hover,
    .theme-color.active{
        transform:scale(1.12);
        box-shadow:0 0 0 3px rgba(var(--theme-rgb),.22);
    }

    .theme-reset{
        width:100%;
        margin-top:15px;
        border:none;
        padding:11px 12px;
        border-radius:12px;
        background:#eef5ff;
        color:var(--theme);
        font-size:12px;
        font-weight:800;
    }

    .topbar{
        background:#071120;
        padding:11px 0;
        color:#fff;
    }

    .topbar-wrap{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:20px;
        flex-wrap:wrap;
    }

    .topbar-left,
    .topbar-right{
        display:flex;
        gap:22px;
        flex-wrap:wrap;
    }

    .topbar a,
    .topbar span{
        color:#dbeafe;
        font-size:13px;
        font-weight:600;
        display:flex;
        align-items:center;
        gap:8px;
    }

    .topbar i{
        color:var(--theme2);
    }

    header{
        position:sticky;
        top:0;
        z-index:9999;
        background:rgba(255,255,255,.96);
        backdrop-filter:blur(14px);
        box-shadow:0 8px 30px rgba(15,23,42,.07);
    }

    .navbar{
        min-height:94px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:25px;
    }

    .logo img{
        height:78px;
        width:auto;
        object-fit:contain;
    }

    .menu{
        display:flex;
        align-items:center;
        gap:23px;
    }

    .menu > li{
        position:relative;
    }

    .menu > li > a{
        min-height:94px;
        display:flex;
        align-items:center;
        gap:7px;
        color:#172033;
        font-size:14px;
        font-weight:800;
        transition:.3s;
        position:relative;
    }

    .menu > li > a:after{
        content:'';
        position:absolute;
        left:0;
        right:0;
        bottom:22px;
        width:0;
        height:3px;
        margin:auto;
        border-radius:20px;
        background:var(--gradient);
        transition:.35s;
    }

    .menu > li:hover > a,
    .menu > li.active > a{
        color:var(--theme);
    }

    .menu > li:hover > a:after,
    .menu > li.active > a:after{
        width:100%;
    }

    .menu .join-btn{
        min-height:auto;
        padding:13px 18px;
        border-radius:15px;
        background:var(--gradient);
        color:#fff !important;
        box-shadow:0 12px 28px rgba(var(--theme-rgb),.25);
    }

    .menu .join-btn:after{
        display:none;
    }

    .submenu{
        position:absolute;
        top:115%;
        left:-20px;
        width:310px;
        padding:14px;
        border-radius:24px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:0 25px 65px rgba(15,23,42,.16);
        opacity:0;
        visibility:hidden;
        transform:translateY(15px);
        transition:.35s;
        z-index:999;
    }

    .dropdown:hover .submenu{
        top:100%;
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .submenu li a{
        display:flex;
        align-items:center;
        gap:10px;
        padding:13px 15px;
        border-radius:14px;
        background:#f8fbff;
        color:#263247;
        font-size:13px;
        font-weight:700;
        margin-bottom:7px;
        transition:.3s;
    }

    .submenu li:last-child a{
        margin-bottom:0;
    }

    .submenu li a:before{
        content:'\f105';
        font-family:'Font Awesome 6 Free';
        font-weight:900;
        color:var(--theme);
    }

    .submenu li a:hover{
        background:var(--gradient);
        color:#fff;
        padding-left:22px;
    }

    .submenu li a:hover:before{
        color:#fff;
    }

    .mobile-toggle{
        display:none;
        width:56px;
        height:56px;
        border:none;
        border-radius:17px;
        background:#eef6ff;
        color:var(--theme);
        font-size:23px;
    }

    .mobile-overlay{
        position:fixed;
        inset:0;
        background:rgba(3,11,23,.72);
        opacity:0;
        visibility:hidden;
        transition:.3s;
        z-index:99998;
    }

    .mobile-overlay.active{
        opacity:1;
        visibility:visible;
    }

    .mobile-nav{
        position:fixed;
        top:0;
        left:-370px;
        width:350px;
        max-width:92%;
        height:100vh;
        background:#fff;
        z-index:99999;
        padding:20px;
        overflow:auto;
        transition:.4s;
    }

    .mobile-nav.active{
        left:0;
    }

    .mobile-head{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:15px;
        padding-bottom:18px;
        margin-bottom:20px;
        border-bottom:1px solid var(--border);
    }

    .mobile-logo img{
        height:100px;
        width:auto;
    }

    .mobile-close{
        width:47px;
        height:47px;
        border:none;
        border-radius:15px;
        background:#eef6ff;
        color:var(--theme);
        font-size:19px;
        flex-shrink:0;
    }

    .mobile-menu li{
        margin-bottom:10px;
    }

    .mobile-menu > li > a,
    .mobile-dropdown-btn{
        width:100%;
        min-height:54px;
        padding:14px 16px;
        border:none;
        border-radius:15px;
        background:#f5f9ff;
        color:#172033;
        font-size:14px;
        font-weight:800;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .mobile-menu span,
    .mobile-dropdown-btn span{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .mobile-menu i,
    .mobile-dropdown-btn i{
        color:var(--theme);
    }

    .mobile-dropdown-btn .arrow-icon{
        transition:.3s;
    }

    .mobile-dropdown-btn.active .arrow-icon{
        transform:rotate(180deg);
    }

    .mobile-submenu{
        max-height:0;
        overflow:hidden;
        padding:0 0 0 13px;
        transition:max-height .35s ease,padding .35s ease;
    }

    .mobile-submenu.active{
        max-height:700px;
        padding:9px 0 2px 13px;
    }

    .mobile-submenu a{
        display:block;
        padding:12px 14px;
        margin-bottom:7px;
        border-radius:13px;
        background:#eef6ff;
        color:#263247;
        font-size:13px;
        font-weight:700;
    }

    .mobile-contact-box{
        margin-top:25px;
        padding:20px;
        border-radius:20px;
        background:linear-gradient(135deg,#071120,#12345b);
        color:#fff;
    }

    .mobile-contact-box p{
        color:#dbeafe;
        font-size:13px;
        line-height:1.7;
        margin:10px 0 15px;
    }

    .mobile-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .mobile-actions a{
        padding:12px;
        border-radius:12px;
        background:rgba(255,255,255,.12);
        color:#fff;
        font-size:12px;
        text-align:center;
        font-weight:800;
    }

    .hero{
        min-height:690px;
        display:flex;
        align-items:center;
        background:
            radial-gradient(circle at 10% 10%,rgba(var(--theme-rgb),.13),transparent 25%),
            radial-gradient(circle at 90% 10%,rgba(var(--theme2-rgb),.15),transparent 28%),
            linear-gradient(135deg,#fff,#eff7ff);
        overflow:hidden;
    }

    .hero-wrap{
        display:grid;
        grid-template-columns:1.05fr .95fr;
        gap:65px;
        align-items:center;
    }

    .hero-badge{
        display:inline-flex;
        align-items:center;
        gap:10px;
        padding:10px 17px;
        border-radius:50px;
        background:#fff;
        border:1px solid rgba(var(--theme-rgb),.16);
        box-shadow:0 12px 30px rgba(15,23,42,.07);
        color:var(--theme);
        font-size:13px;
        font-weight:900;
        margin-bottom:24px;
    }

    .hero h1{
        font-size:65px;
        line-height:1.08;
        font-weight:900;
        margin-bottom:24px;
    }

    .hero h1 span{
        background:var(--gradient);
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent;
        background-clip:text;
    }

    .hero p{
        color:var(--muted);
        font-size:18px;
        line-height:1.9;
        margin-bottom:32px;
    }

    .hero-btns{
        display:flex;
        flex-wrap:wrap;
        gap:14px;
    }

    .hero-features{
        display:flex;
        flex-wrap:wrap;
        gap:18px;
        margin-top:30px;
    }

    .hero-feature{
        display:flex;
        align-items:center;
        gap:9px;
        font-size:13px;
        font-weight:800;
    }

    .hero-feature i{
        width:27px;
        height:27px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        background:rgba(22,163,74,.12);
        color:#16a34a;
    }

    .hero-card{
        position:relative;
        padding:25px;
        border-radius:34px;
        background:#fff;
        box-shadow:0 35px 80px rgba(15,23,42,.15);
        animation:floatCard 5s ease-in-out infinite;
    }

    .hero-card:before{
        content:'';
        position:absolute;
        inset:-16px;
        border-radius:42px;
        background:var(--gradient);
        opacity:.10;
        z-index:-1;
    }

    .hero-card img{
        height:420px;
        width:100%;
        object-fit:cover;
        border-radius:25px;
    }

    @keyframes floatCard{
        0%,100%{
            transform:translateY(0);
        }

        50%{
            transform:translateY(-15px);
        }
    }

    .trust-strip{
        margin-top:-40px;
        position:relative;
        z-index:10;
    }

    .trust-box{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:1px;
        background:var(--border);
        border-radius:26px;
        overflow:hidden;
        box-shadow:var(--shadow);
    }

    .trust-item{
        background:#fff;
        padding:25px;
        display:flex;
        align-items:center;
        gap:18px;
    }

    .trust-icon{
        width:58px;
        height:58px;
        border-radius:18px;
        background:var(--gradient);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:23px;
        flex-shrink:0;
    }

    .trust-item h4{
        font-size:17px;
        margin-bottom:6px;
    }

    .trust-item p{
        color:var(--muted);
        font-size:12px;
        line-height:1.6;
    }

    .about-wrap{
        display:grid;
        grid-template-columns:.95fr 1.05fr;
        gap:70px;
        align-items:center;
    }

    .about-img{
        position:relative;
    }

    .about-img img{
        width:100%;
        height:520px;
        object-fit:cover;
        border-radius:32px;
        box-shadow:var(--shadow);
    }

    .exp-box{
        position:absolute;
        right:-25px;
        bottom:35px;
        width:190px;
        padding:24px;
        border-radius:23px;
        background:var(--gradient);
        color:#fff;
        box-shadow:0 20px 45px rgba(var(--theme-rgb),.28);
    }

    .exp-box strong{
        display:block;
        font-size:42px;
        line-height:1;
        margin-bottom:7px;
    }

    .about-content h2{
        font-size:47px;
        line-height:1.2;
        font-weight:900;
        margin-bottom:20px;
    }

    .about-content p{
        color:var(--muted);
        line-height:1.9;
        margin-bottom:17px;
    }

    .about-points{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;
        margin:27px 0 30px;
    }

    .about-point{
        display:flex;
        align-items:center;
        gap:10px;
        font-weight:800;
        font-size:14px;
    }

    .about-point i{
        color:#16a34a;
    }

    .card{
        position:relative;
        padding:34px;
        border-radius:27px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:var(--shadow);
        transition:.35s;
        overflow:hidden;
    }

    .card:before{
        content:'';
        position:absolute;
        left:0;
        top:0;
        width:100%;
        height:5px;
        background:var(--gradient);
    }

    .card:hover{
        transform:translateY(-10px);
    }

    .card-icon{
        width:76px;
        height:76px;
        border-radius:23px;
        background:var(--gradient);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:29px;
        margin-bottom:23px;
    }

    .card h3{
        font-size:22px;
        margin-bottom:13px;
    }

    .card p{
        color:var(--muted);
        font-size:14px;
        line-height:1.85;
    }

    .card ul{
        margin-top:15px;
    }

    .card ul li{
        color:#526078;
        font-size:13px;
        margin-bottom:9px;
        display:flex;
        gap:8px;
    }

    .card ul li i{
        color:#16a34a;
    }

    .card-link{
        display:inline-flex;
        align-items:center;
        gap:8px;
        color:var(--theme);
        font-size:13px;
        font-weight:900;
        margin-top:18px;
    }

    .light-section{
        background:#f3f8ff;
    }

    .dark-section{
        background:linear-gradient(135deg,#071120,#102c4f);
        color:#fff;
    }

    .internship-wrap{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:55px;
        align-items:center;
    }

    .internship-content h2{
        font-size:48px;
        line-height:1.2;
        font-weight:900;
        margin-bottom:19px;
    }

    .internship-content p{
        color:#cbd5e1;
        line-height:1.9;
        margin-bottom:25px;
    }

    .internship-list{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:14px;
        margin-bottom:30px;
    }

    .internship-list div{
        display:flex;
        align-items:center;
        gap:10px;
        font-size:13px;
        font-weight:800;
    }

    .internship-list i{
        color:var(--theme2);
    }

    .internship-card{
        padding:25px;
        border-radius:23px;
        background:rgba(255,255,255,.07);
        border:1px solid rgba(255,255,255,.10);
        transition:.35s;
    }

    .internship-card:hover{
        transform:translateY(-7px);
        background:rgba(255,255,255,.11);
    }

    .internship-card i{
        width:52px;
        height:52px;
        border-radius:16px;
        background:var(--gradient);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:22px;
        margin-bottom:16px;
    }

    .internship-card h3{
        margin-bottom:9px;
    }

    .internship-card p{
        color:#cbd5e1;
        font-size:13px;
        line-height:1.75;
    }

    .process-card{
        text-align:center;
        padding:25px;
    }

    .process-number{
        width:74px;
        height:74px;
        margin:0 auto 22px;
        border-radius:23px;
        background:var(--gradient);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:25px;
        font-weight:900;
    }

    .process-card h3{
        margin-bottom:11px;
    }

    .process-card p{
        color:var(--muted);
        font-size:13px;
        line-height:1.75;
    }

    .tech-grid{
        display:grid;
        grid-template-columns:repeat(6,1fr);
        gap:18px;
    }

    .tech-item{
        min-height:135px;
        padding:20px;
        border-radius:22px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:0 14px 35px rgba(15,23,42,.06);
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:13px;
        transition:.35s;
    }

    .tech-item:hover{
        transform:translateY(-7px);
    }

    .tech-item i{
        font-size:40px;
        color:var(--theme);
    }

    .tech-item span{
        font-size:13px;
        font-weight:900;
    }

    .counter-section{
        background:
            linear-gradient(rgba(7,17,32,.93),rgba(7,17,32,.93)),
            url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600') center/cover;
        color:#fff;
    }

    .counter-card{
        text-align:center;
    }

    .counter-card i{
        width:62px;
        height:62px;
        margin:0 auto 17px;
        border-radius:19px;
        background:rgba(255,255,255,.10);
        color:var(--theme2);
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:24px;
    }

    .counter-card h3{
        font-size:48px;
        margin-bottom:8px;
    }

    .counter-card p{
        color:#bed0e5;
    }

    .portfolio-card{
        border-radius:27px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:var(--shadow);
        overflow:hidden;
        transition:.35s;
    }

    .portfolio-card:hover{
        transform:translateY(-9px);
    }

    .portfolio-img{
        height:230px;
        overflow:hidden;
    }

    .portfolio-img img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:.5s;
    }

    .portfolio-card:hover img{
        transform:scale(1.08);
    }

    .portfolio-content{
        padding:24px;
    }

    .portfolio-content h3{
        margin-bottom:9px;
    }

    .portfolio-content p{
        color:var(--muted);
        font-size:13px;
        line-height:1.7;
    }

    .portfolio-content a{
        display:inline-flex;
        align-items:center;
        gap:8px;
        margin-top:15px;
        color:var(--theme);
        font-size:13px;
        font-weight:900;
    }

    .faq-wrap{
        max-width:950px;
        margin:auto;
    }

    .faq-item{
        margin-bottom:15px;
        border-radius:19px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:0 12px 35px rgba(15,23,42,.05);
        overflow:hidden;
    }

    .faq-question{
        width:100%;
        padding:20px 22px;
        border:none;
        background:#fff;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:20px;
        font-size:15px;
        font-weight:900;
        text-align:left;
    }

    .faq-question i{
        color:var(--theme);
        transition:.3s;
    }

    .faq-item.active .faq-question i{
        transform:rotate(45deg);
    }

    .faq-answer{
        max-height:0;
        overflow:hidden;
        padding:0 22px;
        color:var(--muted);
        font-size:14px;
        line-height:1.8;
        transition:max-height .35s ease,padding .35s ease;
    }

    .faq-item.active .faq-answer{
        max-height:250px;
        padding:0 22px 21px;
    }

    .client-grid{
        display:grid;
        grid-template-columns:repeat(5,1fr);
        gap:20px;
    }

    .client-box{
        min-height:135px;
        padding:20px;
        border-radius:23px;
        background:#fff;
        border:1px solid var(--border);
        box-shadow:0 14px 35px rgba(15,23,42,.06);
        display:flex;
        align-items:center;
        justify-content:center;
        transition:.35s;
    }

    .client-box:hover{
        transform:translateY(-6px);
    }

    .client-box img{
        max-width:145px;
        max-height:75px;
        object-fit:contain;
    }

    .cta-box{
        padding:70px 60px;
        border-radius:38px;
        background:var(--gradient);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:35px;
        box-shadow:0 28px 65px rgba(var(--theme-rgb),.25);
    }

    .cta-box h2{
        font-size:44px;
        line-height:1.2;
        margin-bottom:12px;
    }

    .cta-box p{
        color:rgba(255,255,255,.90);
        line-height:1.8;
    }

    .footer{
        background:#050d18;
        color:#fff;
        margin-top:90px;
    }

    .footer-newsletter{
        padding:42px 0;
        background:linear-gradient(135deg,#0b1c32,#102c4f);
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .newsletter-wrap{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:40px;
        align-items:center;
    }

    .newsletter-wrap h3{
        font-size:28px;
        margin-bottom:8px;
    }

    .newsletter-wrap p{
        color:#aebed2;
        font-size:13px;
        line-height:1.7;
    }

    .newsletter-form{
        display:flex;
        gap:10px;
        padding:7px;
        border-radius:18px;
        background:#fff;
    }

    .newsletter-form input{
        width:100%;
        border:none;
        outline:none;
        padding:0 16px;
        font-size:13px;
    }

    .newsletter-form button{
        border:none;
        border-radius:13px;
        padding:0 22px;
        min-height:48px;
        background:var(--gradient);
        color:#fff;
        font-weight:900;
        white-space:nowrap;
    }

    .footer-top{
        padding:75px 0 55px;
    }

    .footer-grid{
        display:grid;
        grid-template-columns:1.55fr .8fr .95fr 1.25fr;
        gap:45px;
    }

    .footer-logo{
        display:inline-flex;
        padding:10px 16px;
        border-radius:17px;
        background:#fff;
        margin-bottom:23px;
    }

    .footer-logo img{
        height:72px;
    }

    .footer-about{
        color:#aebed2;
        font-size:13px;
        line-height:1.9;
        margin-bottom:24px;
    }

    .footer-title{
        position:relative;
        padding-bottom:14px;
        margin-bottom:25px;
        font-size:20px;
        font-weight:900;
    }

    .footer-title:after{
        content:'';
        position:absolute;
        left:0;
        bottom:0;
        width:45px;
        height:3px;
        border-radius:20px;
        background:var(--gradient);
    }

    .footer-links li{
        margin-bottom:13px;
    }

    .footer-links a{
        color:#aebed2;
        font-size:13px;
        display:inline-flex;
        gap:9px;
        transition:.3s;
    }

    .footer-links a:before{
        content:'\f105';
        font-family:'Font Awesome 6 Free';
        font-weight:900;
        color:var(--theme2);
    }

    .footer-links a:hover{
        color:#fff;
        transform:translateX(5px);
    }

    .footer-contact-item{
        display:flex;
        align-items:flex-start;
        gap:13px;
        margin-bottom:15px;
    }

    .footer-contact-icon{
        width:42px;
        height:42px;
        border-radius:13px;
        background:rgba(255,255,255,.07);
        color:var(--theme2);
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
    }

    .footer-contact-text span{
        display:block;
        color:#8293aa;
        font-size:10px;
        text-transform:uppercase;
        letter-spacing:.7px;
        margin-bottom:4px;
    }

    .footer-contact-text a,
    .footer-contact-text p{
        color:#d5dfec;
        font-size:12px;
        line-height:1.6;
    }

    .footer-social{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .footer-social a{
        width:45px;
        height:45px;
        border-radius:14px;
        background:rgba(255,255,255,.07);
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        transition:.3s;
    }

    .footer-social a:hover{
        background:var(--gradient);
        transform:translateY(-4px);
    }

    .footer-bottom{
        padding:23px 0;
        border-top:1px solid rgba(255,255,255,.08);
        background:rgba(0,0,0,.15);
    }

    .footer-bottom-wrap{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:20px;
    }

    .footer-bottom,
    .footer-bottom a{
        color:#99a9bc;
        font-size:12px;
    }

    .footer-bottom-links{
        display:flex;
        gap:18px;
        flex-wrap:wrap;
    }

    .float-buttons{
        position:fixed;
        right:20px;
        bottom:22px;
        z-index:9990;
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .float-btn{
        width:57px;
        height:57px;
        border:none;
        border-radius:18px;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-size:23px;
        box-shadow:0 15px 35px rgba(0,0,0,.22);
        transition:.3s;
    }

    .float-btn:hover{
        transform:translateY(-5px);
    }

    .whatsapp{
        background:#25d366;
    }

    .call{
        background:var(--gradient);
    }

    .scroll-top{
        background:#071120;
        opacity:0;
        visibility:hidden;
        transform:translateY(15px);
    }

    .scroll-top.show{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    @media(max-width:1100px){
        .menu{
            gap:15px;
        }

        .menu > li > a{
            font-size:13px;
        }
    }

    @media(max-width:991px){
        .topbar{
            display:none;
        }

        .menu{
            display:none;
        }

        .mobile-toggle{
            display:flex;
            align-items:center;
            justify-content:center;
        }

        .logo img{
            height:84px;
        }

        .hero-wrap,
        .about-wrap,
        .internship-wrap,
        .newsletter-wrap{
            grid-template-columns:1fr;
        }

        .hero{
            padding:75px 0 90px;
            min-height:auto;
        }

        .hero h1{
            font-size:50px;
            text-align:center;
        }

        .hero p{
            text-align:center;
        }

        .hero-badge{
            display:flex;
            width:max-content;
            max-width:100%;
            margin-left:auto;
            margin-right:auto;
        }

        .hero-btns,
        .hero-features{
            justify-content:center;
        }

        .grid-4,
        .trust-box,
        .footer-grid{
            grid-template-columns:repeat(2,1fr);
        }

        .tech-grid{
            grid-template-columns:repeat(3,1fr);
        }

        .client-grid{
            grid-template-columns:repeat(3,1fr);
        }

        .cta-box{
            flex-direction:column;
            text-align:center;
            padding:55px 30px;
        }

        .about-img{
            max-width:680px;
            margin:auto;
        }

        .about-content{
            text-align:center;
        }

        .about-content .section-title{
            text-align:center !important;
        }

        .about-points{
            text-align:left;
        }
    }

    @media(max-width:600px){
        section{
            padding:65px 0;
        }

        .container{
            padding:0 15px;
        }

        .navbar{
            min-height:92px;
        }

        .logo img{
            height:84px;
            max-width:220px;
        }

        .mobile-logo img{
            height:95px;
            max-width:220px;
        }

        .hero{
            padding-top:55px;
        }

        .hero h1{
            font-size:34px;
        }

        .hero p{
            font-size:14px;
        }

        .hero-badge{
            font-size:11px;
            text-align:center;
        }

        .hero-btns{
            display:grid;
            grid-template-columns:1fr;
        }

        .hero-card{
            padding:13px;
            border-radius:25px;
        }

        .hero-card img{
            height:300px;
            border-radius:18px;
        }

        .section-title h2,
        .about-content h2,
        .internship-content h2{
            font-size:31px;
        }

        .grid-2,
        .grid-3,
        .grid-4,
        .trust-box,
        .footer-grid,
        .about-points,
        .internship-list{
            grid-template-columns:1fr;
        }

        .tech-grid,
        .client-grid{
            grid-template-columns:repeat(2,1fr);
        }

        .about-img img{
            height:390px;
        }

        .exp-box{
            right:12px;
            bottom:16px;
            width:160px;
            padding:18px;
        }

        .newsletter-form{
            display:grid;
            grid-template-columns:1fr;
            padding:10px;
        }

        .newsletter-form input{
            min-height:46px;
            text-align:center;
        }

        .newsletter-form button{
            min-height:48px;
        }

        .footer-logo img{
            height:82px;
        }

        .footer-bottom-wrap{
            flex-direction:column;
            text-align:center;
        }

        .footer-bottom-links{
            justify-content:center;
        }

        .float-buttons{
            right:12px;
            bottom:15px;
        }

        .float-btn{
            width:52px;
            height:52px;
            border-radius:16px;
            font-size:21px;
        }

        .theme-switcher{
            bottom:18px;
        }

        .theme-panel{
            width:205px;
        }

        .theme-toggle{
            width:50px;
            height:50px;
        }

        .theme-switcher.active .theme-toggle{
            transform:translateX(205px);
        }

        .cta-box h2{
            font-size:31px;
        }

        .cta-box{
            padding:45px 22px;
        }
    }
    
    
.inner-hero{
    padding:95px 0 85px;
    background:
        radial-gradient(circle at 8% 12%,rgba(var(--theme-rgb),.14),transparent 28%),
        radial-gradient(circle at 88% 16%,rgba(var(--theme2-rgb),.16),transparent 30%),
        linear-gradient(135deg,#ffffff,#eef7ff);
    overflow:hidden;
}

.inner-hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.breadcrumb{
    width:max-content;
    max-width:100%;
    margin:0 auto 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
    padding:7px;
    border-radius:999px;
    background:#ffffff;
    border:1px solid rgba(var(--theme-rgb),.14);
    box-shadow:0 16px 45px rgba(15,23,42,.08);
}

.breadcrumb a,
.breadcrumb span{
    min-height:36px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:0 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    line-height:1;
    white-space:nowrap;
}

.breadcrumb a{
    color:#ffffff;
    background:var(--gradient);
    box-shadow:0 8px 22px rgba(var(--theme-rgb),.22);
}

.breadcrumb .breadcrumb-separator{
    width:32px;
    padding:0;
    color:var(--theme);
    background:transparent;
}

.breadcrumb .breadcrumb-current{
    color:#263247;
    background:#f4f8ff;
}

.inner-hero h1{
    font-size:54px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:16px;
}

.inner-hero p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
}

@media(max-width:600px){
    .inner-hero{
        padding:58px 0 52px;
    }

    .breadcrumb{
        width:100%;
        max-width:330px;
        padding:6px;
        margin-bottom:20px;
        justify-content:space-between;
        box-shadow:0 12px 35px rgba(15,23,42,.07);
    }

    .breadcrumb a,
    .breadcrumb span{
        min-height:34px;
        padding:0 10px;
        font-size:11px;
        gap:6px;
    }

    .breadcrumb a{
        flex:0 0 auto;
    }

    .breadcrumb .breadcrumb-separator{
        width:22px;
        flex:0 0 22px;
        font-size:10px;
    }

    .breadcrumb .breadcrumb-current{
        flex:1;
        min-width:0;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .inner-hero h1{
        font-size:32px;
        margin-bottom:12px;
    }

    .inner-hero p{
        font-size:14px;
        line-height:1.7;
    }
}

