* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: sans-serif; */
  background-color: black;
}

/* nav */


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color:rgb(150, 192, 237); */
  background-color: #b6c7d1;
  /* padding: 10px 20px; */
  font-weight: bold;
  font-size: 22px;
  z-index: 2;
  border-bottom:2px solid #1ea5d6;
  margin: 0px;
  padding: 0px;
}


.logo {
 
  margin: 0px;
  padding-left: 10px;
  
}

.logo img{
  width: 100px;
  height: auto;
}


.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 60px;
  padding-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color:white;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: lab(1.7% 0.26 0.09);
  font-size: 30px;
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: #1b1919;
  cursor: pointer;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color:rgb(15, 14, 14);

    /* border-bottom: 2px solid red; */
    text-align: center;
    position:absolute;
    top: 90px;
    right: 0px;
    width: 100%;
    border-radius: 7px;
  }

.nav-links li {
    margin: 10px 70px;
    color: #ffffff;
    background-color: hsl(180, 17%, 86%);
    border-bottom: 2px solid #007bff;
     }

     .nav-links a{
     color: #e40b0b;
     }

  .menu-icon {
    display: block;
  }
}

/* nav end */

/* slide */
 

    .carousel-inner {
      text-align: center;
    }

    .carousel-item img {
      max-width: 88%;
      height: auto;
      
      margin: auto;
    }

    .carousel-caption {
      bottom: 15px;
    }

    .bt10 {
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      /* background-color:white; */
      color: rgb(10, 9, 9);
      border-radius: 10px;
      cursor: pointer;
      /* border: 5px solid #e50404 ; */
      transition: background-color 0.3s ease;
    }

    .bt10:hover {
      background-color: hwb(240 12% 87%);
      color: #b6c7d1;

    }

    /* Override Bootstrap dark background to match slide color */
    .carousel-item {
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .carousel-indicators [data-bs-target] {
      background-color: #ffffff;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
    }

    /* slide end */

    /* about */
   

.about-box {
  /* max-width: 1200px; */
   box-sizing: border-box;
   line-height: 1.6;
  margin: 0 auto;
  background-color: black;
  padding: 40px;
  /* border-radius: 10px; */
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.text-bigger {
    font-size: 2.9rem;
    color: white;
    margin-bottom: 60px;
    font-weight: bold;
    word-spacing: 10px;
    letter-spacing: 20px;
    text-align: center;
  
}

.text-bigger:hover{
      font-size :2.9rem; 
    }

.secter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.par {
  flex: 1 1 60%;
  padding: 25px;
  font-weight: bold;
}

.text-smaller {
  font-size: 25px;
  font-weight: bold;
  color:white;
  
  letter-spacing: 2px;
  word-spacing: 2px;
}

.backup {
  font-weight: bold;
  color: #007bff;
  font-size: 2.20rem;
}

.thumber {
  flex: 1 1 35%;
  text-align: center;
  
  height: 370px;


}

.thumber img {
  max-width: 100%;
  height:100% ;
  border-radius: 8px;
}


/* 25+ */

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #0a0a0a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px whitesmoke;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 70px;
}

.stat-box {
    text-align: center;
    flex: 1;
   
    min-width: 150px;
}


.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #0077cc;
    margin: 0;
}

.stat-label {
    font-size: 30px;
    color: white;
    margin: 10px 0 0 0}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
  .secter {
    flex-direction: column;
    text-align: center;
  }

  .text-bigger {
    font-size: 30px;
    letter-spacing: 7px;
    word-spacing: 4px;
  }

  .text-bigger:hover{
    font-size:32px;
  }

  .text-smaller {
    font-size: 20px;
  }

  .stats-section {
        flex-direction: column;
        padding: 20px;
        
    }

    .stat-box {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
  .text-bigger {
    font-size: 20px;
   
  }

  .text-bigger:hover{
    font-size: 21px;
  }

  .text-smaller {
    font-size: 15px;
  }

  .about-box {
    padding: 15px;
  }
}

/* about end */




/* services */
 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    #ourservices {
      padding: 90px 60px;
      background-color:black;
      text-align: center;
    }

    .ah1 {
      font-size: 2.5rem;
      color: white;
      margin-bottom: 90px;
      /* margin-top: 20px; */
      font-weight: bold;
      word-spacing: 10px;
      letter-spacing: 20px;
      
}
    

    .ah1 span {
      color: hwb(0 18% 0%);
      
    }

    .ah1:hover{
      font-size:2.7rem; 
    }

    .services-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
      box-sizing: border-box;
    }

    .service-page {
      background-color: #b6c7d1;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(52, 130, 239, 0.1);
      padding: 20px;
      
      border: 2px solid rgb(5, 100, 174);
       box-shadow:0px  10px 10px  lightblue ;
      flex: 1 1 250px;
      max-width: 290px;
      transition: transform 0.3s ease;
    }

    .service-page:hover {
      transform: translateY(-8px);
      background-color: aliceblue;
      border-top: 5px solid rgb(18, 155, 208);
    }

    .service-page img {
      width: 170px;
      height: auto;
      margin-bottom: 5px;
    }

    .service-page h2 {
      font-size: 1.50rem;
      margin-bottom: 10px;
      color: #2e71ff;
    }

    .service-page p {
      font-size: 1.20rem;
      color: #333;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .ah1 {
        font-size: 1.80rem;
        word-spacing: 2px;
        letter-spacing: 3px;
      }

      .ah1:hover{
        font-size: 1.90rem;
      }

      .service-page {
        max-width: 90%;
      }
    }

    /* services end */



    /* choose */

    /* Base Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Container */
    .boxx1 {
      max-width: 100%;
      margin: auto;
      background-color:black;
      padding: 40px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      
    }

    /* Heading */
    .text-big {
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      margin: 30px 0 50px;
      color: hsl(218, 67%, 98%);
      word-spacing: 8px;
      letter-spacing: 15px;
    }

    .text-big:hover{
      font-size: 2.7rem;
    }

    /* Section layout */
    .section {
      display: flex;
      flex-wrap: wrap;
      margin-top: 30px;
      align-items: center;
      justify-content: space-between;
    }

    /* Text Content */
    .paras {
      flex: 1;
      padding: 25px;
    }

    .text-small {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #2e71ff;
    }

    .bb {
      color: hsl(225, 67%, 99%);
      font-weight: bold;
      margin-top: 40px;
      font-size: 23px;
    }

    /* Image styling */
    .thumbnail {
      flex: 1;
      padding: 20px;
      text-align: center;
    }

    .thumbnail img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
      }

      .paras, .thumbnail {
        padding: 15px;
      }

      .text-big {
        font-size: 1.80rem;
        word-spacing: 2px;
      letter-spacing: 3px;
      }

      .text-big:hover{
        font-size: 1.90rem;
      }

      .text-small {
        font-size: 1.80rem;
      }
    }

    @media (max-width: 480px) {
      .text-big {
        font-size: 1.0rem;
        word-spacing: 0px;
      letter-spacing: 0px;
      }

      .text-big:hover{
        font-size: 1.30rem;
      }



      .text-small {
        font-size: 1rem;
      }
    }


    /* choose end */



    /* form */


    .container-main {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      background:black;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding: 40px 20px;
      gap:30px;
      /* padding-bottom: 80px; */
     
      
    }

    .head {
      width: 100%;
      text-align: center;
      color: #e1dbdb;
      font-size: 2.8rem;
      margin-bottom: 20px;
      word-spacing: 8px;
      font-weight: bold;
      letter-spacing: 15px;
      
    }

    .head:hover{
        font-size: 2.9rem;

    }

    .form-image {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
      padding: 20px;
      
      text-align: center;
      margin-right:70px;
    }

    .form-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .form-container {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
      margin: 20px;
      padding: 25px;
      background-color: #b6c7d1;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    .fo {
      display: flex;
      flex-direction: column;
    }

    .field {
      border: none;
      margin-bottom: 18px;
      margin-top: 5px;
      padding: 0;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
      font-size: 16px;
      transition: border-color 0.3s ease-in-out;
    }

    input:focus,
    textarea:focus {
      border-color: #131415;
      outline: none;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    button[type="submit"] {
      background-color: #007BFF;
      color: white;
      padding: 14px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button[type="submit"]:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .container-main {
        flex-direction: column;
        align-items: center;
      }
      .form-image,
      .form-container {
        max-width: 100%;
      }
      .head{
        font-size: 1.80rem;
        word-spacing: 2px;
        letter-spacing: 3px;
      }

      .head:hover{
          font-size: 1.90rem;
      }
    }

    /* form end */

    /* footer start */
 
    .main {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas: "main" "footer";
  overflow: hidden;
  background: #040404;
 
  font-family: 'Open Sans', sans-serif;
  
}
 .footer {
  z-index: 1;
  --footer-background:#007BFF;

  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
  margin-top: 100px;
}
 .footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  -webkit-filter: url("#blob");
          filter: url("#blob");
}
.footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
          animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
 .footer .content {
  z-index: 2;
  /* display: grid; */
  grid-template-columns: 1fr auto;
  grid-gap: 4rem;
  padding: 2rem;
  background: var(--footer-background);
}



/* Social Icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icons li a {
  color: #007BFF;
  background-color: white;

  padding-top: 9px;
  border-radius: 30%;
  font-size: 20px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 20px;
  text-decoration: none;
}

.social-icons li a:hover {
  font-size:25px ;
}
   
  

 
 
/* Footer Navigation */
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  
  margin-bottom: 20px;
}

.footer-link {
  text-decoration: none;
  color:white;
  font-weight: 700;
  transition: color 0.3s;
}

.footer-link:hover {
  text-decoration:underline
}

/* Contact Info */
.contact-info,
.email-info {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-info a,
.email-info a {
  font-size: 18px;
  color: white;
  text-decoration: none;
  
  padding: 10px;
  border-radius: 50%;
  /* border: 1px solid #ccc; */
  /* transition: background 0.3s; */
}

.contact-info a:hover,
.email-info a:hover {
  background-color: #007BFF;
  color: white;
}

.contact-info h3,
.email-info h3 {
  font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  /* border-top: 2px solid rgb(13, 134, 221); */
  font-size: 15px;
  color:white;
  margin-left: 60px;
}

.footer-bottom a {
  color: #007BFF;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* Responsive */
@media (max-width: 600px) {
  .social-icons {
    display: flex;
    
  }

  .footer-links {
    display: flex;
  }

  .contact-info,
  .email-info {
    display: flex;
    
  }
}




@-webkit-keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@-webkit-keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}



     /* footer end */