*{
  padding: 0;
    margin: 0;
    box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;  /* ensures body stretches full height */
 
  flex-direction: column; /* allows footer to sit at bottom */
}


  nav {
    background-color: white;
  height: 116px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000; /* ensures it stays on top of other content */
}


.bloomstar {
  max-height: 85px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .bloomstar {
    max-height: 55px;
    margin-left: -15px;
  }
  nav{
    height: 70px;
  }

  .victor{
    display: none;
  }
  .vic{
    display: none;
  }
  
  .imagelap {
  object-fit: contain;
    max-height: 320px;   /* adjust if needed */
     filter: brightness(40%);
}

.hero {
    position: relative;
    width: 100%;
    max-height: 320px;   /* adjust if needed */
    overflow: hidden;
}

}

@media (max-width: 479px){
  .image-text h1 {
    font-family: "Malgun Gothic", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 18px;
    color:white;
    max-width: 850px;  
  }

  .image-text a {
    display: inline-block;
    padding: 13px 20px;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(26, 26, 246);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}
}

/* MENU */
#nav-menu {
  display: flex;
  gap: 35px;
  margin-left: auto;
}

#nav-menu li {
  list-style: none;
}

#nav-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

#nav-menu li a:hover,
#nav-menu li a.active {
  color: blue;
}

/* BUTTON */
.button {
  margin-left: 4%;
  padding: 12px 28px;
  background: blue;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  font-size: 20px;
  font-weight: bold;
  margin-left: auto;
  cursor: pointer;
  background-color: rgb(0, 76, 255);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
}
@media (max-width: 902px) {

  #nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: -2%;
    background-color: rgb(238, 237, 237);
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
    display: none;
     z-index: 1000; 
  }

  #nav-menu.show {
    display: flex;
  }

  .button {
    display: none;
  }

  .menu-toggle {
    display:flex;
  }



  #nav-menu {
    padding: 0;               /* reset */
  }

  #nav-menu li {
    box-sizing: border-box;   /* IMPORTANT */
    width: 100%;
    padding: 6px 28px;       /* visible space from edges */
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-align: left;
  }

  #nav-menu li a {
    display: block;
    width: 100%;
    padding-left: 0;          /* prevent overrides */
    margin: 0;
    text-align: left;
  }

  

}


ul li .active{
    color: blue;
}

.button:hover{
    background-color:black;
}

.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 20 / 9;   /* 🔒 locks height */
    overflow: hidden;
}

/* Background image */
.imagelap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

/* Text container */
.image-text {
    position: absolute;
    top: 55%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;

    max-width: 900px;   /* 🔴 was 520px */
    width: 90%;
    text-align: left;
   
}

/* Heading */
.elevating {
    font-family: "Malgun Gothic", sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 18px;

    max-width: 850px;      /* 🔴 wider text block */
    /* word-break:normal; /* 🔴 prevents ugly breaks */
    /* white-space: normal;  allow clean wrapping */ 
}


/* Paragraph */
.image-text p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 860px;
    margin-bottom: 24px;
    z-index: 2;
    color: white;
}

/* Button */
.get {
    display: inline-block;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(26, 26, 246);
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.get:hover {
    background-color: rgb(82, 82, 177);
}

/* TABLET VIEW */

@media (max-width: 852px){
.elevating{
  font-size:30px ;
}
}



/* ================================
   MOBILE RESPONSIVENESS
================================ */

@media (max-width: 768px) {
    .image-text {
        left: 5%;
        max-width: 90%;
        top: 50%;
    }

    .elevating {
        font-size: 25px;
    }

    .image-text p {
        font-size: 14px;
    }
    .hero {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 314px){
.image-text h1{
  font-size: 15px;
  font-weight: 500;
}

.image-text p{
  font-size: 12px;
}
}

  
  .wrapper {
    background-color: rgb(179, 205, 223);
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    font-family: Arial, sans-serif;
  }
  .section-title {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  color: white;
  margin-bottom: 40px;
}


  .container {
    background-color:  rgb(179, 205, 223);
    display: flex;
    flex-wrap:wrap ;
    gap: 20px;
    justify-content: center;
    width: 90%;
    height: auto;
    max-width: 1200px;
  }

  /* Desktop */
.box {
  width: 30%;
  min-height: 320px;
  background-color: white;
  text-align: center;
  border-radius: 5px;
  box-sizing: border-box;
  overflow: hidden;
}

.laptop,.chart,.database{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}



.icon-laptop, .icon-chart,.icon-database {
  color: rgb(0, 119, 255);
  font-size: 50px;
}
.auto{
  margin-top: 40px;
  line-height: 3.0;
}



/* Tablet */
@media (max-width: 900px) {
  .container{
    padding: 50px;
    padding-top: 60px;
  }

  .box {
    width: 45%;
    min-height: 320px;
  }
}


/* Phone */
@media (max-width: 600px) {
  .container{
    padding: 10px;
    padding-top: 40px;
  }

  .box {
    width: 95%;
    min-height: auto;
    padding: 30px 15px;
  }

  .laptop,.chart,.database{
    margin-top: 20px;
  }

  .icon-laptop, 
  .icon-chart,
  .icon-database {
    font-size: 35px;
  }

  .auto{
    margin-top: 20px;
    line-height: 2.5;
  }
}
.aboutus{
    background-color: white;
    width: 100%;
   min-height: 70vh;
}
.about{
    max-width: 400px;
    height: 80%;
    margin-left: 6%;
    margin-top:5%;
    position: relative;
}
.banana{
font-size: 40px;
font-weight: 500;
}

.us{
    font-size: 12;
    color: rgb(128, 110, 110);
}
p{
  font-size: 17px;
    color: rgb(116, 98, 98);
    line-height: 1.6;
}
.learn{
  position: absolute;
    font-size: 13px;
     font-weight: bold;
     font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    padding: 15px 33px;
    background-color: rgb(85, 85, 245);
    border-radius: 5px;
    color:white;
    transition: 0.5s ease;
    margin-top: -10%;
    
}
.learn:hover{
    background-color: rgb(66, 62, 62);
    color: white;
}
.pin{
    float: right;
    height: 30%;
    width: 30%;
    margin-top: -34%;
    margin-right: 5%;
}
/* .designed{
  background-color: #155724;

   float: right;
    height: 30%;
    width: 35%;
    margin-top: -35%;
    margin-right: 5%;
} */
@media(max-width:900px){
  .about{
    max-width: 350px;
    height: 80%;
    margin-left: 3%;
    margin-top:5%;
  
}

.pin{
    float: right;
    height: 220px;
    width: auto;
    margin-top: -40%;
    margin-right: 3%;
    object-fit: cover;
}

}
@media(max-width:764px){
  .about{
    max-width: 700px;
    height: 80%;
    margin-left: 3%;
    margin-top:5%;
  
}
.pin{
  display: none;
}
}


.cats {
  background-color: blue;
  display: grid;
  gap: 24px;
  width: 100%;              /* 🔑 REQUIRED */
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cat{
  background-color: aqua;
  height: 400px;
  border-radius: 8px;
  display: flex;
  justify-content: center;

  overflow: hidden; /* 🔑 clips image cleanly */
  flex-direction: column;


}


/* DESKTOP: 3 boxes centered */
@media (min-width: 901px) {
  .cats {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;  /* 🔑 centers boxes */
  }

  .cat {
    width: 100%;            /* or set a max-width */
    max-width: 350px;       /* controls box width */
  }
}

/* TABLET + PHONE: 1 wide box per row */
@media (max-width: 900px) {
  .cats {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .cat {
    width: 100%;
    max-width: 600px;       /* wide but centered */
    
  }
}

.img_wrapper {
  width: 100%;
  aspect-ratio: 4 / 2;  /* similar to your example */
  overflow: hidden;
  border-top-left-radius: 7px;
  border-top-left-radius: 8px;
}


.img_wrapper img {
  width: 100%;
  height: 100%;           /* 🔑 follow container height */
  display: block;
  object-fit: cover;      /* keeps proportions, fills container */
  object-position: center;
}


.wrapper2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(179, 205, 223);
  font-family: Arial, sans-serif;
  padding: 10px;
  padding-top: 100px;
  padding-bottom: 70px;

}
.job_title{
  width: 100%;
  text-align: center;
  font-size: 32px;
  margin-bottom: 70px;
  color: white;


}


/* container */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: auto;
align-items: center;
}


/* card */
.card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  height: 410px;
}

/* image */
.card-image {
  width: 100%;
  height: 220px;   /* desktop image height */
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit:fill;
  display: block;
}

/* content */
.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-body p {
  color: #0b4cff;
  margin-bottom: 16px;
  padding-top: 10px;
  
}

.card-body a{
  background: #0b4cff;
  color: white;
  border: none;
  padding: 13px 34px;
  cursor: pointer;
  margin-left: -20px;
   text-decoration: none;
  color: white;
  line-height: 3.0;
}

.card-body a:hover {
  background-color: #000;
  color: white;
}
/* .smoke{
  text-decoration: none;
  color: white;
  
} */

/* TABLET */
@media (max-width: 766px) {
  .cards {
    grid-template-columns: 1fr;
    gap:45px;
    margin: auto;
    height: auto;

  }
  .card {
  background:white;
  border-radius: 5px;
  overflow: hidden;
  height: 103%;
}

  .card-image {
    height: 450px;   /* LARGE rectangle */
  }
  
}

/* PHONE */
@media (max-width: 500px) {
  .card-image {
    height: 300px;   /* MEDIUM rectangle */
  }
}

.khem{
  background-color:white;
  width: 100%;
  height:10% ;
}


.testimonials {
  background: #f1eeee;
  padding: 100px 20px;
}

.testimonials h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 60px;
  color: #323131;
  font-weight: 100;
}

.testimonial-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background: #fff;
  padding: 40px 30px;
  border-radius: 4px;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.testimonial span {
  font-weight: bold;
  color: #0b2b5c;
}

/* TABLET */
@media (max-width: 900px) {
  .testimonial-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 30px 20px;
  }
}


.victor{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;

  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Testimonial card */
.vic{
  background: #fff;
  padding: 25px;
  border-radius: 10px;

  font-size: 16px;
  line-height: 1.7;
  color: #333;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Name */
.vic b{
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #111;
}
@media (max-width: 600px){
  .vic{
    font-size: 15px;
    padding: 20px;
  }
}

    .footer {
  background: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.footer-logo {
  width: 80px;
  margin-bottom: 20px;
}

.footer-left p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.socials{
  display: flex;
  gap: 15px;
}

.socials a {
  margin-right: 15px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  font-size: 20px;
}
.socials a:hover{
  color: #0057ff;
  transition: 0.5s ease;
}

/* MIDDLE */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
}

.footer-links a:hover{
  color: #0057ff;
}

/* RIGHT */
.footer-cta p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-cta button {
  background: #0057ff;
  color: #fff;
  border: none;
  padding: 15px 35px;
  cursor: pointer;
  border-radius: 2px;
}

.footer-cta button:hover{
  background-color: #000;
  transition: 0.5s ease;
}

/* BOTTOM */
.footer-bottom {
  background:rgb(233, 237, 240);
  text-align: center;
  padding: 20px;
  font-size: 14px;
}


.footer-bottom .right{
 color: #3d3b3b;
}

.footer-bottom a {
  color: #2563eb;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* TABLET */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 30px;
  }
 
  /* LOGO */
  .footer-left {
    align-items: flex-start;
  }

  .footer-logo {
    margin: 0 auto 20px auto;
    display: block;
  }

  /* SOCIAL ICONS */
  .socials {
    display: flex;
    gap: 15px;
  }

  /* LINKS */
  .footer-links {
    align-items: center;
    gap: 12px;
    margin-left: 40%;
  }

  /* CTA */
  .footer-cta {
    margin-top: 10px;
  }

  .footer-cta button {
    width: auto;
    padding: 14px 30px;
  }
}


.monkey{
    background-color:rgba(0, 0, 255, 0.404);
    width: 100%;
    height: 45%;
    font-size: 70px;
    text-align: center;
    padding: 20px;
}

@media (max-width: 400px){
.monkey{
  display: flex;
  height: 30%;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
}
.legends {
  width: 100%;
  background-color: white;
  text-align: center;

  padding: 5vw 8vw;        /* responsive padding */
  font-size: 1.4rem;       /* scalable font size */
  font-weight: 300;
  line-height: 1.7;

  max-width: 1000px;       /* prevents long lines */
  margin: 0 auto;          /* center content */
}

.demon {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 100px 0;
  text-align: center;
}

.demon h2 {
  font-size: 70px;
  font-weight: 500;
  color: black;
}

.demon p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .legends {
    font-size: 1.1rem;
    padding: 6vw 5vw;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .legends {
    font-size: 1rem;
    padding: 5vw 4vw;
    line-height: 1.55;
  }
}

 @media(max-width:822px){
  .demon{
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 100px 0;
  text-align: center;
  max-width: 900px;
  height: auto;
}
  .demonbox{
    max-width:130px;
  }

  .demon h2 {
  font-size: 40px;
  font-weight: 700;
  color: rgb(63, 61, 61);
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.demon p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}
} 


@media (max-width: 764px) {
  .demon {
    min-height: 100vh;          /* 🔑 gives height to center */
    display: flex;
    flex-direction: column;    /* stack vertically */
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    gap: 10px;
    padding: 40px 20px;
   
  }

  .demonbox {
    width: 100%;
    max-width: 280px;
  }

  .demon h2 {
    font-size: 40px;
    color: rgb(47, 47, 47);
  }

  .demon p {
    font-size: 18px;
  }
}


.social {
  width: 100%;
  min-height: 65vh;
  background-color: rgb(236, 234, 234);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mediak {
  width: 60%;
  background-color: rgb(183, 207, 245);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 15px;
  padding: 30px 20px;
}

.Revolution {
  font-size: 27px;
  font-weight: 500;
  margin-top: 10px;
}

.follow {
  color: #444;
  margin-top: 15px;
  font-size: 16px;
}

.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;       /* critical for small screens */
  margin-top: 30px;
}

.social-container a {
  width: 55px;
  height: 55px;
  border: 2px solid #2d71f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #2d71f7;
  transition: 0.3s ease;
}

.social-container a:hover {
  background: #2d71f7;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 507px) {

  .mediak {
    width: 90%;
    padding: 20px 15px;
  }

  .Revolution {
    font-size: 20px;
  }

  .follow {
    font-size: 14px;
    margin-top: 10px;
  }

  .social-container {
    margin-top: 20px;
    gap: 10px;
  }

  .social-container a {
    width: 42px;   /* smaller icons */
    height: 42px;
    font-size: 18px;
  }
}


.god{
    width: 100%;
    height: 70%;
    background-color:rgba(0, 0, 255, 0.404);
    display: flex;
  justify-content: center;
  align-items: center;

}
.media{
    margin-top: 4%;
   background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers everything inside */
  text-align: center;
  height: 60%;
  width: 60%;
  border-radius: 15px;
}
.social-container_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;          /* allows wrapping on small screens */
  margin-top: 30px;
}

.social-container_contact a {
  width: 55px;
  height: 55px;
  border: 2px solid #2d71f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #2d71f7;
  transition: 0.3s ease;
}

.social-container_contact a:hover {
  background: #2d71f7;
  color: #fff;
  transform: translateY(-3px);
}
.follod{
    color: black;
    padding-top:7%;
}
.InTouch{
    color: #007bff;
    font-size: 30px;
    margin-top:2%; 
    font-weight: 600;
}

@media (max-width: 507px) {

  .media {
    width: 90%;
    height: auto;
    padding: 20px 10px;
  }

  .InTouch {
    font-size: 20px;
  }

  .follod {
    font-size: 14px;
    padding-top: 10px;
  }

  .social-container_contact {
    margin-top: 20px;
    gap: 10px;
  }

  .social-container_contact a {
    width: 42px;     /* smaller icons */
    height: 42px;
    font-size: 18px;
  }
}

.statf{
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 100px 0;
  text-align: center;
  
}
.statf h1 {
  font-size: 80px;
  font-weight: 700;
  color: black;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.statf p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}
.header {
    width: 100%;
    height: 20%;
    background-color: aqua;
    display: flex;
    
}

/* MAIN BLOG WRAPPER */
.fish_blog {
  width: 100%;
}

/* BLOG GRID */
.key {
  width: 100%;
  background-color: rgb(234, 239, 245);
  display: flex;
  gap: 24px;
  padding: 40px;
  flex-wrap: wrap; /* 🔑 FIX */
  box-sizing: border-box;
}

/* BLOG CARD */
.innocent {
  background: #fff;
  width: calc(33.333% - 16px); /* 3 columns desktop */
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.bad3 {
  width: 100%;
  height: 220px;
  object-fit: cover; /* 🔑 FIX */
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.6;
}

.blog-content a {
  text-decoration: none;
  color: red;
  font-weight: 600;
}

.blog-content a:hover {
  color: blue;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .innocent {
    width: calc(50% - 12px); /* 2 columns */
  }

  .bad3 {
    height: 240px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .key {
    padding: 20px;
  }

  .innocent {
    width: 100%; /* 1 column */
  }

  .bad3 {
    height: 200px;
  }

  .blog-content h2 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 14px;
  }
}

/* job styling area */
/* ===== LAYOUT ===== */
.job_middle{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.job_area{
    background-color: rgb(214, 226, 249);
    width: 95%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.image-box{
    width: 90%;
    display: grid;
    
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background-image: url("white texture.jpeg");
    background-size: cover;
    padding: 40px;
    box-sizing: border-box;
}

@media (max-width: 768px){
    .image-box{
        grid-template-columns: 1fr;
    }
}


.icon-location,
.icon-dollar{
    font-size: 16px;
    color: rgb(47, 46, 46);
}

.canada,
.n_dollar{
    font-size: 16px;
    color: rgb(116, 116, 116);
}

/* ===== LINK ===== */
.more{
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
}

.more:hover{
    color: red;
}

.regular{
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-regular{
    color: silver;
    font-size: 40px;
}

.newspaper{
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-newspaper{
    color: silver;
    font-size: 30px;
    margin: 0;
}


.n_dollar{
    color: rgb(116, 116, 116);
    font-size: 16px;
    padding-left: 10px;
}
.rec{
      display: flex;
    align-items: center;
    gap: 10px;
}
.icon-rec{
    color: silver;
    font-size: 40px;
}

.term{
    font-size: 18px;
    color: #007bff;
}
/* ===== JOB CARD LAYOUT ===== */
.job-card{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    padding: 30px;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;
}

/* ===== ICON + TITLE ROW ===== */
.regular,
.newspaper,
.rec,
.headset{
    display: flex;
    align-items: flex-start;
    height: 60px;

}

/* ICON */
.icon-regular,
.icon-newspaper,
.icon-rec,
.icon-headset{
    font-size: 30px;
    color: #c4c4c4;
    margin-top: 2px;
}

/* TITLE */
.keyboard,
.Typist,
.jide,
.habit{
    font-size: 20px;
    font-weight: 500;
    color: #222121;
    margin: 0;
    height: 60px;

}

/* CATEGORY */
.wifi,
.gay,
.les,
.bull{
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 2.5;
}

/* LOCATION & PRICE */
.location,
.dollar-sign{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 15px;
    color: #777;
    line-height: 1.7;
}

.icon-location,
.icon-dollar{
    font-size: 14px;
    color: #444;
}

/* LINK */
.more{
    margin-top: 6px;
    text-decoration: none;
    color: #1a73e8;
    font-size: 15px;
    line-height:2.0;
}

.more:hover{
    text-decoration: underline;
}

.asian{
    background: #fff;
    border-radius: 5px;
    height: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  width: 100%;
  min-height: 150px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  grid-column: 1 / -1; /* THIS is the key fix */

}
.asian h3{
  color: #363535;
  line-height:1.7 ;
  margin-top: 19px;
  font-size: 18px;
  font-weight: 550;
}

.asian a{
  color: #1a73e8;
  text-decoration: none;
  font-size: 14px;
  line-height: 3.0;
  font-size:15px ;
}
.asian a:hover{
  color: red;
  text-decoration: underline;
}

.asian_icon{
 
  display: flex;
  width: 90%;
  height:10% ;
  margin-top: 8px;

  align-self: flex-start; /* LEFT ALIGN ONLY THIS */
  gap: 10px;
  margin-top: 6px;
  padding: 6px 4px; /* LEFT padding controls edge spacing */
  color:#444  ;
}

.tax{
  width: fit-content;      /* shrink to text width */
  text-align: left;        /* text start reference */
}


@media (max-width: 768px) {

  /* make page use full mobile width */
  .job_middle {
    padding: 0;
  }

  .job_area {
    width: 100%;
    padding: 20px 12px; /* small edge spacing */
  }

  /* grid becomes full width */
  .image-box {
    width: 100%;
    padding: 16px;
    gap: 20px;
  }

  /* job cards fill screen properly */
  .job-card {
    width: 100%;
    padding: 20px;
  }

  /* HR & Payroll special card */
  .asian {
    width: 100%;
    padding: 20px;
  }

  .tax {
    width: 100%;
    max-width: none;
  }

}


/* Remote Data Entry Specialist */
.love{
     width: 100%;
    display: flex;
    height:auto;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */

}
.job-content {
    padding: 40px 95px 10px;   /* reduced side padding */
    max-width: 700px;          /* limits text width like second image */
}


.hate{
   background-color: rgb(221, 234, 234);
    width: 97%;
    position: relative;
    height:auto ;
}
.digit {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
    text-align: left;
}


.delta {
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

.delta p {
    margin-bottom: 16px;
}


.radius {
    color: red;
    display: block;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

/* ===============================
   JOB META DATA (ICONS + TEXT)
================================ */
.meta {
    margin-top: 20px;
}

.meta > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    width: auto;   /* was 300px – this caused bad wrapping */
}



.meta i {
    font-size: 18px;
    min-width: 20px;
    line-height: 1.5;
}

.bliss {
    font-size: 16px;
    font-weight: 500;
}

/* ===============================
   APPLY SECTION
================================ */
.position {
    margin-top: 40px;
}

.position h2 {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 600;
   
}

/* ===============================
   MOBILE RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

    .love {
        align-items: flex-start;
    }

    .job-content {
        padding: 24px 16px;
    }

    .digit {
        font-size: 22px;
    }

    .delta {
        font-size: 15px;
    }
    
}
.form_area{
    width: 80%;
    height:auto;
    margin-top: 3%;
    margin-left:8% ;
}
.form_group{
    width: 100%;
    margin-top: 3%;
    height: auto;
    position: relative;
}
.required{
    color: red;
}
.form_input{
    width: 100%;
    height: 44px;
    background-color: rgba(239, 237, 237, 0.799);
    border: 1px solid  rgb(120, 120, 120);
    padding: 10px;
}
.form_input:hover{
border-color: #2d71f7;
}
.form_input:focus{
    outline: none;
    border: 1px solid #007bff;
}
.email_text{
    font-size: 12px;
    font-weight:bold;
    color: rgb(120, 120, 120);
}
.form_input_cl{
   width: 100%;
  height: 160px;            /* tall field */
  padding: 12px;
  background-color:  rgba(239, 237, 237, 0.799);
  border: 1px solid rgb(120, 120, 120);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.5;          
  box-sizing: border-box;
  resize: vertical;
  position: static;
   }
.form_input_cl:focus{
     outline: none;
    border: 1px solid #007bff;
}
.form_input_cl:hover{
    border-color: #2d71f7;
}
.form_group_cover_letter{

    width: 100%;
   margin-top: 1%;
}
.form_upload{
    width: 100%;
    margin-top: 3%;
   
}
.upload_text{
     font-size: 12px;
    font-weight:bold;
    color: rgb(120, 120, 120);
}


.required {
  color: red;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-btn {
    margin-top: 5px;
  background: #1abc9c;
  color: white;
  padding: 12px 14px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
}
.file-btn:hover{
     background-color: #16a085;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hide the real file input */
.file-btn input {
  display: none;
}

.file-name {
  font-size: 14px;
  color: #555;
}

.file-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #666;
}
.allowed{
     font-size: 13px;
  color: #555;
  padding-top: 20px;
}
.consent{
     font-size: 13px;
    font-weight:bold;
    color: rgb(120, 120, 120);
    margin-top: 3%;
}
/* ===============================
   CONSENT CHECKBOX FIX
================================ */
.mum {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

/* Checkbox */
.checkbox {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Text */
.using {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* ===============================
   MOBILE FIX
================================ */
@media (max-width: 600px) {
    .using {
        font-size: 13px;
    }
}



.submit{
    width: 100px;
    height: 40px;
    margin-left: 0%;
    background-color: #007bff;
    border: none;
    border-radius: 2px;
    margin-top: 2.5%;
    color: white;
    margin-bottom: 15%;

}
.submit:hover{
      background-color:#065bb6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.error {
  display: none;
  color: #d93025;
  background: #fde8e8;
  padding: 8px 12px;
  margin-top: 6px;
  font-size: 13px;
}

.job_form.submitted .form_input:invalid + .error {
  display: block;
}

.job_form.submitted .form_input:invalid {
  border-color: #d93025;
}
/* BLOG AREA STARTS HERE */


  /* HERO IMAGE */
    .he {
      position: relative;
      height: 360px;
      background: url(premium\ black.jpeg)
        center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .he::after {
      display: none;
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(19, 18, 18, 0.55);
    }

    .he-content {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 20px;
      max-width: 900px;
    }

  

    .he-content h1 {
      color: #ffffff;
      font-size: 40px;
      margin-bottom: 10px;
      opacity: 40;
    }

    .he-content p {
      color: white;
      font-size: 20px;
      opacity: 1.9;
    }

    /* BLOG CONTAINER  */
    .blog{
      width: 100%;
      background-image: url(white\ background\ idea.jpeg);
       background-position: center;
    }
    .serah {
     max-width: 900px;
  margin: 40px auto;
  padding: 20px;
    }

    .blog-card {
      background: #ffffff;
      padding: 35px;
      border-radius: 10px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    h2 {
      margin-top: 30px;
      margin-bottom: 10px;
      font-size: 22px;
      color: #111;
    }

    p {
      margin-bottom: 15px;
      font-size: 16px;
    }

    ul {
      margin-left: 20px;
      margin-bottom: 15px;
    }

    ul li {
      margin-bottom: 8px;
    }

    .highlight {
      background: #eef6ff;
      padding: 18px;
      border-left: 4px solid #007bff;
      margin: 25px 0;
      border-radius: 5px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .he {
        height: 260px;
      }

      .he-content h1 {
        font-size: 28px;
      }

      .he-content p {
        font-size: 16px;
      }

      .blog-card {
        padding: 25px;
      }
    }
   
  .alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: bold;
}
.success {
    background: #d4edda;
    color: #155724;
}
.error {
    background: #f8d7da;
    color: #721c24;
}


/* Homepage counter */

.statf{
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 100px 0;
  text-align: center;
}
.statf h1 {
  font-size: 60px;
  font-weight: 700;
  color: rgb(47, 47, 47);
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.statf p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* media query for number */
 @media(max-width:822px){
  .statf{
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 100px 0p;
  text-align: center;
  max-width: 900px;
}
  .stat-bof{
    max-width:120px;
    
  }

  .statf h1 {
  font-size: 50px;
  font-weight: 700;
  color: rgb(63, 61, 61);
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.statf p {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}
} 


@media (max-width: 764px) {
  .statf {
    min-height: 100vh;          /* 🔑 gives height to center */
    display: flex;
    flex-direction: column;    /* stack vertically */
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    gap: 10px;
    padding: 40px 20px;
  }

  .stat-bof {
    width: 100%;
    max-width: 280px;
  }

  .statf h1 {
    font-size: 70px;
    color: rgb(47, 47, 47);
  }

  .statf p {
    font-size: 18px;
  }
}

