
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #f49e09;
  --secondary-color: #111111;
  --secondary-color-light: #232220;
  --text-light: #a3a3a3;
  --white: #ffffff;
  --black: #000000;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
}

.section__subheader {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  padding-left: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.section__subheader::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  aspect-ratio: 1;
  background-color: var(--primary-color);
  z-index: -1;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
}

.btn__secondary {
  background-color: transparent;
  border: 1px solid var(--white);
}

.btn__primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn span {
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn:hover span {
  transform: translateX(5px);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
}

main {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url("matrix-7484076_1280.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 6rem;
}



.header__container {
  padding-block: 5rem 12rem;
}

.header__container h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

.header__container .btn {
  margin: auto;
}

.about {
  background-color: var(--secondary-color);
}

.about__container {
  padding-block: 0;
  
}

.about__grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--secondary-color-light);
  transform: translateY(-5rem);
  border-radius: 10px;
}

.about__content .section__header {
  margin-bottom: 1rem;
}

.about__content .para {
  color: var(--text-light);
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about__item span {
  padding: 13px 20px;
  font-size: 1.75rem;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
}

.about__item h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.stats {
  background-color: var(--black);
}

.stats__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stats__content .section__header {
  margin-bottom: 1rem;
}

.stats__content .para {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stats__card span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.stats__card h4 {
  font-size: 2rem;
  font-weight: 700;
}

.stats__card p {
  font-weight: 500;
}

.stats__image {
  display: grid;
  gap: 2rem;
}

.stats__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.banner {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("webappdev.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner2 {
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
      ),
      url("digital-marketing-8630397_1280.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

.banner__content {
  max-width: 800px;
}

.banner__content .section__header {
  margin-bottom: 1rem;
}

.banner__content .para {
  max-width: 600px;
  margin-bottom: 2rem;
}

.banner__btns {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.blog {
  background-color: var(--secondary-color);
}

.blog__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog__card img {
  margin-bottom: 1rem;
  border-radius: 5px;
}

.blog__card > div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog__card div span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog__card div span i {
  margin-right: 5px;
  font-size: 1rem;
  color: var(--primary-color);
}

.blog__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.blog__card p {
  color: var(--text-light);
}

.subscribe {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("assets/subscribe.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe__container {
  max-width: 700px;
  text-align: center;
}

.subscribe__container .section__subheader {
  max-width: fit-content;
  margin-inline: auto;
}

.subscribe__container form {
  margin-block: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.subscribe__container input {
  flex: 1;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  outline: none;
  border: 1px solid var(--white);
  border-radius: 5px;
}

.subscribe__container .btn {
  flex: 1;
  justify-content: center;
}

.subscribe__container .para a {
  color: var(--primary-color);
}

.customer {
  background-color: var(--secondary-color-light);
}

.customer__container .para {
  margin-block: 1rem 4rem;
  color: var(--text-light);
}

.swiper {
  width: 100%;
  padding-bottom: 4rem;
}

.customer__review .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.customer__review__card {
  position: relative;
  isolation: isolate;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.customer__review__card span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 6rem;
  line-height: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
}

.customer__review__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.customer__review__details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.customer__review__details img {
  max-width: 70px;
  border-radius: 100%;
}

.customer__review__details h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

.customer__review__details h5 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.footer {
  background-color: var(--black);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h5 a {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.footer__col p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  padding: 5px 10px;
  font-size: 1.25rem;
  color: var(--primary-color);
  background-color: var(--secondary-color-light);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer__links a {
  margin-bottom: 1rem;
  display: flex;
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-light);
}

@media (width < 900px) {
  

  .about__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .stats__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .stats__image {
    grid-area: 1/1/2/2;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .footer__container {
    grid-template-columns: 2fr 1fr;
  }
}

@media (width < 600px) {
 
  .header__container h1 {
    margin-top: 3rem;
    font-size: 3rem;
  }

  .stats__image {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .subscribe__container form {
    flex-direction: column;
  }

  .subscribe__container .btn {
    width: 100%;
  }
}
  
  .nav__logo h6 {
    display: inline;
    color: white;
    margin-left: 10px;
    font-size: medium;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Light shadow for contrast */
}
  .nav__logo img {
      width: 3rem;
      height: 3rem;
  }
  .nav__logo {
      display: inline-flex;
      align-items: center;
      column-gap: .25rem;
      
  }
  a {
      text-decoration: none;
  }
  li {
      list-style: none;
  } 
  
  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
       background-color : #0a0d14;
      z-index: 999;
      
      
      
  }
  
  nav{
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;  
      height: 6rem;
      padding: 0 1rem;
      margin: 0 auto;
      z-index: 999;
  }
  
  .toggle__menu,
  .close__menu {
      display: none;
  }

  .toggle__menu {
    color: #000;
  }
  
  /* .logo a{
      font-size: 1.75rem;
      font-weight: 700;
      color: #000;
  } */
  
  .nav__list {
      display: flex;
  }
  
  .nav__item {
      margin: 0 1.5rem;
      padding: 2.2rem 0;
  }
  
  
  
  .nav__link {
      font-weight: 700;
       color: white;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);  /* Light shadow for contrast */
  }
  
  .nav__link:hover {
      color: #2696E9;
  }
  
  .dropdown__link {
      display: flex;
      align-items: center;
  
  }
  
  .dropdown__icon {
      font-size: 1rem;
  }
  
   .megamenu {
      position: absolute;
      width: 100%;
       top: 6rem;
      left: 0;
      background-color:  #0a0d14;
      display: flex;
      justify-content: space-around;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 23px 23px -21px rgba(0,0,0,0.25);
      z-index: -99;
      visibility: hidden;
      opacity: 0;
  } 
  
  .content {
      display: flex;
      flex-direction: column;
      padding: 1rem 1rem;
  }
  
  .megamenu__item {
      display: flex;
      align-items: center;
      margin-bottom: 0.4rem;
      padding: 10px;
  } 
  
  .header__megamenu a{
      font-weight: 600;
      color: white;
      margin-bottom: 0.4rem;
      
  }
  
  
  .header__megamenu a:hover {
    font-weight: 600;
    color: #2696E9; 
    margin-bottom: 0.4rem;
    
  }
  
  .menu__icon {
      width:32px;
      height: 32px;
      
      text-align: center;
      
      margin-bottom: 0.5rem;
      margin-right: 0.2rem; 
  }
  .menu__icon i {
      line-height: 32px;
      font-size: 22px;
      color:  white;
      
      
  }
  
  .menu__icon i:hover {
    
    color:  #2696E9; 
    
    
  }
  
  
  .megamenu__link a {
      font-weight: 500;
      color: white;
  }
  
  .megamenu__link a:hover {
      font-weight: 500;
      color: #2696E9; 
  }
  

  .megamenu__link p {
      font-size: 0.6875rem;
      font-weight: 400;
      color: #a8a1b5;
  }
  
  .dropdown:hover .megamenu {
      color: #a92ec8;
      visibility: visible;
      transition: all 0.3s ease;
      opacity: 1;
  }
  
  .nav__item:hover  .dropdown__icon {
      transform: rotate(180deg);
      transition: all 0.3s ease;
  }
  


  footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #0d0d0d;
   
  
    
  }
  
  ul{
    list-style: none;
    padding-inline-start: 0;
  }
  
  .footer-col{
    width: 25%;
    padding: 50px 2.5%;
  }
  
  
  .icon i {
    margin-right: 10px; /* Adjust spacing as needed */
    vertical-align: middle; /* Align icon with text */
    color: white;
    
  
  }
  
  
  
  .footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #f49e09;
    text-transform: capitalize;
  }
  
  .footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: white;
    height: 2px;
    width: 60px;
  }
  
  /* ul li:not(:last-child){
    margin-bottom: 8px;
  } */
  
  .footer-col ul li a{
    display: block;
    font-size: 15px;
    text-transform: capitalize;
    color: white;
    text-decoration: none;
    transition: 0.4s;
    padding-top: 10px;
  }
  
   /* ul li a:hover{
    color: white;
    padding-left: 2px;
  }  */
  
  .links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background-color: rgba(40, 130, 214, 0.8);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
  }
  
  .links a:hover{
    color: #4d4f55;
    background-color: white;
  }
  .footer-copyright {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #aaa; /* Adjust color as needed */
    width: 100%; /* Ensure full width */
    border-top: 1px solid white;
  }
  
  .footer-copyright p {
    margin-top: 20px;
  
  }
  
  


@media screen and (max-width : 1316px) {
    .header__container h1 {
        font-size: 3.1rem;
    }
  .footer-col{
    
    padding: 25px 1%;
}
}

@media screen and (max-width : 345px) {
     .header__container h1 {
        font-size: 2.5rem;
    }
}




@media screen and (max-width : 1144px) {

      .nav__item {
      
      padding: 1.4rem 0;
  }  
  
    .megamenu {
      flex-direction: column;
      box-shadow: none;
      position: static;
      height: 0;
      max-width: 450px;
      overflow: hidden;
  }
  
  .dropdown:hover .megamenu{
      height: 100%;
  }
  .nav__list {
      position : absolute;
      height: 100vh;
      width: 100%;
      left: -100%;
      max-width: 450px;
      top: 0;
       background-color: #0a0d14;
      overflow-x: hidden;
      display: block;
      transition: 0.3s;
  }
  .toggle__menu,
  .close__menu {
  display: block;
  }
  
  
  .close__menu {
  margin: 1rem 1rem 1rem auto;
  background-color: #2696E9;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  }
  
  .toggle__menu {
      color: white;
  }
  
  .close__menu i {
  line-height: 32px;
  color: #fff;
  font-size: 22px; 
  }
  .show__menu {
  left: 0;
  }
     nav {
      justify-content: space-between;
    }

    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
        padding: 25px 2.5%;
    }

    .footer-col h4::before{
        left: auto;
    }

}


@media screen and (max-width : 768px) {
  
    .megamenu {
        flex-direction: column;
        box-shadow: none;
        position: static;
        height: 0;
        max-width: 450px;
        overflow: hidden;
    }

    .dropdown:hover .megamenu{
        height: 100%;
    }
    .nav__list {
        position : absolute;
        height: 100vh;
        width: 100%;
        left: -100%;
        max-width: 450px;
        top: 0;
        
        overflow-x: hidden;
        display: block;
        transition: 0.3s;
    }
    .toggle__menu,
.close__menu {
    display: block;
}




.close__menu i {
   line-height: 32px;
   color: #fff;
   font-size: 22px; 
}
.show__menu {
    left: 0;
}
.footer-col{
    width: 100%;
}
}