*{
  margin: 0%;
  padding: 0%;
  /* outline: red 1px solid; */
}

/* practice slider */
/* --- Slider Container --- */
.Slider-box-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.radio {
  display: none;
}

.Slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.Slider {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

/* --- Individual Slide --- */
.Slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  transition: opacity 1.2s ease-in-out;
}

.Slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 2s ease;
}

.caption {
  position: absolute;
  left: 8%;
  top: 35%;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  letter-spacing: -2px;
  transition: all 2s ease;
}

.P-caption {
  position: absolute;
  left: 8%;
  top: 28%;
  color: #e0e0e0;
  font-family: "Source Code Pro", monospace;
  opacity: 0;
  transition: all 2s ease;
}

/* --- Dot Controls --- */
.Dots {
  position: absolute;
  bottom: 5%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.Dots label {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Dots label:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

/* --- Active Slide States --- */
#radio-1:checked ~ #Slide-1,
#radio-2:checked ~ #Slide-2,
#radio-3:checked ~ #Slide-3 {
  opacity: 1;
}

#radio-1:checked ~ #Slide-1 img,
#radio-2:checked ~ #Slide-2 img,
#radio-3:checked ~ #Slide-3 img {
  transform: scale(1);
}

#radio-1:checked ~ #Slide-1 .caption,
#radio-2:checked ~ #Slide-2 .caption,
#radio-3:checked ~ #Slide-3 .caption {
  opacity: 1;
  top: 32%;
  font-size: 50px;
}

#radio-1:checked ~ #Slide-1 .P-caption,
#radio-2:checked ~ #Slide-2 .P-caption,
#radio-3:checked ~ #Slide-3 .P-caption {
  opacity: 1;
  top: 25%;
  font-size: 20px;
}

/* --- Active Dot Highlight --- */
#radio-1:checked ~ .Dots #label-1,
#radio-2:checked ~ .Dots #label-2,
#radio-3:checked ~ .Dots #label-3 {
  opacity: 1;
  background: #00bfff;
  box-shadow: 0 0 10px #00bfff, 0 0 20px #00bfff;
}

/* --- Responsive Styling for slider --- */
@media (max-width: 992px) {
  .caption {
    font-size: 6vw;
    top: 38%;
  }
  .P-caption {
    font-size: 1.2vw;
    top: 30%;
  }
}

@media (max-width: 600px) {
  .caption {
    font-size: 8vw;
    left: 5%;
    top: 40%;
    line-height: 1.2;
  }
  .P-caption {
    font-size: 3.5vw;
    left: 5%;
    top: 32%;
  }
  .Dots label {
    width: 12px;
    height: 12px;
  }
}

/* about Company */
.about-company {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
  box-sizing: border-box;
}

.about-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: auto;
  max-width: 1200px;
  margin: auto;
}

.about-sub1-container {
  width: 45%;
  min-width: 320px;
  height: auto;
  margin-left: 30px;
  padding-left: 20px;
  box-sizing: border-box;
}

.about-sub2-container {
  width: 50%;
  /* min-width: 300px; */
  height: auto;
  margin-left: 5px;
  padding: 0;
}

span {
  font-size: 16px;
  font-weight: 800;
  color: #7141b1;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

#heading-1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-top: 5px;
  color: #1b1d21;
}

.paragraph-contant p {
  width: 90%;
  line-height: 1.6;
  color: #666666;
  font-size: 16px;
}

.element-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

.sub-element-container {
  width: 48%;
  min-width: 240px;
  margin-bottom: 15px;
  padding: 5%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.sub-element-container:hover {
  box-shadow: rgba(219, 35, 35, 0.16) 0px 1px 4px;
}

.icon img {
  width: 55px;
  padding: 5%;
}

.heading-a{
  font-size: 38px;
}

.E-h5 {
  font-size: 18px;
  font-weight: 600;
}

.E-para {
  color: #666666;
  line-height: 1.5;
  margin-top: 10px;
}

/* ===================================== */
/* ✅ RESPONSIVE MEDIA QUERIES (about/company) */
/* ===================================== */

/* Tablets (<= 1024px) */
@media screen and (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-sub1-container,
  .about-sub2-container {
    width: 90%;
    margin: 0;
    padding: 10px;
  }

  .paragraph-contant p {
    width: 100%;
  }

  .element-container {
    justify-content: center;
  }

  #heading-1 {
    font-size: 30px;
  }
}

/* Mobile Devices (<= 768px) */
@media screen and (max-width: 768px) {
  .about-company {
    height: auto;
    padding: 40px 0;
  }

  .about-sub1-container {
    width: 100%;
    margin: 0;
    padding: 15px;
    text-align: center;
  }

  .about-sub2-container {
    width: 100%;
    height: 280px;
    background-size: contain;
    margin-top: 20px;
  }

  .paragraph-contant p {
    width: 100%;
    font-size: 15px;
  }

  #heading-1 {
    font-size: 26px;
  }

  .element-container {
    flex-direction: column;
    align-items: center;
  }

  .sub-element-container {
    width: 90%;
  }

  .about-sub2-container {
    display: none;
  }
}

/* Small Phones (<= 480px) */
@media screen and (max-width: 480px) {
  #heading-1 {
    font-size: 22px;
  }

  span {
    font-size: 14px;
  }

  .paragraph-contant p {
    font-size: 14px;
  }

  .icon img {
    width: 45px;
  }

  .E-h5 {
    font-size: 16px;
  }

  .about-sub2-container{
    display: none;
  }
}

/* why choose us */
.business-section{
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  background-color: #120a4f;
  height: 120vh;
}
.business-container{
  width: 80%;
  height: 90%;
}
.business-info{
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-heading h5{
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
  text-transform: uppercase;
  text-align: center;
}
.heading-2{
  color: #FFFFFF;
  text-align: center;
  font-size: 50px;
}
.business-serve{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1px;
  justify-content: center;
}
.serve-box{
  width: 80%;
  height: max-content;
  margin-left: 4%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.serve-sub-box{
  border: 1px solid  #3a336a;
  height: 270px;
  background-color: #211b45;
  padding: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.serve-sub-box:hover{
  background-color: #FFFFFF;
  transform: scale(1.03);
}
.serve-sub-box:hover .box-item{
  color: black;
}
.serve-sub-box:hover .box-item-i{
  background-color: #3bbdf6;
}
.serve-sub-box:hover .box-item-p p{
  color: rgba(0, 0, 0, 0.785);
  font-weight: 100;
}
.serve-heading{
  font-size: 1.56em;
  font-weight: 800;
  color: #FFFFFF;
  padding-top: 5px;
}
.serve-paragraph p{
  margin-top: 10px;
  line-height: 22px;
  font-size: 1.12em;
  text-align: left;
  color: #b5a9f06c;
}
.learn-more{
  margin-top:30% ;
  display: flex;
  float: left;
}
.learn-link{
  text-decoration: none;
  color: #3bbdf6;
  font-weight: 400;
  margin-left: 5px;
}
.serve-logo{
  width: 165px;
  height: 162px;
  background-color: #3a3265cf;
  position: absolute;
  bottom: -75px;
  right: -65px;
  border-radius: 47%;
}
.serve-logo i{
  font-size: 48px ;
  position: absolute;
  top: 19%;
  left: 21%;
  color: #FFFFFF;
}

/* our service */

.service-container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px; /* Add margin to create space */
  position: relative; /* Add position relative */
  z-index: 2; /* Add higher z-index */
}

.service-sub-container{
  width: 90%;
  height: 91%;
  margin-top:2%;
}

.service-box {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px 20px;
  box-sizing: border-box;
}

.service-box1 {
  width: 55%;
  
  color: #fff;
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-box1 span {
  font-size: 16px;
  font-weight: 800;
  color:#7141b1;
  margin-bottom: 12px;
  text-transform: uppercase;
  display: inline-block;
}

.service-box1 h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.service-box2 {
  width: 35%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

#all_service {
  padding: 14px 25px;
  border-radius: 6px;
  font-size: 18px;
  background-color: rgb(47, 197, 182);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}

#all_service a {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

#all_service:hover {
  background-color: #7141b1;
}

/* =========================== */
/* ✅ Responsive Media Queries */
/* =========================== */

/* Tablets (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }

  .service-box1,
  .service-box2 {
    width: 90%;
    margin: 10px 0;
  }

  .service-box1 {
   height: 150px;
  }

  .service-box1 h2 {
    font-size: 34px;
    
  }

  #all_service {
    width: 160px;
    height: 50px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
  .service-box {
    padding: 20px 10px;
  }

  .service-box1 {
    width: 100%;
    padding: 2px 1px;
  }

  .service-box1 h2 {
    font-size: 33px;
    
  }

  .service-box2 {
    width: 70%;
    height: auto;
    background-color: transparent;
    justify-content: center;
  }

  #all_service {
    position: static;
    margin-top: 10px;
    width: 75%;
    height: auto;
  }
}

/* Small Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
  .service-box1 h2 {
    font-size: 20px;
  }

  .service-box1 span {
    font-size: 14px;
  }

  #all_service {
    font-size: 15px;
    padding: 10px 20px;
  }
}

.service-info{
  margin-top: 30px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
  gap: 1px;
  justify-content: center;
}
.service-info-box{
  width: 85%;
  height: 170px;
  padding: 1.2em;
  margin-left: 4%;
  border: 1px solid rgba(0, 5, 11, 0.103);
  border-radius: 10px;
  margin-top: 10px;
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}
.service-info-box:hover{
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.service-logo{
  width: 20%;
  height: max-content;
}
.service-logo img {
  width: 60px;
}
.service-sub-info{
  width:75% ;
  margin-left: 5%;
  border-color: rgb(236, 134, 9);
  text-align: left;
}


.image_container {
  width: 100%;
  height: 85vh;
  position: relative;
  display: inline-block;
  z-index: 1; /* Lower z-index than service-container */
}

.image{
  position: absolute;
  bottom: 0px;
  background-color: #5402f7;
  width: 70%;
  height: 81%;
  left: 14%;
  display: block;
}
#footer_image{
  position: absolute;
  width: 100%;
  height: 100%;
}
.info-image{
  position: absolute;
  z-index: 1;
  top: 13%;
  left: 8%;
  width: 50%;
}
.info-image h1{
  color: #FFFFFF;
  font-size: 48px;
  line-height: 60px;
}
.info-image h3{
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.contact-btn{
  font-family: "Nunito Sans", Sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  background-color: rgba(67, 186, 255, 0);
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 21px 35px;
  text-decoration: none;
  margin-top: 20%;
}
.contact-btn a{
  text-decoration: none;
  color: #FFFFFF;
}
.contact-btn:hover{
  background-color: rgb(78, 78, 241);
  border-color: blue;
}



/* === RESPONSIVE FIXES === */
@media (max-width: 1475px) {
  .business-section{
    height: auto;
    padding: 50px;
  }
}

@media (max-width: 1024px) {
  .business-section {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }


  .business-serve{
    grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
    gap: 25px;
  }
  .service-info {
    grid-template-columns: 1fr;
  }
  .serve-box, .service-info-box {
    width: 90% !important;
    margin: 10px auto;
  }

  .info-image {
    width: 90%;
    left: 5%;
    top: 10%;
  }
  .info-image h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .info-image h3 {
    font-size: 16px;
  }
  .contact-btn {
    font-size: 12px;
    padding: 14px 20px;
  }
  .image {
    width: 90%;
    left: 5%;
  }
}


@media (max-width: 772px) {
  .serve-sub-box{
    height: 200px;
  }
  
  .learn-more{
    margin-top:15%;
  }
}
@media (max-width: 600px) {
  
  #heading-1 {
    font-size: 28px;
  }
  .heading-a{
    display: inline-block;
    font-size: 32.5px;
  }
 
  
 
}