@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior:smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
/* Global Tags */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(35, 35, 85);
}
span {
  font-size: 0.9rem;
  color: #757373;
}
h6 {
  font-size: 1.1rem;
  color: rgb(24, 24, 49);
}



/* Navigation bar starts*/
nav{
    display: flex; /*displays img and nav menu in one row*/
    flex-direction: row;
    justify-content: space-between;/* Space between logo img and nav menu */
    padding: 0.5vw 8vw; /* 1vw to space from top & bottom , 8vw from left right */
    align-items: center;/*Displays img and nav menu in center added after hover effect*/
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    position:fixed;
    width:100%;
    background-color: #fff;
}

/* Styling logo image */
nav img{
    width: 80px;
    cursor:pointer;
}


/* Menu hamburger */
nav .navigation{
  display:flex;
}
#menu-btn{
  width:30px;
  height:30px;
  display:none;
}
#menu-close{
  display:none;
}
/* Styling nav menu items */
nav .navigation ul{
    display: flex;/* display everything in one row*/
    justify-content: flex-end; /*display ends in one row*/
    align-items: center; /*displays items in center of nav bar*/
}
nav .navigation ul li{
    list-style: none;
    margin-left: 60px;
}
nav .navigation ul li a{
    text-decoration: none;
    color:rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition:0.3s ease;/*hover effect making smooth else itis fast*/
}
nav .navigation ul li a.active,
nav .navigation ul li a:hover{
    color:gold;
}
/* Navigation Bar ends */


/* Home Starts */

/* Hero container starts */
#home{
  background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("Images/home2.jpg");
  width: 100%;
  height:100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content:center;
  text-align: center;
}
/* hero heading h2 */
#home h2{
  color: white;
  font-size: 3.2rem;
  letter-spacing: 1px;
}
#home p{
  color: white;
  font-size: 1.5rem;
  line-height: 25px;
  margin-top: 10px;
}
/* home heading h2 anchor tag buttons */
#home a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: white;
  font-weight: 600;
  border-radius: 5px; 
}
#home .btn{
  margin-top: 40px;
}
#home a.blue{
  color: white;
  background: rgb(21,21,100);
  transition:0.3s ease;
}
#home a.blue:hover{
  color:rgb(21,21,100);
  background: white; 
}
#home a.yellow{
  color: white;
  background:gold;
  transition:0.3s ease;
}
#home a.yellow:hover{
  color:rgb(21,21,100);
  background: white; 
}
/* Hero container ends */

/* Aweseome Feature starts */
#features{
  padding: 3vw 8vw 2vw 8vw;
  text-align: center;
}
#features .feat-box:hover{
  transform: scale(1.1);
  transition: all(0.5s ease);
}
#features .feat-box{
  background-color: #f9f9ff;
  text-align: center;
}
#features .feat-box i{
  margin-top: 30px;
  font-size: 2.3rem;
  color:rgb(44, 44, 80)
}
#features .feat-box h3{
  margin-top: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color:rgb(46, 46, 59);
  padding : 13px 0 7px 0;
}
#features .feat-box p{
  margin-top: 2cqmin;
  font-size: 1rem;
  font-weight: 400;
  color:rgb(70,70,87);
  
}
#features .feat-base{
  margin-top: 50px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  grid-gap:4rem;
}
/* Aweseome Feature ends */



/* Our Services starts */
#services{
  padding: 2vw 8vw 2vw 8vw;
  text-align: center;
}
#services .service-box{
  margin-top: 50px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  grid-gap:3rem;
}
#services .service:hover{
  transform: scale(1.1);
  transition: all(0.5s ease);
}
#services .service{
  text-align: start;
  background-color: #F9F9FF;
  height:100%;
}
#services .service img{
  width:100% ;
  height:60%;
  background-size: cover;
  background-position: center;
}
#services .service .details{
  padding: 15px 15px 0 15px;
  
}
#services .service .details i{
  color:#fdc93b;
  font-size: .9rem;
}
/* Our Services ends */


/* Experts profile starts */
#experts{
  padding: 2vw 8vw 2vw 8vw;
  text-align: center;
}
#experts .profile:hover{
  transform: scale(1.1);
  transition: all(0.5s ease);
}
#experts .expert-box{
  margin-top: 50px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  grid-gap:3rem;
}
#experts .expert-box .profile{
  background-color: #fafaf1;
  padding: 30px 10px;
  border-radius: 20px;
}

.profile img {
    width: 100%;
    height: auto;
    max-width: 150px; /* Adjust as needed */
    border-radius: 50%; /* Makes the image circular */
}

.prof-links{
  margin-top: 10px;
}
.prof-links i{
  padding:10px 13px;
  border:1px solid rgb(21, 21, 100);
  cursor:pointer;
  border-radius: 10px;
  transition:0.3s ease;
}
.prof-links i:hover{
  background:rgb(21, 21, 100);
  color:#fff;
  border:1px solid rgb(21, 21, 100);
  cursor:pointer;
}



/* Experts profile ends */

/* About us page starts */
#about-us{
  background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("Images/about1.jpg");
  width: 100%;
  height:70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content:center;
  text-align: center;
}
#about-us h2{
  color: white;
  font-size: 3rem;
  letter-spacing: 1px;
}
#about-us p{
  color: white;
  font-size: 1.5rem;
  line-height: 25px;
  margin-top: 10px;
}
#about-container{
  display: flex;
  align-items: center;
  padding : 8vw 8vw 2vw 8vw;
}
#about-container .about-img{
  width: 60%; 
  padding-right: 60px;
}
#about-container .about-img img{
  width: 100%;
}
#about-container .about-text{
  width: 40%;
}
#about-container .about-text h2{
  color: #293038;
  padding: 15px;
}

/* About us page ends */


/* Service page starts */
#service{
  background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("Images/service3.jpg");
  width: 100%;
  height:100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content:center;
  text-align: center;
}
/* hero heading h2 */
#service h2{
  color: white;
  font-size: 3.2rem;
  letter-spacing: 1px;
}
#service p{
  color: white;
  font-size: 1.5rem;
  line-height: 25px;
  margin-top: 10px;
}
/* Service page ends */


/* Blog page starts */
#blog-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vw;
}
#blog-container .blogs{ 
  width: 60%;
}
#blog-container .blogs img{
  width: 100%;
  border-radius: 15px;
} 
#blog-container .blogs .post{
  padding-bottom: 60px;
}
#blog-container .blogs .post h3{
  color: #29303b;
  padding: 15px 0 10px 0 ;
}
#blog-container .blogs .post p{
  color: #757373;
  padding-bottom: 10px;
}
#blog-container .blogs .post a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: rgb(21, 21, 100);
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}
#blog-container .cate{
  width: 30%;
} 
#blog-container .cate h2{
  padding-bottom: 7px;
}
#blog-container .cate a{
  text-decoration: none;
  color: #757373;
  font-weight: 500;
  line-height: 45px;
}

/* Blog page ends */


/* blog post pages starts */
#blog-container .blogpost{
  width: 60%;
  margin: 0 auto;
}
#blog-container .blogpost p{
  text-align: justify;
  padding-bottom: 10px !important;
}
/* blog post pages ends */


/* Contact page starts */
#contact{
  padding: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#contact .getin{
  width: 350px;
}
#contact .getin h2{
  color: #2c234d;
  font-size: 30px;
  font-weight: 800;
  line-height: .8;
  margin-bottom: 16px;
}
#contact .getin p{
  color: #686875;
  line-height: 24px;
  margin-bottom: 33px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e4ed;
}
#contact .getin h3{
  color: #2c234d;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 15px;
}
#contact .getin .getin-details div{
  display: flex;
}
#contact .getin .getin-details div i{
  font-size: 16px;
  line-height: 22px;
  color: #5838fc;
  margin-right: 20px;
}
#contact .getin .getin-details div p{
  font-size: 14px;
  border-bottom: none;
  line-height: 22px;
  margin-bottom: 15px;
}
#contact .getin .getin-details .prof-links i{
  margin-right: 8px;
}
#contact .form{ 
  width: 60%;
  background: #f7f6fa;
  padding: 40px;
  border-radius: 10px;
}
#contact .form h4{
  font-size: 24px;
  color: #2c234d;
  line-height: 30px;
  margin-bottom: 8px;
}
#contact .form p{
  color: #686875;
  line-height: 24px;
  padding-bottom: 25px;
}
#contact .form .form-row{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#contact .form .form-row input{
  width: 48%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #7e7c87;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}
#contact .form .form-col textarea,
#contact .form .form-col input{
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #7e7c87;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}
#contact .form button{
  font-size: .9rem;
  padding: 13px 25px;
  background: rgb(21, 21, 100);
  border-radius: 5px;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}
#map{
  width: 100%;
  height: 70vh;
  margin-bottom: 2vw;
}
#map iframe{
  width: 100%;
  height: 100%;
  
}

/* Contact page ends */


/* Footer starts */
footer{
  padding: 2vw 8vw 0 8vw;
  background-color: #101c32;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .footer-col{
  padding-bottom:20px;
}
footer h3{
  color: rgb(241, 240, 245);
  font-weight: 600;
  padding-bottom: 15px;
}
footer li{
  list-style: none;
  color:#7b838a;
  padding: 10px 0;
  font-size: 15px;
  cursor:pointer;
  transition:0.3s ease;
}
footer a:hover{
  color:rgb(241, 240, 245);
}
footer a{
  text-decoration: none;
  color:#7b838a;
}
footer li:hover{
  color:rgb(241, 240, 245);
}
footer p{
  color:#7b838a;
}
footer .copyright{
  margin-top: 5px;
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer .copyright p{
  color: white;
}
footer .copyright .prof-links{
  margin-top: 0px;
}
 
footer .copyright .prof-links i{
  background-color: #5f7185;
  color:#fff;
  padding:10px 13px;
  border:1px solid rgb(21, 21, 100);
  cursor:pointer;
  border-radius: 10px;
  transition:0.3s ease;
}
footer .copyright .prof-links i:hover{
  background:#fdc93b;
  color:#2c2c2c;
  border:1px solid rgb(21, 21, 100);
  cursor:pointer;
}
/* Footer ends */


/* Making Responsive mode */
 @media (max-width: 769px){

  /* home page responsive for tablet */
  nav {
    padding: 15px 20px;
  }
  nav img {
    width: 60px;
  }
  #menu-btn{
    display:initial;
  }
  #menu-close{
    display:initial;
    font-size: 1.6rem;
    color: white;
    padding: 30px 0 20px 20px;
    cursor: pointer;

  } 
  nav .navigation ul {
    position: absolute;
    top: 0;
    right: -220px;
    width: 220px;
    height:  100vh ;
    background: rgba(20,17,104,0.45);
    backdrop-filter: blur(4.5px);
    border: 1ps solid rgba(255,255,255,0.18);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition:0.3s ease;
  }
  nav .navigation ul.active{
    right: 0;
  }
  nav .navigation ul li{
    padding: 20px 0 20px 40px;
    margin-left: 0;
  }
  nav .navigation ul li a{
    color: white;
  }
  #features{
    padding: 8vw 4vw 0 4vw;
  }
  #services{
    padding: 8vw 4vw 0 4vw;
  }
  #experts{
    padding: 8vw 8vw 4vw 8vw;
  }
  footer .copyright .prof-links{
    margin-top: 10px;
  }
  

  /* About us page for tablet responsive*/
  #about-container{
    padding : 8vw 4vw 2vw 4vw;
  }
  #about-container .about-img {
    
    padding-right: 30px;
  }

  /* Blog page responsive for tablet */
  #blog-container{
    padding: 8vw 4vw;
  }
  
  /* blogpost page */
  #blog-container .blogpost{
    width: 100%;
    margin-top: 30px;
    
  }
  #blog-container .blogpost img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  /* contact page */
  #contact{
    padding: 8vw 4vw;
  }
  #contact .getin{
    width: 250px;
  }


}
@media (max-width: 475px){
  /* About us page */
  #about-container {
    flex-direction: column-reverse;
  }
  #about-container .about-img{
    width: 100%;
  }
  #about-container .about-text {
    width: 100%;
    padding: 20px;
  }
  /* Blog page container */
  #blog-container{
    flex-direction: column;
  }
  #blog-container .blogs{
    width: 100%;
  }
  #blog-container .cate{
    width: 100%;
  }
  /* blogpost page container */
  #blog-container .blogpost{
    width: 100%;
    margin-top: 70px;
    
  }
  #blog-container .blogpost img{
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  /* contact page */
  #contact{
    padding: 8vw 4vw;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
  }
  #contact .getin{
    width: 100%;
    margin-bottom: 30px;
  }
  #contact .form{
    width: 100%; 
    padding: 40px 30px;
  }
  #contact .form .form-row{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
  #contact .form .form-row input{
    width: 100%;
  }

}



