/* ===========================
   JEETZ VENTURES
   Premium Corporate Theme
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#07111F;

    color:white;

    overflow-x:hidden;

}

/* ================= NAVBAR ================= */

nav{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    position:fixed;

    top:0;

    left:0;

    backdrop-filter:blur(12px);

    background:rgba(7,17,31,.85);

    z-index:999;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:55px;

}

.logo h2{

    font-size:24px;

    letter-spacing:1px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav ul li a{

    text-decoration:none;

    color:white;

    transition:.3s;

    position:relative;

}

nav ul li a:hover{

    color:#ff9800;

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0%;

    height:2px;

    background:#ff9800;

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

.nav-btn{

    background:#ff9800;

    padding:12px 24px;

    border-radius:40px;

    text-decoration:none;

    color:white;

    transition:.3s;

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(255,152,0,.45);

}

/* ================= HERO ================= */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:130px 8% 70px;

}

.hero-left{

    width:55%;

}

.hero-right{

    width:40%;

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:80%;

    animation:float 5s infinite ease-in-out;

}

.tag{

    color:#ff9800;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero h1{

    font-size:60px;

    line-height:75px;

}

.hero span{

    color:#ff9800;

}

.hero-text{

    margin:30px 0;

    color:#d8d8d8;

    line-height:30px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn,

.secondary-btn{

    padding:15px 35px;

    border:none;

    cursor:pointer;

    font-size:16px;

    border-radius:40px;

    transition:.3s;

}

.primary-btn{

    background:#ff9800;

    color:white;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 30px rgba(255,152,0,.5);

}

.secondary-btn{

    background:transparent;

    border:2px solid #ff9800;

    color:white;

}

.secondary-btn:hover{

    background:#ff9800;

}

/* ================= STATS ================= */

.stats{

    padding:90px 8%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stats div{

    background:#0E1C30;

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.stats div:hover{

    transform:translateY(-8px);

    border:1px solid #ff9800;

}

.stats h2{

    color:#ff9800;

    font-size:48px;

}

/* ================= SERVICES ================= */

.services{

    padding:90px 8%;

}

.section-title{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card{

    background:#0E1C30;

    padding:40px;

    border-radius:18px;

    transition:.35s;

    border:1px solid transparent;

}

.card:hover{

    transform:translateY(-12px);

    border-color:#ff9800;

    box-shadow:0 0 35px rgba(255,152,0,.18);

}

.card h3{

    margin-bottom:20px;

    color:#ff9800;

}

/* ================= WHY ================= */

/*=========================
ABOUT
==========================*/

.about{

    padding:120px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.about-left{

    flex:1;

}

.about-right{

    width:380px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.section-tag{

    color:#ff9800;

    letter-spacing:3px;

    margin-bottom:18px;

    font-weight:600;

}

.about h2{

    font-size:48px;

    line-height:60px;

    margin-bottom:25px;

}

.about h2 span{

    color:#ff9800;

}

.about>div>p{

    color:#cfcfcf;

    line-height:32px;

    margin-bottom:40px;

}

.features{

    display:grid;

    gap:25px;

}

.features div{

    background:#0E1C30;

    padding:25px;

    border-radius:15px;

    border:1px solid rgba(255,152,0,.15);

    transition:.35s;

}

.features div:hover{

    transform:translateX(10px);

    border-color:#ff9800;

    box-shadow:0 0 25px rgba(255,152,0,.15);

}

.features h3{

    color:#ff9800;

    margin-bottom:10px;

}

.experience-card{

    width:300px;

    height:300px;

    border-radius:30px;

    background:linear-gradient(145deg,#101f35,#0a1425);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    border:1px solid rgba(255,152,0,.25);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    transition:.4s;

}

.experience-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(255,152,0,.25);

}

.experience-card h1{

    font-size:70px;

    color:#ff9800;

}

.experience-card p{

    margin-top:15px;

    color:#d7d7d7;

    text-align:center;

    width:70%;

}

/* ================= CONTACT ================= */

.contact{

    padding:100px 8%;

}

.contact h2{

    text-align:center;

    margin-bottom:50px;

    font-size:40px;

}

form{

    max-width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}

input,

textarea{

    padding:18px;

    background:#0E1C30;

    border:none;

    border-radius:12px;

    color:white;

    outline:none;

}

textarea{

    min-height:170px;

}

form button{

    background:#ff9800;

    color:white;

    border:none;

    padding:18px;

    border-radius:40px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

form button:hover{

    box-shadow:0 0 30px rgba(255,152,0,.4);

}

/* ================= FOOTER ================= */

footer{

    padding:45px;

    background:#050B16;

    text-align:center;

}

footer img{

    width:70px;

    margin-bottom:15px;

}

/* ================= CURSOR GLOW ================= */

.cursor-glow{

    width:350px;

    height:350px;

    border-radius:50%;

    position:fixed;

    pointer-events:none;

    background:radial-gradient(circle,
    rgba(255,152,0,.18),
    transparent 70%);

    transform:translate(-50%,-50%);

    z-index:-1;

}

/* ================= FLOAT ================= */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-left,

.hero-right{

width:100%;

}

.service-grid{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

nav ul{

display:none;

}

}

@media(max-width:600px){

.hero h1{

font-size:42px;

line-height:55px;

}

.stats{

grid-template-columns:1fr;

}

.logo h2{

font-size:18px;

}
}
.contact-info{
    margin-top:60px;
    text-align:center;
    width:100%;
}

.contact-info h3{
    font-size:40px;
    color:#fff;
    margin-bottom:35px;
    font-weight:700;
}

.contact-info p{
    margin:20px 0;
    font-size:28px;
    font-weight:600;
}

.contact-info a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s;
}

.contact-info a:hover{
    color:#ff9800;
}

.contact-info p i{
    color:#ff9800;
    margin-right:12px;
}
