*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root{
    --primary-color: #FF8C00;
    --white-color: #fff;
    --light-gray-color: #ddd;
    --Orange-color: #0f2454;

}
/*========= utality classes start =========*/
.container{
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow: hidden;
}

img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a{
    text-decoration: none;
}

.heading-normal-txt{
    font-size: 1rem;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.headings{
    font-size: 3rem;
    font-family: "ubuntu";
    padding-bottom: 2rem;
    letter-spacing: 2px;
}

.headings span{
    color: var(--primary-color);
}

.secondary-headings{
    font-size: 2.5rem;
    font-family: "ubuntu";
    padding: 1rem 0;
}

.lead{
    font-size: 1.1rem;
    line-height: 2;
    text-align: justify;
}

.primary-btn{
    width: 50%;
    outline: none;
    background-color: var(--primary-color);
    border: none;
    padding: 0.7rem;
    font-size: 1rem;
    border-radius: 4px;
    color: var(--white-color);
    cursor: pointer;
}
/*======= utality classes end =========*/

body{
    background-color: var(--primary-color);
}
.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading h1{
    font-size: 50px;
    color: var(--Orange-color);
    margin-bottom: 25px;
    position: relative;

}
.heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: var(--Orange-color);

}
.heading p{
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 35px;
}
.container{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}
.About{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.About-img{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}
.About-img img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}
.About-img:hover img{
    transform: scale(1.2);
}
.about-content{
    flex: 1;
}
.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: var(--Orange-color);
}
.about-content p{
    font-size: 18px;
   line-height: 1.5;
    color: var(--white-color);
}
.about-content .read-more{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--white-color);
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}
.about-content .read-more:hover{
    background-color:  var(--Orange-color);
}
@media screen and (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .About {
        flex-direction: column;
    }

    .About-img {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-content,
    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For larger mobile devices */
@media screen and (max-width: 768px) {
    .heading h1 {
        font-size: 40px;
    }

    .heading p {
        font-size: 16px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-content .read-more {
        font-size: 16px;
    }

    .footer-content,
    .footer-wrapper {
        grid-template-columns: 1fr;
    }

    .social {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
}

/* For smaller mobile devices */
@media screen and (max-width: 480px) {
    .heading h1 {
        font-size: 30px;
    }

    .heading p {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 18px;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-content .read-more {
        font-size: 14px;
        padding: 8px 16px;
    }

    .footer-content {
        padding: 1rem;
    }

    .icon {
        font-size: 2rem;
    }

    .subscribe button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}
/*======= footer start ========*/
#footer{
    padding: 3rem 0;
    background: var(--Orange-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--Orange-color);
    
}

.ft-content {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    color: var(--white-color);
}

.icon {
    padding: 1rem;
    font-size: 2.5rem;
    background: var(--primary-color);
}

.content{
    padding: 1rem;
    font-size: 13px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
    grid-gap: 2rem;
    color: var(--white-color);
    margin: 4rem 0;
}

.about img{
    width: 50%;
    object-fit: cover;
    border-radius: 50%;
}

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

.social-icons i {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem;
    font-size: 1.3rem;
    margin: 1rem 0;
    border-radius: 50%;
    cursor: pointer;
}

.about .lead{
    font-size: 0.95rem;
    margin-top: 1rem;
}

.Links ul{
    list-style-type: none;
}

.Links ul li{
    margin: 1rem;
    font-size: 1rem;
}

.Links ul li a{
    color: var(--white-color);
}

.subscribe .lead{
    font-size: 1.1rem;
    letter-spacing: 1;
}

form{
    position: relative;
}

.subscribe input{
    width: 100%;
    outline: none;
    border: 1px solid var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.footer .heading-normal-txt{
    color: var(--white-color);
}




.subscribe button{
    display: block;
    position: absolute;
    top: 32%;
    right: 0%;
    background: var(--primary-color);
    color: var(--white-color);
    outline: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.footer{
    border-top: 1px solid var(--Orange-color );  
}

.footer p{
    text-align: center;
    padding: 1rem 0;
    color: var(--Orange-color);
}
/*======= footer end ========*/
@media (max-width: 1200px) {
    .footer-content,
    .footer-wrapper {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .footer-content,
    .footer-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .subscribe button {
      top: 33%;
      right: 3%;
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 15px;
    }
  
    .social {
      bottom: 10px;
    }
  
    .social li a {
      transform: scale(0.4);
    }
  
    .social li a:hover {
      transform: scale(0.45) translateY(-10px);
    }
  }
  
  @media (max-width: 645px) {
    html {
      font-size: 14px;
    }
  
    .footer-content,
    .footer-wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .subscribe button {
      top: 65%;
      right: 5%;
      transform: translateY(-50%);
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  
    .about-content .read-more {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
  }
  
  /* Existing styles for social, animations, and other elements remain unchanged */
  
  .social {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .social li {
    list-style: none;
  }
  
  .social li a {
    display: inline-block;
    margin-right: 20px;
    filter: invert(1);
    transform: scale(0.5);
    transition: 0.5s;
  }
  
  .social li a:hover {
    transform: scale(0.5) translateY(-15px);
  }
  
  @media (max-width: 700px) {
    footer {
      bottom: unset;
    }
    .col:nth-child(2), .col:nth-child(3) {
      flex-basis: 15%;
    }
    .col {
      flex-basis: 100%;
    }
  }
  
  .about-content .read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--Orange-color);
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 15px;
    transition: 0.3s ease;
  }
  
  .about-content .read-more:hover {
    background-color: var(--Orange-color);
  }
  
  @keyframes moving {
    0% {
      left: -20px;
    }
    100% {
      left: 100%;
    }
  }