body {
    background:
    radial-gradient(circle at top,
    rgba(59,130,246,.08),
    transparent 50%),
    #f8fafc; /* Crisp off-white background */
    color: #1e293b; /* Deep slate for high-contrast readability */
    overflow-x: hidden;
    font-family: 'Segoe UI', sans-serif;
}
*{
    scroll-behavior: smooth;
}
.navbar {
    width: max-content;
    height: 65px;
    padding: 0 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;

    background: rgba(255, 255, 255, 0.75); /* Clean glassmorphism */
    backdrop-filter: blur(15px);

    border: 1px solid rgba(0, 0, 0, 0.06);

    border-radius: 16px;

    box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05);

    color: #1e293b;
    transition: .3s;
}

.navbar:hover {
    box-shadow:
    0 15px 40px rgba(37, 99, 235, 0.15);
}

.navbar > li {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;

    list-style: none;

    height: 65px;

    width: max-content;

    padding-left: 15px;
    padding-right: 15px;

    position: relative;
}

.navbar > li::after {
    content: '';
    position: absolute;
    bottom: 8px;

    width: 0%;
    height: 3px;

    background: #3b82f6;

    border-radius: 20px;

    transition: .3s;
}

.navbar > li:hover::after {
    width: 70%;
}

.navbar > li > a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 18px;
    transition: .3s;
}

.navbar > li > a:hover {
    color: #3b82f6;
}

.home {
    margin-top: 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 40px;
}

.home > .one {
    color: #1e293b;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home > .one > h1 {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(to right, #2563eb, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 70%;

    text-align: center;

    line-height: 1.2;

    margin-bottom: 15px;
}

.home > .one h4 {
    width: 65%;

    text-align: center;

    font-size: 24px;

    color: #3b82f6;

    line-height: 1.8;

    font-weight: 400;
}

#logo {
    height: 70px;
    width: 70px;

    position: absolute;

    left: 40px;
    top: 20px;

    border-radius: 50%;

    box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.2);
}

.home > .two img {
    width: 1000px;
    max-width: 90%;

    border-radius: 24px;

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow:
    0 20px 50px rgba(37, 99, 235, 0.1);

    transition: .4s;
}

.home > .two img:hover {
    transform: translateY(-5px) scale(1.01);
}

.home > .three > a button::after {
    content: '';
    width: 0%;
    background: #f1f5f9;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    border-radius: 5px;
    height: 100%;
}
.home > .three > a button:hover::after {
    width: 100%;
    z-index: -1;
    transition: all .5s ease-in;
    cursor: pointer;
}
.home > .three > a button {
    width: 200px;
    background: linear-gradient(
    135deg,
    #2563eb,
    #3b82f6,
    #60a5fa
    );
    z-index: 2;
    color: white;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #2563eb;
    border-radius: 5px;
    height: 50px;
}
.home > .three > a button:hover {
    color: #2563eb;
}
.home > .three {
    display: flex;
    gap: 15px;
}
.service {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.service > .main1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.service > h1 {
    font-size: 50px;
    background: linear-gradient(to right, #2563eb, #0099ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.service > .main1 .one > h1 {
    margin-bottom: -10px;
}
.service > .main1 .one {
    display: flex;
    background:
    radial-gradient(circle at top,
    rgba(37, 99, 235, 0.05),
    transparent 40%),
    #ffffff;
    justify-content: center;
    text-align: right;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    height: 320px;
    width: 450px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0px 10px 25px rgba(37, 99, 235, 0.05);
}
.service > .main1 > .one > img {
    height: 80px;
    width: 90px;
    position: absolute;
    top: -50px;
    border-radius: 20px;
    margin-top: 20px;
}
.service > .main1 > .one a > button {
    position: absolute;
    bottom: 40px;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    background-color: #2563eb;
    font-weight: bold;
    color: white;
    font-size: 17px;
    border: none;
    border-radius: 10px;
}
.service > .main1 > .one a> button:hover {
    width: 300px;
    transition: all .5s ease-in;
    cursor: pointer;
    background-color: #1d4ed8;
    box-shadow: 0px 8px 20px rgba(37, 99, 235, 0.2);
}
.whyus {
    background-color: #edf2f7;
    padding: 10px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 50px;
    height: max-content;
}
.whyus > h1 {
    font-size: 50px;
    margin-bottom: 50px;
    background: linear-gradient(to right, #2563eb, #0099ff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.whyus > .main1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: max-content;
    gap: 20px;
}
.whyus > .main1 > .one {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;
    position: relative;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    width: 400px;
    background-color: #ffffff;
    padding: 20px;
}
.whyus > .main1 > .one img {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -60px;
    border: 2px solid #3b82f6;
    margin-top: 20px;
    border-radius: 50%;
}
.whyus > .main1 > .one p {
    margin-top: -10px;
    color: #64748b;
}
.whyus > .main1 > .one:hover {
    transition: all .5s ease-in;
    width: 500px;
    box-shadow: 0px 10px 30px rgba(37, 99, 235, 0.15);
    border: 1px solid #3b82f6;
    cursor: pointer;
}
.developers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    height: max-content;
    margin: 40px 0 60px 0;
    padding: 20px;
}

.developers > h1 {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 40px;
    background: linear-gradient(to right, #2563eb, #0099ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.developers > .main1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    height: max-content;
    margin-top: 40px;
}

/* CARD */
.developers > .main1 > .one {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 420px;
    min-height: 340px;
    padding: 30px 20px 25px;

    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;

    transition: all 0.4s ease;
}

/* hover effect */
.developers > .main1 > .one:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

/* IMAGE */
.developers > .main1 > .one > img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-top: -80px;
    border: 3px solid #3b82f6;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.developers > .main1 > .one:hover > img {
    transform: scale(1.05);
}

/* NAME */
.developers > .main1 > .one h1 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1e293b;
}

/* ROLE / TEXT ADJUSTMENT */
.developers > .main1 > .one p {
    color: #64748b;
}

/* BUTTON */
.developers > .main1 > .one >  button {
    width: 160px;
    height: 44px;
    margin-top: 15px;
    background: linear-gradient(to right, #2563eb, #0099ff);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.developers > .main1 > .one > button:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.developers > .main1 > .one > button:active {
    transform: scale(0.95);
}

/* o1 SECTION */
.developers > .main1 > .one .o1 {
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: 200px;
    margin-top: 25px;
}
.developers > .main1 > .one > .o1 > a{
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* images inside o1 */
.developers > .main1 > .one > .o1 > a > img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.outproduct {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #edf2f7;
    padding-bottom: 50px;
}
.outproduct > h1 {
    background: linear-gradient(to right, #2563eb, #0099ff);
    font-size: 50px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.outproduct > .main1 {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #edf2f7;
    height: max-content;
}
.outproduct > .main1 > .one {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
}
.outproduct > .main1 > .one > img {
    width: 500px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    height: 300px;
}
.outproduct > .main1 > .one h1 {
    color: #1e293b;
}
.outproduct > .main1 > .one > a > button {
    width: 210px;
    height: 40px;
    background: linear-gradient(to left, #2563eb, #00d2ff);
    font-weight: bold;
    font-size: 17px;
    color: white;
    border: none;
    border-radius: 10px;
}
.outproduct > .main1 > .one > a > button:hover {
    background: linear-gradient(to left, #00d2ff, #2563eb);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}
.order {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    background-color: #ffffff;
    flex-wrap: wrap;
    padding-top: 50px;
}
.order > .one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 700px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.order > .one > h1 {
    font-size: 50px;
    color: #1e293b;
}
.order > .one > p {
    width: 60%;
    text-align: right;
    font-size: 20px;
    color: #475569;
}
.order > .two form {
    display: flex;
    border: 1px solid #e2e8f0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    height: max-content;
    width: 500px;
    background: #f8fafc;
    gap: 20px;
    padding-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.order > .two > form:hover {
    box-shadow: 0px 10px 40px rgba(37, 99, 235, 0.1);
    cursor: pointer;
}
.order > .two > form input, select, button {
    height: 50px;
    width: 70%;
    background: #ffffff;
    outline: 0px;
    border-radius: 10px;
    text-align: right;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    font-weight: bold;
    font-size: 18px;
    padding: 0 10px;
}
select{
    color: black;
}
.order > .two > form button {
    background: linear-gradient(to left, #2563eb, #1d4ed8);
    color: white;
    border: none;
    cursor: pointer;
}
textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    text-align: right;
    color: #1e293b;
    padding: 10px;
}
textarea::placeholder {
    color: #94a3b8;
    text-align: right;
    margin-right: 10px;
}
.order > .two > form input::placeholder {
    text-align: right;
    color: #94a3b8;
    margin-right: 10px;
}
.way {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
    height: max-content;
}
.way > h1 {
    font-size: 50px;
    background: linear-gradient(to left, #2563eb, #00bfff);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.way > .main1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: max-content;
    gap: 20px;
    width: 100%;
}
.way > .main1 > .one {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 400px;
    height: 400px;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.way > .main1 > .one h1 {
    color: #1e293b;
}
.way > .main1 > .one p {
    color: #64748b;
}
.way > .main1 > .one > a button {
    width: 200px;
    height: 40px;
    text-align: center;
    margin-top: 10px;
    background-color: #2563eb;
    color: white;
    border: none;
}
.way > .main1 > .one > a > button:hover {
    width: 350px;
    transition: all .5s ease-in;
    cursor: pointer;
    background-color: #1d4ed8;
    box-shadow: 0px 5px 15px rgba(37, 99, 235, 0.2);
}
.way > .main1 > .one > img {
    height: 120px;
    width: 120px;
}
button {
    text-align: center;
}
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
    align-items: center;
    padding-bottom: 20px;
}
.footer > h1 {
    color: #1e293b;
}
.footer > h3 {
    color: #475569;
}
.footer > h1, h3 {
    margin-bottom: -10px;
}
.footer > .one {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #64748b;
}
.footer > .two {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}
.footer > .two > a img {
    height: 50px;
    width: 50px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
}
.footer > .two > a img:hover {
    transform: scale(1.1);
    border-color: #2563eb;
}
.footer > h5 {
    color: #94a3b8;
}
.english {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 60px;
    width: 60px;
    background: linear-gradient(to left, #00c2ff, #2563eb);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}
.english:hover {
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 0px 5px 20px rgba(37, 99, 235, 0.4);
}
.english > a {
    text-decoration: none;
    color: white;
}
a > #gohome {
    height: 80px;
    width: 80px;
    border-radius: 10px;
    border: #22c55e 2px solid;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
#gohome:hover {
    box-shadow: 0px 0px 20px rgba(34, 197, 94, 0.4);
    cursor: pointer;
}
#light{
    height: 60px;
    width: 60px;
    position: absolute;
    top: 20px;
    background-color: #000000;
    right: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    color: rgb(255, 255, 255);
    align-items: center;
}
#light:hover{
    box-shadow: 0px 0px 20px 0px rgb(0, 0, 0);
cursor: pointer;
 }
 #delete,#menu{
    height: 60px;
    width: 60px;
    position: absolute;
    top: 20px;
    display: none;
 }
 #delete{
    right: 0px;
    top: 0px;
 }
 #menu{
    left: 20px;
    top: 20px;
    padding: 5px;
 }
 #delete:hover,#menu:hover{
    background: linear-gradient(to right,blue,darkblue);
    cursor: pointer;
    transform: scale(1.1);
 }
 @keyframes one {
    from{left: -1000px;}
    to{left: 0px;}
 }
@media screen and (max-width: 800px)
{
    #logo{
        display: none;
    }
    #delete,#menu{
        display: flex;
    }
   .navbar{
    animation: one ease-in .5s;
    z-index: 1000;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    transform: none;
    position: fixed;
   }
   .navbar > li{
    width: 100%;
   }
   .navbar > li:hover{
    background: linear-gradient(to left,darkblue,blue);
    cursor: pointer;
   }
   .home > .two{
    display: flex;
    justify-content: center;
    align-items: center;
   }
}
@media screen and (max-width: 450px)
{
    .home > .one > h1{
        font-size: 40px;
    }
    .home > .one > h4{
        font-size: 20px;
    }
    .home > .three > a button{
    width: 120px;
    }
    .service > h1{
        font-size: 40px;
    }
    .service > .main1 > .one{
        width: 200px;
        height: max-content;
        gap: 70px;
    }
    .service > .main1 > .one > p{
        margin-top: -30px;
    }
    *{
        text-align: center;
    }
    .service > .main1 > .one h1{
        font-size: 30px;
        text-align: center;
        padding-top: 15px;
    }
    .service > .main1 > .one a button{
        width: 120px;
    }
    .service > .main1 > .one a button:hover{
        width: 200px;
    }
    .whyus > h1{
 font-size: 40px;
    }
    .whyus > .main1 .one{
        width: 200px;
        height: max-content;
    }
    .whyus > .main1 .one:hover{
        width: 95%;
    }
    .developers > h1{
        font-size: 40px;
    }
    .developers > .main1 > .one{
        width: 200px;
    }
    .developers > .main1 > .one > img{
        width: 100px;
        height: 100px;
    }
    .outproduct > h1{
        font-size: 40px;
    }
    .outproduct > .main1 > .one{
        width: 200px;
        font-size: 17px;
    }
    .outproduct > .main1 > .one > img{
        width: 200px;
        height: 100px;
    }
    .way  > h1{
        font-size: 40px;
    }
    .way > .main1 > .one{
        width: 250px;
    }
    .way > .main1 > .one:hover{
        width: 95%;
        transition: all .5s ease-in;
        cursor: pointer;
    }
    .order > .one{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
    .order > .one > h1{
        font-size: 40px;
    }
    .order > .one > p{
        width: 90%;
        margin-top: -10px;
    }
    .order > .two > form > input,textarea{
        width: 90%;
    }
    .order > .two > form{
        width: 100%;
    }
}