  :root{
 --primary-color: #E95835;
 --footer-color: #212121;
 --font-color: #262626;
 --header-font-color: #151515;
 --black-background: #333333;
 --white-font: #ffffff;
 --grey-color: #494949;
  }
  html{
    scroll-behavior: smooth;
  }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Poppins, Tahoma, Geneva, Verdana, sans-serif;
        border: none;
      }

      body {
        padding-top: 80px; /* Account for fixed header */
        background-color: #f8f9fa;
      }

.container{
--max-width: 1200px;
  --padding: 1rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2      )   );
margin-inline: auto;

}
p, h4, h5{
  padding-bottom: 10px;
}
.btn{
padding: 13px 30px;
background-color: var(--primary-color);
border-radius: 6px;
color: var(--white-font);
font-weight: 500;;
font-size: 14px;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;

}
.btn span{
font-weight: 400;
}
.btn:hover{
background-color: #151515;

 }


.btn-header{
margin-left: 30px;
padding: 13px 30px;
border-radius: 12px;

}

.btn-header span{
font-weight: 500;

}
.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}


      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
       height: 60px;

      }



      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
                        height: 100%;

      }

      .logo img {
       width: 40px;
       height: 40px;
      }

      

      .nav-menu {
        display: flex;
        list-style: none;
      }

      .nav-item {
        margin-left: 30px;
      }

      .nav-link {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 600;
        font-size: 17px;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-link:hover {
        color: var(--primary-color);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .hamburger {
        display: none;
        cursor: pointer;
        background: none;
        border: none;
        width: 30px;
        height: 30px;
        position: relative;
      }

      .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 70%;
        background: #2c3e50;
        border-radius: 3px;
        left: 0;
        transition: 0.3s ease-in-out;
      }

      .hamburger span:nth-child(1) {
        top: 5px;
      }

      .hamburger span:nth-child(2) {
        top: 13px;
      }

      .hamburger span:nth-child(3) {
        top: 21px;
      }

      /* Mobile Styles */
      @media (max-width: 768px) {
.logo img {
       padding-top: 5px;
      }

  .btn{ 
padding: 6px 18px;
font-size: 14px;
font-weight: 300;

   }     
.header-container { 
 padding: 10px;
}

        .hamburger {
          display: block;
        }

        .nav-menu {
          position: absolute;
          top: 62px;
          left: 0;
          width: 100%;
          background-color: #ffffff;
          flex-direction: column;
          align-items: start;
          padding: 20px 0;
          padding-left: 15px;
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          transform: translateY(-100%);
          opacity: 0;
          visibility: hidden;
          transition: all 0.4s ease;
        }

        .nav-menu.active {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }

        .nav-item {
          margin: 15px 0;
        }

        .hamburger.active span:nth-child(1) {
          top: 13px;
          transform: rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
          opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
          top: 13px;
          transform: rotate(-45deg);
        }
      }

      /* Home Wallpaper */
       .hero-section {
        position: relative;
        height: 80vh;
        width: 100%;
        overflow: hidden;
        margin-top: -20px;
      }

      .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1);
      transition: opacity 2s ease-in-out;
               animation: zoomIn 15s linear infinite;
      }

      @keyframes zoomIn {
        0% {
          transform: scale(1);
        }
        100% {
          transform: scale(1.1);
        }
      }

      .hero-background.active {
        opacity: 1;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        text-align: center;
        padding: 0 20px;
        background-color: rgba(0, 0, 0, 0.3);
      }

      .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--white-font);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      }

      .hero-content p {
        font-size: 1.5rem;
        max-width: 700px;
        margin-bottom: 2rem;
                color: var(--white-font);

        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      }

      .cta-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #e74c3c;
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        border-radius: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      .cta-button:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      }

      /* Placeholder backgrounds */
      .bg-1 {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)
          ),
          url("/img/wallpaper3.jpg") ;
      }

      .bg-2 {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)
          ),
          url("/img/wallpaper2.jpg") ;
      }

      .bg-3 {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)
          ),
          url("/img/wallpaper1.jpg") ;
}

      /*.btn-body{
padding: 15px 30px;


      }

*/
.btn-learn{
  border: 1px white solid;
  background: none;
 font-weight: 300;
}



      /* Responsive adjustments */
      @media (max-width: 768px) {
.hero-section {
height: 58vh;
}

        .hero-content h1 {
          font-size: 1.5rem;
        }

        .hero-content p {
          font-size: 0.9rem;
          font-weight: 300;
        }
      }

      /*About Us*/
.about-section{
  padding-top: 40px;
    padding-bottom: 40px;

}
  .abt-header{
 color: var(--grey-color);
 font-size: 20px;
 padding: 8px 8px;
 background-color: #B3B3B324;
 font-family: Poppins, Arial, Helvetica, sans-serif;
         box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
         border-radius: 5px;
display: inline-flex;
align-items: center;
gap: 7px;
  }   
.content-grid{
  display: grid;
grid-template-columns: 1fr 1fr; 
 align-items: center;
  gap: 10px;
  margin-top: 30px;
}

  .button-icon{
    width: 16px;
    height: 14px;
  }
.content-header{
color: var(--header-font-color);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
padding-bottom: 10px;
}
.content-texts{
color: var(--font-color);
font-weight: 400;
padding-bottom: 10px;

}
 .commitment-box{
 background-color: #EFFFC3;
 height: 340px;
 display: grid;
 grid-template-columns: 1fr 1fr;
 border-radius: 13px;
 }
 




.left-box{
  background-color: #333333;
  margin: 20px;
  padding: 10px;
  text-align: start;
  align-items: start;
   border-radius: 13px;

}
.bulb-image{
  padding-top: 10px;
  width: 60px;
}
.left-box > figure{
 font-size: 27px;
 font-weight: 500;
 color: #ffffff;
}
.left-box > p{
 font-size: 13px;
 font-weight: 400;
 color: #ffffff;
 line-height: 1.6;
 padding-top: 10px;
}
.right-box{
display: grid;
grid-template-columns: 1fr;
margin: 20px;
gap: 20px;
}
.mstats{
background-color: #ffffff;
text-align: center;
align-content: center;
justify-items: center;
 border-radius: 13px;

}
.mstats > figure{
font-size: 38px;
font-weight: 700;
}
.mstats > p{
font-size: 16px;
font-weight: 300;

 }

@media (max-width: 950px) {
 .abt-header{font-size: 14px;
 padding: 6px 11px;
 }
.content-texts{
font-size: 14px;
}
.content-grid{
grid-template-columns: 1fr; 
}
.commitment-box{
  height: 420px;
padding-top: 10px;
padding-bottom: 10px;
align-items: center;
 grid-template-columns: 1fr;
 }
.bulb-image{
  padding-top: 0;
  width: 40px;
}
.left-box{
margin: 5px 15px;
}
.left-box > figure{
 font-size: 20px;
padding-top: 6px;
}
.left-box > p{
 font-size: 13px;
 font-weight: 300;
 color: #ffffff;
 line-height: 1.5;
 padding-top: 10px;

}

.right-box{
display: grid;
grid-template-columns: 1fr 1fr;
margin: 15px 15px;
gap: 5px;
}
.mstats{
padding: 20px;

}

.mstats > figure{
font-size: 35px;
font-weight: 600;
}
.mstats > p{
font-size: 12px;
}
   }

   /*Why Choose Us*/

   .section-cont{
    display: grid;
    justify-items: center;

   }
   .sec-header{
 font-size: 15px;
 font-weight: 400;
 padding: 6px 12px;
 margin-bottom: 15px;
         border-radius: 12px;
display: inline-flex;
gap: 4px;
  }   
.why-us-grid{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;

}
 .why-us-box{
  border: 0.8px solid #333333;
  border-radius: 10px;
  display: grid;
  gap: 18px;
  padding: 20px;
  color: var(--font-color);
  margin-top: 20px;
  transition: transform 0.4s ease;
 }
/*
.why-us-box:hover{
 transform: translateY(-10px);
background-color: var(--footer-color);
color: #ffffff;
 }
*/
 .why-us-box h3{
  font-weight: 600;

 }
 .why-us-box h5{
  font-weight: 300;
 }


  @media (max-width: 1020px) {

.why-us-grid{
grid-template-columns: repeat(2, 1fr);
}


  }
 @media (max-width: 768px) {
.why-us-grid{
grid-template-columns: repeat(2, 1fr);
}
.why-us-box{
 
  padding: 8px;
   gap: 10px;

 }

.why-us-box h3{
font-size: 14px;  
 }

.why-us-box h5{
font-size: 12px;

 }
}

/*service-section*/
.service-section{
margin-top: 50px;
margin-bottom: 50px;
}
.service-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 30px;
  column-gap: 40px;
  align-items: center;
margin-top: 20px;
}

.service-box{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;

 background: 
          url("/img/farzad-p-xSl33Wxyc-unsplash.jpg") center/cover no-repeat;
          overflow: hidden;
padding: 130px 10px 10px;
position: relative;
border-radius: 10px;
min-height: 300px;
}
.box-2{

 background: 
          url("/img/application.jpg") center/cover no-repeat;
          overflow: hidden;

}
.box-3{

 background: 
          url("/img/digital-business.jpg") center/cover no-repeat;
          overflow: hidden;

}

.box-4{

 background: 
          url("/img/ecommerce.jpg") center/cover no-repeat;
          overflow: hidden;

}

.box-5{

 background: 
          url("/img/branding.jpg") center/cover no-repeat;
          overflow: hidden;

}


.service-box h3, .service-box p{
color: white;
position: relative;
z-index: 1;
}

.service-box p{
font-size: 14px;
padding-top: 20px;
font-weight: 400;
}

.service-box::before{
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.7);

}







 @media (max-width: 50rem) {
.service-grid{
  grid-template-columns: 1fr;
}


 }

/*TESTIMONY*/

      
      

      .testimonial-section {
      margin-top: 20px;  
--max-width: 1200px;
  --padding: 1rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2      )   );
margin-inline: auto;


        text-align: center;
      }

      .section-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
      }

      .section-subtitle {
        font-size: 1.1rem;
        color: #7f8c8d;
        margin-bottom: 50px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }

      .slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }

      .slide {
        min-width: 100%;
        padding: 50px 40px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .client-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #e8f4fc;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .client-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 10px;
      }

      .client-role {
        font-size: 1rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 500;
      }

      .stars {
        margin-bottom: 25px;
        color: #f1c40f;
        font-size: 1.2rem;
      }

      .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #5a6c7d;
        max-width: 800px;
        margin: 0 auto 30px;
        font-style: italic;
        position: relative;
      }

      .testimonial-text::before,
      .testimonial-text::after {
        content: '"';
        font-size: 3rem;
        color: #e8f4fc;
        position: absolute;
        line-height: 1;
      }

      .testimonial-text::before {
        top: -15px;
        left: -25px;
      }

      .testimonial-text::after {
        bottom: -40px;
        right: -25px;
      }

      .slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 30px;
      }

      .nav-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
      }

      .nav-btn:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
      }

      .dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
      }

      .dot {
        width: 12px;
        height: 12px;
        background: #bdc3c7;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
      }

      @media (max-width: 768px) {
        .slide {
          padding: 40px 20px;
        }

        .client-image {
          width: 100px;
          height: 100px;
        }

        .testimonial-text {
          font-size: 1rem;
        }

        .section-title {
          font-size: 2rem;
        }
      }


/*CTA*/

.CTA{
  margin-top: 30px;
 background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.7)
          ),
          url("/img/wallpaper2.jpg") center/cover no-repeat;

}

.cta-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 30px; 
  color: white;
}

.CTA h3{
text-align: center;
}

/*CONTACT*/










/*FOOTER*/

footer{
  background-color: var(--footer-color);
  color: white;
  margin-top: 0;
}
.footer-grid{
  padding: 40px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}
.footer-logo{
  font-size: 17px;
  text-decoration: none;
color: #EFFFC3;}
footer h3{
padding-bottom: 10px;
}
.footer-text{
  font-size: 14px;
}
footer p{
line-height: 1.6;
padding-top: 10px;
font-size: 0.85rem;
}
.footer-nav-list{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-list li a{
text-decoration: none;
color: white;
font-size: 0.85rem;
}
.footer-cont-container{
display: flex;
gap: 9px;
padding-bottom: 10px;
}
.icons{
width: 40px;

}
.footer-office{
  padding-bottom: 1px;
}
.footer-address{
  padding: 0;
  font-weight: 300;
}
.divider{
  height: 0.3px;
  width: 100%;
  background-color: #ffffff;
  margin: 15px;
  margin: 0 auto;
}
.terms-grid{
  display: flex;
  justify-content: space-between;

}

 @media (max-width: 50rem) {
.footer-grid{
  gap: 30px;
  grid-template-columns: 1fr;
  justify-items: start;
}
.terms-grid{
flex-direction: column-reverse;
  align-items: center;

}
.copyright-text{
font-size: 10px;
text-align: center;
}


 }

/*Animations*/

/* Smooth Scroll Base Styles */

/* Fallback for browsers that don't support smooth scroll */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
.smooth-scroll::-webkit-scrollbar {
  width: 8px;
}

.smooth-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.smooth-scroll::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.smooth-scroll::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Smooth scroll container */
.smooth-container {
  overflow: hidden;
}

/* Fade-in animation for scrolled elements */
.smooth-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.smooth-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Progress indicator */
/*.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
  z-index: 9999;
  transition: width 0.1s ease;
}
  */

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}