 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  
}

a{
  text-decoration: none;
  color: inherit;
}
/* img {
  width: 100%;
} */

p{
    color: #575757;
font-size: 1rem;
}
ul{
  text-decoration: none;
  list-style-type: none;

}
.container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}
/* General Styles */
header {
  background: rgba(28, 30, 83, 1);
}

.navbar {
  color: #fff;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: white;
}
.logo h1 span{
  font-size: 40px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #00bcd4;
}

.contact-us-btn {
  border: 1px solid white;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.7s;
}

.contact-us-btn:hover {
  background-color: #00bcd4;
  color: white;
}

.toggle-btn {
  display: none;
  cursor: pointer;
}

.toggle-btn i {
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.toggle-btn.rotate i {
  transform: rotate(90deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    width: 100%;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    padding-left: 0;
  }

  .nav-links li {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
  }

  .nav-links.show {
    max-height: 500px;
    transition: max-height 0.5s ease-in-out;
  }

  .toggle-btn {
    display: block;
  }
}




/* ===============================HERO Section================= */
.hero{
    background-color: rgba(28, 30, 83, 1);
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.hero-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    flex-wrap: wrap;
    
}

.hero-text{
    width: 45%;
    padding-right: 30px;
}
.hero-img
{
    width: 50%;
}
.hero-img img {
    width: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 1rem;
    color: rgb(160, 161, 161);
    padding-inline-end: 3rem;
}

.hero-text .contact-us-btn {
    text-decoration: none;
    color: black;
    background-color: rgb(236, 227, 90);
    padding: 15px 4rem;
    border-radius: 44px;
    transition: all 0.3s ease;
    margin: 20px 0;
}
.hero-text .contact-us-btn:hover {
    background-color: rgb(206, 197, 72);
}
.hero-text .pricing{
  margin-inline-start:2rem ;
    font-size: 1.2rem;


}


.hero-text .pricing i{
    margin-left: 1.5rem;

}

.hero-text .pricing:hover {
    color: #937de0;
}

.center-icon{
display: flex;
  justify-content: center;
  align-items: center;
}
.center-icons{
display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ======================section how to work========================= */

main{
  background-color: rgb(231, 229, 227);
  padding-bottom: 4rem;
}

.how-work{
  padding-top: 4rem;
    overflow: hidden;

}
.grid{
   display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid .inner{
    width: 30%;
    padding: 1rem;

}
.grid .sec-inner {
    width: 60%;
    /* padding: 1rem; */
    padding-inline-start: 1rem;

    
}


.sec-inner .grid .inner-sec2 {
    width: 50%;
    padding: 2rem;
    transition: all 0.7s;
}

.grid .inner .content-item h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.grid .inner .content-item p {
    margin-bottom: 1rem;
}
.get-touch {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #937de0;

  
}
.get-touch i{
  padding-inline-start: 10px;

}
.get-touch:hover{
  color: black;
}

.sec-inner .grid .inner-sec2 .item h2 {
  margin-block: 0.7rem;
}


.sec-inner .grid .inner-sec2:hover{
  transform: scale(1.1);
}


/* =======================section features================== */
.features{
  margin-block-start: 8rem;
}
.features .p-feature{
  text-align: center;
  color: black;
}
.features .head-feature{
  font-size: 3.5rem;
  text-align: center;
  width: 70%;
  margin: auto;
}

.features .cart-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    
}
.features .inner {
    width: 33.33%;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    ;
    overflow: hidden;
}
 .features .inner .item
{
    padding: 2rem;

    border-radius: 10px;
    background-color: #f7f5f5;
    transition: all 0.7s;

}
.features .inner .item:hover{
  transform: scale(1.1);
}
.features .inner .item .icon {
    font-size: 2rem;
    color: rgb(58, 64, 238);
    text-align: left;
}
.features .inner .item h2 {
    font-size: 1.5rem;
    margin-block: 1rem;

}  

/* ======================footer=================== */

footer{
  background-color: rgba(28, 30, 83, 1);
  padding-block: 3rem;
  color: white;

}
footer .logo-tag{
  font-size: 2.5rem;
}
footer .grid p
{
  color: white;

}
.grid{
  justify-content: space-between;
  
}
.footer-logo{
  width: 30%;
}
.footer-logo h2{
  margin-block: 1rem;
}
.footer-content
{
  width:45%;
  padding-right: 2rem;
}
.footer-content h4{
  font-size: 3.5rem;
}

.social-icon{
  margin-block: 15px;
}
.social-icon a{
  margin-left: 15px;
  font-size: 1.2rem;
  transition: all 0.7s;

  
}
.social-icon a:hover{
  color: rgb(58, 64, 238);
}





/* ========================media================== */
/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  html { font-size: 13px; }
  .hero-text,
  .hero-img,
  .grid .inner,
  .grid .sec-inner,
  .features .inner,
  .footer-logo,
  .footer-content,
  .sec-inner .grid .inner-sec2 {
    width: 100% !important;
  }
  .hero-content,
  .hero,
  .features .cart-content,
  .grid,
  .sec-inner .grid {
    flex-direction: column !important;
    align-items: center;
  }
  .hero-text h1 { font-size: 2.5rem; text-align: center; }
  .hero-text p { font-size: 1.1rem; padding-inline-end: 1rem; text-align: center; }
  .hero-text .contact-us-btn,
  .hero-text .pricing { display: block; width: 80%; margin: 1rem auto; text-align: center; }
  .features .head-feature,
  .footer-content h4 { font-size: 3rem; width: 100%; }
  .footer-logo p,
  .footer-content p { font-size: 1.1rem; }
  .footer-logo h1{font-size: 2.2rem;}
  .hero-text .contact-us-btn {padding: 13px;}
  .hero-text {
    padding: 0;
  }
.container{
  padding: 0px 5px;
}
.footer-content{
  margin-top: 2rem;
}
footer .logo-tag {
    font-size: 4.5rem;
}
}
/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html { font-size: 14px; }
  .hero-text,
  .hero-img,
  .grid .inner,
  .grid .sec-inner,
  .features .inner,
  .footer-logo,
  .footer-content {
    width: 100% !important;
  }

  .hero-content,
  .hero,
  .features .cart-content,
  .grid,
  .sec-inner .grid {
    flex-direction: column !important;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 0.9rem;
    padding-inline-end: 1rem;
    text-align: center;
  }

  .hero-text .contact-us-btn {
    padding: 12px 2rem;
  }

  .hero-text .pricing {
    font-size: 1rem;
    margin-inline-start: 0;
  }

  .center-icons {
    gap: 15px;
    justify-content: center;
  }

  .features .head-feature,
  .footer-content h4 {
    font-size: 2rem;
    width: 100%;
  }

  .social-icon a { font-size: 1rem; }

  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-img img {
    max-width: 100%;
    height: auto;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  html { font-size: 15px; }

  .hero,
  .hero-content {
    padding: 40px 20px;
    height: auto;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-text,
  .hero-img,
  .grid .inner,
  .grid .sec-inner,
  .footer-logo,
  .footer-content {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .hero-text .contact-us-btn {
    padding: 12px 3rem;
  }

  .hero-text .pricing {
    margin-inline-start: 0;
  }

  .center-icons {
    gap: 15px;
        justify-content: space-around;
        font-size: 1.5rem;
  }

  .features .inner {
    width: 50% !important;
  }

  .features .head-feature {
    width: 90%;
    font-size: 2.5rem;
  }

  .footer-content {
    padding-right: 0;
  }

  .hero-img img {
    max-width: 100%;
    height: auto;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  html { font-size: 16px; }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .features .head-feature,
  .footer-content h4 {
    font-size: 2.8rem;
  }

  .features .inner {
    width: 33.33% !important;
  }
}
