



/************************************Header Div started **********************************/

body {
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
    overflow-x: hidden; /* secret content<body width */ 
    /*background-image: url('digital.avif');
    /*overflow: hidden; /* Prevents scrollbars during animation */
}
* {
  box-sizing: border-box;
}
.content {
  width: 100%;
}

header {
    background-color:white;
    color: lightskyblue;
    padding: 15px;
    text-align: center;
    width: 100%;
}

img
{
float: left;
margin: 20px;
}


/************************************Header Div Completed  **********************************/

/************************************Navigation Div Started **************************************/
nav {
    background-color: lightskyblue;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
}
#nav{
  width: 100%;
  padding-left: 30%;/* great solution */
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left;
}

nav ul li {
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #ddd;
    color: black;
}


/************************************Header Div Completed  **********************************/


/************************************Service Div started   **********************************/

#allservice {
    height: fit-content;
    width: 100%;
     background-color:#F5F8FA;
  }

  #serhold {
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;

  }

  .service {
    text-align: center;
    background: #eee;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 29.3%;
    float: left;
    margin-left: 2%;
    margin-right: 2%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
   margin: 20px;
  }

  .service img {

    border-radius: 5%;
    width: 100%;
    height: 30%;
    overflow: hidden;
    object-fit: cover;
    margin-left: 0;
    margin-top: 0;
  }

  .service h3 {
    color: darkred;
    font-family: serif;
   
   } 

 .service p1 {
    color:blue;
    font-weight: bold;
   } 

   .service p{
    color:black;
    text-align: justify;
    font-size: medium;
    font-family: serif;
    
   } 

   /************************************Service Div completed    **********************************/

/************************************footer div****************/
#foot
{
    width: 100%;
    height: 75px;
    background-color: lightskyblue;
}
#fff{

    width: 50%;
    margin-left: 40%;
    color: white;
    padding: 10px;
}

/************************************footer div****************/


  /* For small screens like phones */
@media (max-width: 600px) {
  .service {
    width: 100%;
    height: 300px;
    overflow: hidden;
   
  }


  .service img {

    border-radius: 5%;
    width: 100%;
    height: 40%;
    overflow: hidden;
    object-fit: cover;
    margin-left: 0;
    margin-top: 0;
  }
.service p
{
  color: #0A3D62; 

}
  nav { 
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: lightskyblue;
}

nav ul {  
  margin-left: 16%;
}
header
{
width:100%;
}

}

/* For tablets and medium screens */
@media (max-width: 900px) {
  
   .service {
    width: 100%;
    height: 300px;
    overflow: hidden;
   
  }

  .service img {

    border-radius: 5%;
    width: 100%;
    height: 40%;
    overflow: hidden;
    object-fit: cover;
    margin-left: 0;
    margin-top: 0;
  }

  

}

/* For large screens (desktops) */
@media (min-width: 901px) {
}

 


