@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #f8f208;
  --primary-color-dark: #ee9821;
  --secondary-color: #04091d;
  --secondary-color-light: #0f1221;
  --secondary-color-dark: #03060f;
  --text-light: #94a3b8;
  --white: #ffffff;
  --max-width: 1200px;
  --gradient: linear-gradient(
    to right,
    var(--primary-color-dark),
    var(--primary-color)
  );
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

.section__subheader {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-top: 1rem;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--secondary-color);
  background-image: var(--gradient);
  border-radius: 5rem;
  cursor: pointer;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--white);
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--secondary-color);
}

.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;
}

/*.dropdown.show__megamenu .megamenu {*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*    color: #a92ec8;*/
/*}*/

.nav__item:hover  .dropdown__icon {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.header__container {
margin-top: 0rem;
  
  display: grid;
  gap: 2rem;
}

.header__image img {
  max-width: 500px;
  margin: auto;
}

.header__content {
  text-align: center;
}

.header__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-align:center;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.5rem;
  text-align:center;
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
  text-align:center;
}

.about__container {
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
}

.about__content .section__header {
  margin-bottom: 1rem;
  text-align: center;
}

.about__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
  text-align:center;
}

.about__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-align:center;
 
}


.about__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about__btns .download__btn {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border-radius: 5rem;
}

.about__btns a {
  padding: 3px 8px;
  font-size: 1.25rem;
  color: var(--secondary-color);
  background-image: var(--gradient);
  border-radius: 100%;
}

.banner__container {
  padding-block: 2rem;
  display: grid;
  gap: 1rem;
}

.banner__card {
  padding: 2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--secondary-color-light);
  border-radius: 5px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.banner__card:hover {
  border-color: var(--primary-color-dark);
}

.banner__card span {
  padding: 4px 10px;
  font-size: 1.5rem;
  background-color: var(--secondary-color-dark);
  border-radius: 100%;
  transition: 0.3s;
}

.banner__card:hover span {
  color: var(--secondary-color);
  background-image: var(--gradient);
}

.banner__card h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

.banner__card p {
  color: var(--text-light);
}

.register__grid {
    display: grid;
    background-color: var(--text-dark);
    border-radius: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .register__content {
    padding-block: 4rem;
    padding-inline: 1rem;
  }
  
  .register__content h4 {
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 4rem;
    color: var(--white);
  }
  
  



  .register__content {
    padding-block: 4rem;
    padding-inline: 4rem 0;
  }


  .register__image img {
    margin: auto;
    max-width: 500px;
    
  } 
.service__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1rem; 
}

.service__card {
  position: relative;
  padding: 2rem;
  padding-top: 3rem;
  text-align: center;
  background-color: var(--secondary-color-light);
  border-bottom: 2px solid transparent;
  border-radius: 5px;
  transition: 0.3s;
}

.service__card:hover {
  border-color: var(--primary-color-dark);
}

.service__card span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px 10px;
  font-size: 2rem;
  background-color: var(--secondary-color-light);
  border-radius: 2px;
  transition: 0.3s;
}

.service__card:hover span {
  color: var(--secondary-color);
  background-image: var(--gradient);
}

.service__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service__card p {
  color: var(--text-light);
}



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 (width > 480px) {


  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .project__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1rem;
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__form .input__row {
    flex-direction: row;
  }


}

@media (width > 768px) {
  .header__socials {
    display: flex;
  }

  nav {
    position: static;
  }

  .nav__bar {
    padding: 2rem 1rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .header__container {
    
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
  }

  .header__content {
    
    text-align: left;
    grid-area: 1/1/2/2;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
  }

  .banner__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .project__header {
    flex-direction: row;
  }

  .project__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1rem; 
  }

  .client__card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media screen and (max-width : 1316px) {
  .footer-col{
    
    padding: 25px 1%;
}
}

@media (width > 1024px) {
  .banner__container {
    gap: 2rem;
  }

  .project__grid {
    gap: 2rem;
  }

  .service__grid {
    gap: 2rem;
  }

  .blog__grid {
    gap: 2rem;
  }
}

@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;
  }
  .toggle__menu {
      color: white;
  }
  
  .close__menu {
  margin: 1rem 1rem 1rem auto;
  background-color:  #2696E9;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  }
  
  
  
  .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%;
}
.register__grid {
grid-template-columns: repeat(1, 1fr);
}
.header__container {
    margin-top: 2rem;
 }
 .about__container {
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 2rem;
}

}
@media screen and (min-width : 1316px) {
  .header__container {
   
    min-height: 90vh;
    padding-top: 5rem;
  }
  
}
@media screen and (max-width: 359px) {
 
  
 
  
  .about__btns {
  
    gap: 0.8rem;
  }
  
  .about__btns .download__btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 5rem;
  }
  
  .about__btns a {
    padding: 3px 8px;
    font-size: 1rem;
    color: var(--secondary-color);
    background-image: var(--gradient);
    border-radius: 100%;
  }
}

@media (width < 481px){

    .service__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 4rem 1rem;
      }
      .about__content .section__header {
        margin-bottom: 1rem;
        text-align: center;
      }

      .about__content h4 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 400;
        text-align: center;
       
      }
      .about__content p {
        margin-bottom: 2rem;
        color: var(--text-light);
        text-align: center;
      }

}
.register__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    align-items: center;
    gap: 2rem; /* Add space between image & content */
    background-color: var(--text-dark);
    border-radius: 1rem;
    padding: 2rem;
}

.register__image img {
    width: 100%; /* Make it responsive */
    max-width: 500px; /* Prevent too large images */
    height: auto;
    object-fit: cover;
    display: block;
}

.register__content {
    padding: 4rem;
    text-align: left;
}

.register__content h4 {
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 4rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .register__grid {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .register__image img {
        max-width: 100%; 
    }
    .register__content {
        padding: 2rem;
    }
    .register__content h4 {
        font-size: 2rem;
        line-height: 3rem;
    }
}




