*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#0f172a;
  color:white;
  overflow-x:hidden;
  transition:0.3s;
}

/* LIGHT MODE */
body.light{
  background:#f5f5f5;
  color:black;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
header{
  background:#111827;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.3);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:50px;
}

.logo h2{
  color:cyan;
  font-size:35px;
}

/* NAV */
nav{
  display:flex;
  gap:25px;
}

nav a{
  text-decoration:none;
  color:white;
  font-size:18px;
  font-weight:bold;
  transition:0.3s;
}

nav a:hover{
  color:cyan;
}

.nav-icons{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-icons i{
  font-size:22px;
  cursor:pointer;
}

#toggle{
  display:none;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#06b6d4,#7c3aed);
  padding:80px 0;
}

.hero-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.hero-text h1{
  font-size:65px;
  margin-bottom:20px;
}

.hero-text p{
  font-size:20px;
  line-height:1.7;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-image img{
  width:100%;
  border-radius:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.4);
}

/* BUTTONS */
button{
  padding:14px 28px;
  border:none;
  border-radius:10px;
  background:yellow;
  color:black;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  transform:translateY(-5px);
}

.dark-btn{
  background:black;
  color:white;
}

/* SECTIONS */
section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
  font-size:45px;
}

/* STATS */
.stats{
  background:#111827;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat-box{
  background:#1f2937;
  padding:35px;
  border-radius:20px;
  text-align:center;
}

.stat-box h2{
  color:cyan;
  font-size:45px;
  margin-bottom:10px;
}

/* SERVICES */
.services{
  background:linear-gradient(135deg,#06b6d4,#ec4899);
}

/* JOBS */
.jobs{
  background:linear-gradient(135deg,#2563eb,#06b6d4);
}

/* INSIGHT */
.insight{
  background:#111827;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.card{
  background:#1f2937;
  padding:35px;
  border-radius:20px;
  text-align:center;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card i{
  font-size:50px;
  color:cyan;
  margin-bottom:20px;
}

.card h3{
  margin-bottom:15px;
  font-size:25px;
}

.card p{
  line-height:1.7;
}

/* JOB CARD */
.job-card{
  background:white;
  color:black;
  padding:35px;
  border-radius:20px;
  transition:0.3s;
}

.job-card:hover{
  transform:scale(1.03);
}

.job-card h3{
  margin-bottom:10px;
}

.job-card span{
  display:inline-block;
  background:#06b6d4;
  color:white;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:15px;
}

.job-card p{
  margin-bottom:20px;
}

/* ABOUT */
.about{
  background:linear-gradient(135deg,#06b6d4,#06b6d4);
}

.about-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.about-box img{
  width:100%;
  border-radius:20px;
}

.about-box p{
  margin:20px 0;
  line-height:1.8;
  font-size:18px;
  text-align: justify;
}

/* CONTACT */
.contact{
  background:#111827;
}

.contact-form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:15px;
  border:none;
  border-radius:10px;
  font-size:16px;
}

.contact-form textarea{
  height:160px;
  resize:none;
}

/* FOOTER */
.footer{
    background: #020817;
    color: #fff;
    padding: 60px 10% 25px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-brand{
    flex: 1;
    min-width: 250px;
}

.footer-logo-box{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-box img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.footer-logo-box h2{
    font-size: 28px;
    font-weight: 700;
}

.footer-brand p{
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.7;
}

.footer-contact,
.footer-social{
    flex: 1;
    min-width: 220px;
}

.footer-contact h3,
.footer-social h3{
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h3::after,
.footer-social h3::after{
    content: "";
    width: 40px;
    height: 3px;
    background: yellow;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-contact p{
    margin-bottom: 18px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.footer-contact i{
    color: yellow;
    font-size: 18px;
}

.social-icons{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a{
    width: 45px;
    height: 45px;
    background: #0f172a;
    border: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons a:hover{
    background: yellow;
    color: #000;
    transform: translateY(-5px);
}

.footer-bottom{
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p{
    color: #94a3b8;
    font-size: 15px;
}

/* MOBILE */
@media(max-width:768px){

    .footer{
        padding: 50px 7% 20px;
    }

    .footer-content{
        flex-direction: column;
        gap: 35px;
    }

    .footer-logo-box h2{
        font-size: 22px;
    }

    .footer-contact h3::after,
    .footer-social h3::after{
        left: 0;
    
}

/* Mobile Responsive */
@media(max-width:768px){
 .footer-container{
        flex-direction: column;
        text-align: center;
    }
  }
    .footer-social a{
        margin: 10px;
    }

/* RESPONSIVE */
@media(max-width:900px){
}
  nav{
    display:none;
    flex-direction:column;
    position:absolute;
    top:80px;
    right:20px;
    background:#111827;
    padding:20px;
    border-radius:15px;
    width:220px;
  }

  nav.active{
    display:flex;
  }

  
  #toggle{
    display:block;
  }

  .hero-box,
  .grid,
  .stats-grid,
  .about-box{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:42px;
  }

  .section-title{
    font-size:34px;
  }

  .footer{
    flex-direction:column;
    text-align:center;
  }

  .chatbot{
    width:90%;
    right:5%;
  }
}