/* header start */
/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
 

  /* Header styling */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: rgb(184, 87, 87);
    color: blue;
  }

  .black nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgb(34, 30, 30);
    color: rgb(212, 203, 203);
  }
  
  .li  {
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 100px;
    transition: background-color 0.3s ease;
  }

  header .logo h1 {
    font-size: 24px;
    font-weight: bold;
    padding: 8px 100px;
  }

  
  
  /* Navigation styling */
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 8px 100px;
  }
  
  nav ul li {
    display: inline-block;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: rgb(6, 190, 247);
  }
  
  /* Responsive design for smaller screens */
  @media screen and (max-width: 668px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
  }

  
  
  /* header end */


/* Footer start */
/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 2;
  margin-bottom: 100px; /* Space for the footer */
}

/* Footer Styling */
.footer {
  background-color: #333;
  color: white;
  padding: 30px 0;
  font-size:18px ;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  padding: 50px;
  min-width: 250px;
}

.hl{
  padding: 20px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style-type: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f1c40f;
}

.footer-bottom {
  background-color: #222;
  text-align: center;
  padding: 10px 0;
}

/* Mobile View - Responsive Styles */
@media screen and (max-width: 668px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    min-width: 100%;
    text-align: center;
  }

  .footer-bottom {
    padding: 15px 0;
  }
}

@media screen and (max-width: 380px) {
  .footer-section h3 {
    font-size: 18px;
  }

  .footer-section ul li a {
    font-size: 14px;
  }
}

/* Footer End */

/* Content Start */



/* Container that holds the divs */
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  height: 50%;
  max-width: 1200px;
  padding: 20px;
  margin: 7%;
}

.container :hover {
 background-color: rgb(33, 25, 73);
 color: white;
}

/* Styling for each box */
.box {
  background-color: #dae9da;
  color: rgb(33, 25, 73);
  text-align: center;
  padding: 20px;
  justify-content: center;
  border-radius: 8px; 
  box-sizing: border-box;
  min-width: 300px;
}

.box i{
  padding-top: 30px;
}

.div1{
  background-color: rgb(60, 52, 105) ;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  margin-top: 50px;
}

.div1:hover{
  background-color: cadetblue;
}

/* Responsive adjustments */
@media screen and (max-width: 668px) {
  .box {
    width: 50%; /* Two boxes per row on medium-sized screens */
    
  }
}



@media screen and (max-width: 248px) {
  .div1 {
    width: 90%; /* One box per row on small screens */
  }
}

.blue{
  background-color: lightblue;
  text-align: center;
  height: 200px;
  padding: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.al{
  padding-top: 40px;
}

.blue1{
  display: flex;
  flex-wrap: wrap;
  background-color: lightblue;
  justify-content: center;
  height: 60%;
  padding: 20px;
  margin-top: 5px;
  margin-bottom:5px;
}

.alll{
  text-align: center;
  padding: 60px;
}

.div2{
  
  background-color: rgb(60, 52, 105) ;
  color: white;
  text-align: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  width: 400px; /* Default width for larger screens */
  height: 100px;
  min-width: 200px;
  margin-left: 20px;
}

.logo{
  height: 100px;
  width: 100px;
  margin-left: 50px;
}
/* Content End */



/* Servcis Start*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* Optional: Adds space between divs */
  justify-content: space-around; /* Distribute space evenly */
  margin: 8%;
  background-color: rgb(184, 182, 182);
}

.srv:hover{
  
  border: 4px solid rgb(97, 39, 39);
}


.blues{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 150px;
  padding: 20px;
  margin: 5px;
}

.ali{
  padding-top: 40px;
  border-bottom: 4px solid gray;
}

.box1 {
  text-align: center;
  flex: 1 1 22%;  /* flex-grow, flex-shrink, and flex-basis */
  background-color: black;
  padding: 20px;
  color: white;
  box-sizing: border-box; /* Prevent padding from affecting width */
 
}

.srv img{
  width: 260px;
  height: 300px;
}

.box2 {
  text-align: center;
  flex: 1 1 22%;  /* flex-grow, flex-shrink, and flex-basis */
  background-color: rgb(60, 52, 105);
  color: white;
  padding: 20px;
  box-sizing: border-box; /* Prevent padding from affecting width */
}

@media (max-width: 668px) {
  .box1 {
      flex: 1 1 45%;  /* On smaller screens, make each box take up 45% */
  }
}

@media (max-width: 480px) {
  .box1 {
      flex: 1 1 100%;  /* On very small screens, make each box take up 100% */
  }
}

@media (max-width: 668px) {
  .box2 {
      flex: 1 1 45%;  /* On smaller screens, make each box take up 45% */
  }
}

@media (max-width: 480px) {
  .box2 {
      flex: 1 1 100%;  /* On very small screens, make each box take up 100% */
  }
}

/* Servcis end*/


/* About Start*/


.blue2{
  text-align: center;
  color: white;
  background-color: rgb(60, 52, 105);
  padding: 70px;
  margin-bottom:5px;
}

.blue3{
  background-color: lightblue;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 70px;
  margin-top: 5px;
  margin-bottom:5px;
}

.main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4%;
}

.pic{
  flex: 1 1 45%; /* Flex: grow, shrink, basis */
  
}

.pic img{
  height: 550px;
  width: 550px;
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
  .pic {
      flex: 1 1 100%; /* Take full width on smaller screens */
  }
}

.pcon{
  
  background-color: rgb(60, 52, 105) ;
  color: white;
  text-align: center;
  padding: 30px;
  border-radius: 8px; /* Default width for larger screens */
  height: 100px;
  margin: 30px;
}

.container0 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  height: 50%;
  max-width: 1200px;
  padding: 20px;
  margin: 7%;
}

.container0 :hover {
  background-color: rgb(33, 25, 73);
  color: white;
 }

.box0 {
  background-color: #dae9da;
  color: rgb(33, 25, 73);
  text-align: center;
  padding: 20px;
  justify-content: center;
  border-radius: 8px; 
  box-sizing: border-box;
  min-width: 250px;
}

.containerr {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  height: 50%;
  padding: 20px;
  margin: 5%;
}

.box00 img{
  height: 180px;
  width: 200px;
}



/* About end*/



/* home start*/

@media (MIN-width: 768px){
.div20{
  display: none;
}
}

/* Basic Reset */


body {
  font-family: Arial, sans-serif;
}

/* Navbar Styles */


/* Hamburger Icon Styles */
.menu-icon {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0.5px;
  right: 50px;
  z-index: 10;
  margin-top: 150px;
}

.menu-icon .bar {
  display: block;
  width: 30px;
  height: 4px;
  background-color: rgb(138, 90, 2);
  margin: 6px 0;
  transition: 0.3s;
}


/* Media Query for mobile screens */
@media (max-width: 668px) {
  .menu-icon {
      display: block; /* Show the hamburger icon on mobile */
  }

  /* Show the navbar when the active class is added */
  .dropdown.active {
      display: block;
  }

  .dropdown {
    background-color:rgb(166, 174, 223) ;
    display: none;
    width: 40%;
    position:absolute;
    top: 200px;
    left: 150px;
  }
  
  .dropdown ul {
    list-style-type: none;
    text-align: center;
  }
  
  .dropdown ul li {
    padding: 10px 0;
  }
  
  .dropdown ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .div20{
    position: sticky;
    bottom: 0%;
    background-color: rgb(207, 33, 33) ;
    color: white;
    text-align: center;
    justify-content: center;
    padding: 10px;
    width: 100%; /* Default width for larger screens */
    height: 80px;
  }

  .pic img{
    height: 300px;
    width: 300px;
  }

  body{
    margin: 0%;
    padding: 0%;
  }

  .box00 img{
    height: 150px;
    width: 160px;
  }
}




/* Basic Reset */


body {
  font-family: Arial, sans-serif;
}

/* Slider Container */
.slider-container {
  background-color: lightblue;
  width: 99%;
  margin-bottom: 0.5%;
  overflow: hidden;

}

/* Slider */
.slider {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: auto;
}

/* Description below the image */
.description {
  font-size: 18px;
  color: black;
}

/* Dots Navigation */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.dot {
  height: 10px;
  width: 8%;
  margin-bottom: 50px;
  border-radius: 10%;
  background-color: #bbb;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}


/* home end*/



/* Whatsapp Start*/



.whatsapp-logo {
  align-items: center;
  height: 5px;
  cursor: pointer;
  display:inline-flex;
  position: sticky;
  top: 200px;
  border-radius: 50%;
  
}

.whatsapp-logo img {
  width: 150px;
  height: 150px;
}

@media (max-width: 668px) {
 
  .whatsapp-logo {
    height: 5px;
    cursor: pointer;
    display:inline-flex;
    position: sticky;
    
  }

  .whatsapp-logo img {
    width: 100px;
    height: 100px;
  }

}
/* Whatsapp end*/

