*{
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
  font-family: 'Lora', serif;

  
}
p, span, a , i, input , textarea {
  font-family: 'Roboto', sans-serif;
  
}
/* header section */
header{
    background: linear-gradient(to right, rgba(3, 112, 203, 0.9), rgba(3, 112, 203, 0)), 
  url("assete/slide2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 1s ease-in-out;
    height: 100vh;
}
.stickyHeader {
  position: fixed; 
  width: 100%;
  background: transparent; /* Start me transparent */
  transition: background 0.3s ease;
  z-index: 999; /* Upar rakhega */
}

.stickyHeader.scrolled {
  background:#0d031b; /* Scroll hone par color change */
}
.logoHover{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    

}

nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}
nav img{
    width: 50px;
    border-radius: 50%;
}
.hamburger{
    display: none;
}
.navItems{
    display: flex;
    gap: 25px;
}
nav a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    position: relative;
}
nav a::after , .foot1 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #0370CB;
    transform: translateY(5px);
    opacity: 0;
    transition: all 0.3s ease;
}

nav a:hover::after , .foot1 a:hover::after {
    transform: translateY(8px); 
    opacity: 1;
}
nav button , .hero button , .callUs .callUsContent button{
    background: linear-gradient(135deg, #079643, #0cb76c);
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

nav button:hover , 
.hero button:hover ,
.aboutContent button:hover, 
.contactContent button:hover ,
.callUs .callUsContent button:hover{
    background: linear-gradient(135deg, #0cb76c , #079643);
    
}
/* hero section */
.hero{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 100px;
    color: white;
    gap: 15px;

}
.hero h1 , .callUs .callUsContent h1{
    font-size: 50px;
    font-weight: 700;
}
.hero button{
    width: 30%;
    padding: 20px 25px;
    border-radius: 50px;
}
/* services section */
.services{
    margin-top: 80px;
    padding: 0 70px;
}
.services h1{
    text-align: center;
    font-size: 40px;
    font-weight: 300;
}
.serviceBox{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.serviceCard{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 400px;
    gap: 40px;
    border: 1px solid #E8E8E8;
    padding: 10px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.serviceCard:hover{
    border: none;
}
.serviceCard .iconCircle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #0370CB, #5aa9f4);
}
.serviceCard .iconCircle:hover{
    background: linear-gradient(135deg, #5aa9f4, #0370CB);
}
.serviceCard h3{
    font-weight: 300;
    font-size: 25px;
}
.serviceCard p{
    color: grey;
    line-height: 1.5;
}
.serviceCard a{
    text-decoration: none;
    color: #0370CB;
}
/* about section */
.about , .contact{
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding:0 70px ;
}
.about .aboutContent{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.aboutContent h1 , .faQsContent h1 , .contactContent h1{
    font-size: 40px;
    font-weight: 300;
}
.aboutContent p{
    color:gray;
    line-height: 1.7;
}
.aboutContent button{
    background: linear-gradient(135deg, #079643, #0cb76c);
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    width: 150px;
    cursor: pointer;
    transition: 0.3s;
}
.aboutImage img , .contactImage img{
    border-radius: 20px;
    
}
.faQsImage img{
    width: 500px;
    height: 550px;
    border-radius:20px ;
}
/* counter section */
.counter{
    margin-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.95),rgba(3, 112, 203, 0.85)),url('assete/slide2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 80px 40px;
}
.counter .counterContent{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.counterContent h1{
    font-size: 40px;
    font-weight: 700;
    color: white;
}
.counterContent i{
    font-size: 50px;
    color: #0370CB;
}
.counterContent p{
    color: white;
}
/* faqs section */
.faQs{
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding:0 50px ;
}
.faqsBox{
    margin-top: 40px;
    padding-bottom: 30px;
    color: gray;
    border-bottom: 1px solid #E0E0E0;

}
.faqsBox .question{
    display: flex;
    gap: 30px;

}
.faqsBox .answer1 , .faqsBox .answer2 , .faqsBox .answer3{
    margin: 10px 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease , opacity 0.3s ease;
    padding: 0 15px;
    opacity: 0;
}
.faqsBox .answer1.active , .faqsBox .answer2.active , .faqsBox .answer3.active{
    max-height: 200px;
    opacity: 1;
}
.faqsBox .fa-solid {
    cursor: pointer;
}
.faqsBox .aerrow1.rotate , .faqsBox .aerrow2.rotate , .faqsBox .aerrow3.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
/* testimonal section */
.testimonal , .callUs{
  margin-top: 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.95),rgba(3, 112, 203, 0.85)),url('assete/slide2.jpg');
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 80px;
  color: white;

}
.callUs .callUsContent{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

}
.testimonalContent i{
    font-size: 80px;

}
.testimonalContent p , .callUs .callUsContent p{
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.5px;
    word-spacing: 3px;

}
.testimonalContent img{
    width: 60px;
    height: 60px;
    border-radius: 50%;

}
.testimonalContent h5{
    margin-top: -15px;

}
/* contact section */
.contactContent{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: start;
}
.contactContent form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height:280px;
}
.contactContent form input{
    width: 450px;
    padding: 15px 0px;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    color: gray;
    outline: none;
}
.contactContent form textarea{
    width: 450px;
    padding: 40px 0 0 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    color: gray;
    outline: none;
}
.contactContent button{
    background: linear-gradient(135deg, #079643, #0cb76c);
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    width: 90%;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.footer{
    margin-top: 80px;
}
.footer .foot1{
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 80px 40px;
}

.foot1 .footMid , .foot1 .footMid1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

}
.foot1 a{
    text-decoration: none;
    color: gray;
    position: relative;
}
.foot1 h3{
    font-size: 23px;
    font-weight: 300;
}
.footRight{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footRight img{
    width: 80px;
    border-radius: 50%;
}
.footRight p{
    color: gray;
    text-align: center;
}
.footLeft{
    height: 180px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.footLeft .footIcons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: gray;
    font-size: 20px;
    padding-top: 20px;
    cursor: pointer;
}
.footLeft .footIcons .iconCircle:hover{
    color: #0370CB;
    border-color: #0370CB;
}
.footLeft .footIcons .iconCircle{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0E0E0;
    width: 35px;
    height: 35px;
    border-radius: 50%;

}
.footer2 {
  background-color: #f2f2f2;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.footer2 a {
  color: #0370CB;
  text-decoration: none;
}
/* form when click */
.popUp{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 1000;
}
.popUpForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 90%;
    max-width: 500px;
    background-color:white;
    padding: 50px 20px;
    border-radius: 20px;
    position: fixed;
    box-sizing: border-box;
}
.popUpForm span{
    position: absolute;
    bottom: 15px;
    right: 30px;
    cursor: pointer;
    font-size: 12px;
    color: gray;
}
.popUpForm h1{
    font-weight: 300;
}
.popUpForm form{
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:250px;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}
.popUpForm form input{
    width: 100%;
    max-width: 450px;
    padding: 15px 0px;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    color:gray;
    outline: none;
    background-color: transparent;
}
.popUpForm form textarea{
    width: 100%;
    max-width: 450px;
    padding: 20px 0 0 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    color:gray;
    outline: none;
    background-color: transparent;
}
.popUpForm button{
    background: linear-gradient(135deg, #079643, #0cb76c);
    color: white;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 20px;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
}
.show{
    opacity: 1;
    visibility: visible;
}
/* testimonal slide */
.testimonal .testimonalContent{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.testimonalContent.active {
  display: flex;
}

/* dark mode */
body.darkMode {
  background-color: #0D0D0D;
  color: #E5E5E5;
}
body.darkMode h1,
body.darkMode h2,
body.darkMode h3 {
  color: #FFFFFF;
}

body.darkMode a {
  color: #5aa9f4;
}
body.darkMode .popUpForm{
    background-color: #0D0D0D;
}

body.darkMode button {
  background: linear-gradient(135deg, #0cb76c , black);
  color: #fff;
}
.darkbtn{
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  border: none;
  cursor: pointer;
}
.darkbtn:hover{
  background: #0056b3;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.back-to-top:hover {
  background: #0056b3;
}
html {
  scroll-behavior: smooth;
}









@media all and (max-width:500px){
nav{
    justify-content: space-between;
    padding: 10px 20px;
} 
.navItems{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 25px;
    position: fixed;
    top: 0;
    right: -110%;
    width: 90%;
    background-color: #0370CB;
    padding: 30px 20px;
    box-shadow: 2px 4px 11px -4px rgba(0,0,0,0.75);
    transition: right 0.4s ease-in-out; /* smooth slide */
    z-index: 999;
}
.navItems.active{
    display: flex;
    right: 0;
}
.hamburger{
    display: block;
    cursor: pointer;
    color: white;
    margin-right: 35px;
    z-index: 1001;
}  
nav button{
    display: none;
} 
.hero{
    width: 90%;
    padding: 50px 15px;
}
.hero h1{
    margin-top: 70px;
    font-size: 28px;
}
.hero button{
    width: 60%;
    padding: 15px 20px;
    border-radius: 50px;
}
.services{
    padding: 0;
}
.services h1 , .aboutContent h1 , .contact .contactContent h1{
    font-size: 28px;
}
.serviceBox{
    flex-direction: column;
}
.serviceCard{
    width: 200px;
    padding: 10px 30px;
}
.serviceCard .iconCircle {
  width: 70px;
  height: 70px;
  font-size: 30px;
}
.serviceCard h3{
    font-size: 20px;
}
.about{
    flex-direction: column;
    padding: 0 35px;
    gap: 50px;
}
.about .aboutImage img , .contact .contactImage img{
    width: 300px;
}
.counter{
    flex-direction: column;
    padding: 80px 10px;
}
.faQs{
    flex-direction: column;
    padding:0 30px ;
}
.faQs .faQsImage img{
    width: 300px;
    height:350px;
}
.testimonal , .callUs{
    padding: 80px 30px;
}
.contact{
    flex-direction: column;
}
.contactContent form input , .contactContent form textarea{
    width: 250px;
}
.callUs .callUsContent h1{
    font-size: 30px;
}
.callUs .callUsContent p{
    text-align: start;
    line-height:1.5;
    letter-spacing: 0.5px;
    word-spacing: 1px;
}
.footer .foot1{
   flex-direction: column;
   align-items: center;
   justify-content: space-between;
   gap: 40px;
   padding: 50px 20px;

}

.popUpForm {
   padding: 20px 10px;
   gap: 15px;
}
.popUpForm form input,
.popUpForm form textarea {
   font-size: 14px;
}
.popUpForm button {
   font-size: 14px;
   padding: 10px;
   width: 50%;
}
}