@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}


nav {
  position: fixed;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  color: white;
   font-family: "Roboto Slab", serif;

  height: 80px;
}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a img{
  /* color: #f2f2f2; */
  /* font-size: 30px; */
  /* font-weight: 600; */
  /* text-decoration: none; */
  margin-top: 20px;
width: 130px;
height: 60px;

}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #242526;
/* color: black; */
  /* color: #8750f7; */
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

 /* .nav-links li a:hover { */
  /* background: #3A3B3C; */
  /* background-image: linear-gradient( to right,  #8750f7 0%,  #8750f7 51%, #2a1454 100% );
  color: white;
}  */

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: white;
  width: 180px;
  opacity: 0.3;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
 
  visibility: hidden;
}

.mega-box .content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header a{
  text-decoration: none;
  color: #8750f7;
  font-size: 20px;
  font-weight: 500;
}


.content .row header a:hover{
  text-decoration: none;
  background-color: transparent;
  color: #8750f7;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  /* color: #d9d9d9; */
  color: #2a1454;
  font-size: 17px;
  display: block;
}

.mega-links li a:hover {
  /* color: #f2f2f2; */
  background-image: linear-gradient( to right,  #8750f7 0%,  #8750f7 51%, #2a1454 100% ); 
  color:white;
  
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 1080px) {
  .wrapper .btn {
    display: block;
    color:#8750f7;
  }

  .wrapper .nav-links {
    position: fixed;
    /* color: white; */
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    color: white;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    /* background: #3A3B3C; */
    background-image: linear-gradient( to right,  #8750f7 0%,  #8750f7 51%, #2a1454 100% );
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
    color: #2a1454;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-text img{
  width: 100%;
  vertical-align: middle;
  height: 600px;
}


@media screen and (max-width: 1080px) {
  .body-text img{
    margin-top: 100px;
    height: 300px;
  }
}


 .growth {
      width: 100%;
      height: auto;
      padding: 80px 20px 40px;
      text-align: center;
    }

    .growth h2 {
      font-size: 40px;
      font-weight: 600;
      line-height: 60px;
      margin-bottom: 20px;
    }

    .growth p {
      width: 83%;
      margin: 0 auto 30px;
      color: #666769;
      font-weight: 400;
      font-size: 24px;
      line-height: 40px;
    }

    .growth a {
      font-family: cursive;
      font-weight: 600;
      background-image: linear-gradient(to right, #8750f7 0%, #8750f7 51%, #2a1454 100%);
      width: 270px;
      border-radius: 50px;
      padding: 15px 20px;
      font-size: 18px;
      text-align: center;
      color: #fff;
      margin: 0 auto;
      display: block;
      text-decoration: none;
      transition: background-image 0.5s ease;
    }
  @media (max-width: 768px) {
      .growth h2 {
        font-size: 2rem;
        line-height: 1.4;
      }

      .growth p {
        width: 95%;
        font-size: 1.2rem;
        line-height: 1.6rem;
      }

      .growth a {
        font-size: 1.1rem;
        padding: 12px 0;
      }
    }


  .portfolio {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
  }
  
  .portfolio h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }


   .filter-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .filter-btn {
      background-image: linear-gradient(to right, #8750f7 0%, #8750f7 51%, #2a1454 100%);
      color: white;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.5s ease;
      min-width: 150px;
    }

    .filter-btn:hover {
      background-image: linear-gradient(to left, #8750f7 0%, #8750f7 51%, #2a1454 100%);
    }

    /* On smaller screens - stack vertically but keep center-aligned buttons */
    @media (max-width: 768px) {
      .filter-buttons {
        flex-direction: column;
        align-items: center;
      }

      .filter-btn {
        width: auto;          /* maintain natural size */
        min-width: 200px;     /* set minimum for consistency */
        text-align: center;
      }
    }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .portfolio-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .portfolio-item img {
    width: 100%;
    height: auto;
  }
  
  .portfolio-item p {
    padding: 15px;
    margin: 0;
    background-color: #f8f8f8;
    font-size: 1.2rem;
    color: #333;
  }
  
  .portfolio-item:hover {
    transform: translateY(-10px);
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
  }



  /* carousole section */


  .carousel-head{
    width: 100%;
  
  }
  
  
  .carousel-head h2{
    padding-top: 100px;
    text-align: center;
    font-size: 40px;
      font-weight: 600;
      font-family: "Roboto Slab", serif;
      /* font-family: "Playwrite DE Grund", cursive; */
      color: black;
    font-weight: 600;
    line-height: 60px;
    font-style: normal;
  }
  
  .carousel-head p{
    font-family: "Playwrite DE Grund", cursive;
    /* font-family: "Roboto Slab", serif; */
    width: 83%;
    text-align: center;
    margin: auto;
    color: #666769;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    
    }
  
  
  .Image-wrapper img{
  width: 300px;
  height: 300px;
  }
  
  .carousel {
  /* max-width: 60rem; */
  width: 100%;
  overflow: hidden;
  }
  
  .Image-wrapper {
  display: flex;
  animation: roll 15s linear infinite;
  }
  
  @keyframes roll {
  to {
  transform: translate(calc(-4 * 15rem));
  }
  }
  
  
  /* intro-section */

.intro {
    text-align: center;
    padding: 40px 20px;
  }
  
  .intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .intro-img {
    flex: 1;
  }
  
  .intro-img img {
    max-width: 100%;
    height: auto;
  }
  
  .intro-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
  }
  
  .intro h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    /* color: #209db6; */
    color:#555;
  }
  
  .intro h3 {
    font-size: 17px;
    margin-bottom: 10px;
    /* color: #209db6; */
    color: #555;
  }
  
  .intro p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 40px;
  }
  
  .about-button {
    padding: 10px 20px;
    border: none;
    /* background-color: #209db6; */
    background-color:  #8750f7;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
  }
  
  .about-button:hover {
    background-color: #fff;
    /* color: #209db6; */
    color:#8750f7;
    border: 1px solid #8750f7;
    
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }
  
    .intro-img img {
        margin-bottom: 20px;
    }
  
    .intro h1,
    .intro h3,
    .intro p {
        padding: 0 20px;
        text-align: start;
    }
  }

  
  /* energy section */


.energy{
    width: 100%;
    height: auto;
    display: flex;
  }
  .Energy-Efficient{
    width: 50%;
    height: auto;
    padding: 100px;
  }
  .Energy-Efficient-pool{
    width: 50%;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .Energy-Efficient h2{
    font-size: 45px;
    margin-bottom: 40px;
  }
  .Energy-Efficient p{
    font-size: 14px;
    line-height: 1.3rem;
  }
  .Energy-Efficient button{
    padding: 20px 30px;
    border: none;
    /* background-color: #15c6ea; */
    background-color:  #8750f7;
    color: white;
    margin-top: 40px;
  }
  .front{
    width: auto;
    display: flex;
    align-items: center;
    font-family: "Playwrite DE Grund", cursive;
    column-gap: 20px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .front h2{
    font-family: "Playwrite DE Grund", cursive;
  }
  .dash{
    width: 70px;
    height: 2px;
    background-color: #ddd;
  }
  @media screen and (max-width: 920px){
    /* .head{
      background-image:
      linear-gradient(45deg,
        rgba(0, 0, 0, 0.75),
        rgba(39, 40, 41, 0.65)), url(Iamges/Service-head.jpg);
      width: 100%;
      height: 300px;
      font-size: 20px;
    } */
  
  
    .Energy-Efficient h2{
      font-size: 32px;
    }
    .Energy-Efficient{
      padding: 50px;
    }
    .Energy-Efficient-pool img{
      width: 380px;
      height: 450px;
      box-sizing: border-box;
      padding: 25px;
    }
  }
  @media screen and (max-width: 620px){
    .energy{
      flex-direction: column;
      align-items: center;
    }
    .Energy-Efficient{
      margin-right: 0px;
      width: 100%;
    }
    .Energy-Efficient h2{
      text-align: left;
    }
    .Energy-Efficient p{
      font-size: 14px;
      line-height: 2.5rem;
    }
    .Energy-Efficient-pool{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .front{
      justify-content: center;
    }
    .Energy-Efficient-pool img{
      width: 380px;
      height: 500px;
      box-sizing: border-box;
      padding: 25px;
    }
    
  }

  
  /* custom marquee */


.custom-marquee{
    height: 300px;
  }
  
  .custom-marquee .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
  }
  
  .custom-marquee .marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .custom-marquee .marquee-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
  }
  
  @media (min-width: 768px) and (max-width: 991.98px) {
    .custom-marquee .marquee-content {
      -webkit-animation: marquee 20s linear infinite;
      animation: marquee 20s linear infinite;
    }
  }
  
  @media (max-width: 767.98px) {
    .custom-marquee .marquee-content {
      -webkit-animation: marquee 10s linear infinite;
      animation: marquee 10s linear infinite;
    }
  }
  
  .custom-marquee .primary-bg {
    padding: 10px 0;
    /* background-color: #ffff00; */
    background-image: linear-gradient( to right,  #8750f7 0%,  #8750f7 51%, #2a1454 100% );
  }
  
  .custom-marquee .primary-bg span {
    /* color: #000000; */
    color: #fff;
    font-size: 24px;
    font-weight: 500;
  }
  
  .custom-marquee .black-bg {
    padding: 10px 0;
    /* background-color: #000000; */
    background-image: linear-gradient( to right,#2a1454  0%,  #8750f7 51%,  #8750f7 100% );
  }
  
  .custom-marquee .black-bg span {
    /* color: #ffff00; */
    color:#fff;
    font-size: 24px;
    font-weight: 500;
  }
  
  .custom-marquee .marquee-row-1 {
    -webkit-animation-direction: normal;
    animation-direction: normal;
  }
  
  .custom-marquee .marquee-row-2 {
    animation-direction: reverse;
  }
  
  .custom-marquee .marquee-content span {
    display: inline-block;
    padding: 0 10px;
  }
  
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }

  

  /* webtemp */

.Website {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px;
    font-family: "Playwrite DE Grund", cursive;
  }
  
  .Website h2 {
    font-size: 35px;
    font-family: "Playwrite DE Grund", cursive;
  }
  
  .Website p {
    padding-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
    font-family: "Playwrite DE Grund", cursive;
  }
  
  .Website a {
    text-decoration: none;
    display: inline-block;
    background-color: blueviolet;
    padding: 10px 25px;
    color: white;
    border-radius: 25px;
    font-size: 18px;
    font-family: "Playwrite DE Grund", cursive;
  }

  

  .temp,.temp2 {
    width: 100%;
    height: 600px;
    font-family: "Playwrite DE Grund", cursive;
  }
  
  .e-commerce, .portfolio2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .e-img, .p-img {
    width: 50%;
  }
  
  .e-img img, .p-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
  }
  
  .e-text, .p-text {
    width: 45%;
    padding-right: 20px;
  }
  
  .e-text h2, .p-text h2 {
    font-size: 30px;
  }
  
  .e-text p, .p-text p {
    line-height: 1.5;
    padding-bottom: 20px;
  }
  
  .e-text a, .p-text a {
    text-decoration: none;
    background-color: blueviolet;
    padding: 10px 25px;
    color: white;
    border-radius: 25px;
    display: inline-block;
    font-size: 18px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
  
    .temp {
  margin-bottom: 40px; 
  }
  
    .e-commerce {
        flex-direction: column;
        text-align: center;
    }
  
    .portfolio2 {
        flex-direction: column-reverse;
        text-align: center;
    }
  
    .e-img, .p-img, .e-text, .p-text {
        width: 100%;
    }
  
    .e-img img, .p-img img {
        max-height: 400px;
        margin-top: 40px;
    }
  
    .e-text, .p-text {
        padding-right: 0;
        padding-top: 20px;
    }
  }
  
  @media (max-width: 768px) {
  
    .temp {
  margin-bottom: 40px; 
  }
  
    .Website h2 {
        font-size: 28px;
    }
  
    .Website p {
        font-size: 18px;
    }
  
    .Website a {
        padding: 8px 20px;
        font-size: 16px;
    }
  
    .e-text h2, .p-text h2 {
        font-size: 24px;
    }
  
    .e-text p, .p-text p {
        font-size: 16px;
    }
  
    .e-text a, .p-text a {
        padding: 8px 20px;
        font-size: 16px;
      
    }
  }
  
  @media (max-width: 480px) {
  
    .temp {
  margin-bottom: 40px; 
  }
  
    .Website h2 {
        font-size: 24px;
    }
  
    .Website p {
        font-size: 16px;
    }
  
    .Website a {
        padding: 6px 15px;
        font-size: 14px;
    }
  
    .e-text h2, .p-text h2 {
        font-size: 20px;
    }
  
    .e-text p, .p-text p {
        font-size: 14px;
    }
  
    .e-text a, .p-text a {
        padding: 6px 15px;
        font-size: 14px;
       
    }
  
    .e-img img, .p-img img {
        max-height: 300px;
       
    }
  }



/* accordion */

  .accordion {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 400px;
    width: 90%;
    margin:auto;
  }
  
  .accordion h1{
    margin-top: 100px;
    text-align: start;
    font-size:50px;
    font-family: 'Poppins', sans-serif;
  font-weight: 500;
  }
  
  .accordion__item {
    border: 1px solid #e5f3fa;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .accordion__header {
  padding: 15px 25px;
  text-align: start;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }
  
  .accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 15px;
    height: 15px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
  }
  
  .accordion__header.active {
    background: #e5f3fa;
  }
  
  .accordion__header.active::after {
    transform: rotateX(180deg);
  }
  
  .accordion__item .accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
    text-align: start;
  }
  




  footer{
  /* position: fixed; */
  /* background: rgb(159, 156, 156); */
  /* background-color: rgba(182, 176, 187, 0.58); */
  background: linear-gradient(to right, #e0e0e0, #e0e0e0);
  width: 100%;
  bottom: 0;
  left: 0;
}
/* footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #AFAFB6;
} */
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top{
  color:#fff;
  font-size: 30px;
}


.logo-details img{
  width: 200px;
  height: 90px;
  
}


.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #361c6b;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.list{
  color: #361c6b;
  font-size: 14px;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background:#361c6b;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #361c6b;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}

.content .link-boxes .input-box{
  margin-right: 55px;
}

.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background:rgb(75, 64, 123);
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
 .link-boxes .input-box input[type="submit"] {
      background: #fff;
      color: rgb(75, 64, 123);
      border: none;
      font-size: 18px;
      font-weight: 500;
      margin: 4px 0;
      opacity: 0.8;
      cursor: pointer;
      transition: all 0.4s ease;
    }



    .input-box input[type="submit"]:hover {
      opacity: 1;
    }





    .link-boxes .input-box input[type="email"],
.link-boxes .input-box input[type="submit"] {
  height: 45px;
  width: 250px;
  outline: none;
  border: 2px solid #AFAFB6;
  background: rgb(75, 64, 123);
  border-radius: 4px;
  padding: 0 15px;
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
}


footer .bottom-details{
  width: 100%;
  background: rgb(75, 64, 123);
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}




  /* contact page */

 .main-contact {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cc.png');
  width: 100%;
  height: 400px;
  font-size: 26px;
  color: #fff;
 background-position: 100% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-top: 80px;
}
  



  .impt{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    padding: 0px 40px 100px 40px;
    /* align-items: center; */
  
  }
  
  .impt1{
    width: 45%;
    
  }
  
  .impt h4{
    
    font-size: 35px;
    padding-top: 50px;
   
  }
  
  .impt1 p{
  color: #6b6767;
    line-height: 30px;
    font-size: 20px;
  }
  
  .impt2{
    width: 45%;
    align-self: flex-end;
  }
  
  .impt2 img{
    width: 85%;
    height: 600px;
    padding-top: 90px;
  
  }
  
  @media only screen and (max-width: 768px) {
    .impt{
      flex-direction: column;
    }
    .impt1 {
      width: 100%;
    }
    .head1 {
      padding-top: 20px;
    }
    .impt2 {
      width: 100%;
      height: 400px;
    }
  
    .impt2 img{
      width: 100%;
      height: 550px;
      padding-top: 40px;
    
    }
  }






  .form-section{
    width: 100%;
    height: auto;
    display: flex;
  }
  .form-text{
    width: 50%;
    height: auto;
   padding-left: 50px;
    padding-top: 80px;
    row-gap: 10px;
    justify-content: center;
  }
  
  .form-text h3{
    font-size: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .form-text i{
    /* color: #00bcd4; */
    color: blueviolet;
  }
  
  .form-text span{
    font-weight: 800;
    /* color: #00bcd4; */
    color: blueviolet;
  }
  
  .form-text p{
    font-weight: 500;
    color: #02174e;
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  
  .form{
    width: 45%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  .login-box {
    width: auto;
    width: 100%;
    padding: 30px 30px;
    border-radius: 10px;
    /* background-image: linear-gradient(to right, var(--primary-color), var(--third-color)); */
    /* background-color: #15c6ea; */
    background-image: linear-gradient( to right,  #8750f7 0%,  #8750f7 51%, #2a1454 100% ); 
    
    /* background-color: #00bcd4; */
    box-sizing: border-box;
    background-position: center center;
    background-size: cover;
  }
  
  .login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    /* color: black; */
    text-align: center;
  }
  
  .login-box .user-box {
    position: relative;
  }
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    /* color: #000000; */
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
  }
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    /* color: black; */
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    font-size: 12px;
  }
  
  .login-box form button{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    /* color: #fff; */
    color: black;
    border-radius: 5px;
    font-size: 16px;
   border: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px
  }
  
  .login-box button:hover {
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 5px white,
                0 0 25px white,
                0 0 50px white,
                0 0 100px white;
  }
  
  .login-box a span {
    position: absolute;
    display: block;
  }
  
  .login-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, white);
    animation: btn-anim1 1s linear infinite;
  }
  
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%,100% {
      left: 100%;
    }
  }
  
  .login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, white);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
  }
  
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%,100% {
      top: 100%;
    }
  }
  
  .login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, white);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
  }
  
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%,100% {
      right: 100%;
    }
  }
  
  .login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, white);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
  }
  
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%,100% {
      bottom: 100%;
    }
  }
  
  @media screen and (max-width:780px){
    .form-section{
      flex-direction: column;
    }
    .form-text{
      width: auto;
      padding-left: 0px;
      padding-right: 0px;
      padding: 50px;
    }
    .form{
      width: auto;
      padding: 50px;
    }
    .login-box {
      width: auto;
      width: 100%;
      padding: 20px 20px;
    }
  }
  @media screen and (max-width:780px){
    .form-text{
      padding: 25px;
    }
  }
  
 .contact-section {
      padding: 50px 20px;
    }

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      max-width: 1100px;
      margin: auto;
      gap: 40px;
      align-items: center;
    }

    .contact-image-box {
      flex: 1;
      min-width: 300px;
    }

    .contact-image-box img {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      display: block;
      margin: auto;
    }

    .contact-content {
      flex: 1;
      min-width: 300px;
    }

    .contact-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #333;
    }

    .contact-content p {
      font-size: 1rem;
      margin-bottom: 20px;
      color: #555;
    }

    .contact-content form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .contact-content input,
    .contact-content textarea,
    .contact-content select {
      padding: 10px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 100%;
    }

    .contact-phone-group {
      display: flex;
      gap: 10px;
    }

    .contact-phone-group select {
      width: 35%;
    }

    .contact-phone-group input {
      width: 65%;
    }

    .contact-content button {
      padding: 12px;
      background-color: #8750f7;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
    }

    .contact-content button:hover {
      background-color: blueviolet;
    }

    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
        text-align: center;
      }

      .contact-image-box, .contact-content {
        width: 100%;
      }

      .contact-phone-group {
        flex-direction: column;
      }

      .contact-phone-group select,
      .contact-phone-group input {
        width: 100%;
      }
    }




    /* digital marketing services */



     .services-component {

      display: flex;
      justify-content: space-between;
      font-family: 'Poppins', sans-serif;
      align-items: center;
      gap: 40px;
      max-width: 1200px;
      padding-top: 100px;
      margin:auto;
      flex-wrap: wrap;
    }

    .service-compt-text {
      flex: 1;
      min-width: 300px;
    }

    .service-compt-text h2 {
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 20px;
    }

    .service-compt-text p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .service-compt-img {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }

    .service-compt-img img {
      max-width: 80%;
      height: 500px;
     
    }

    @media (max-width: 768px) {
      .services-component {
        flex-direction: column;
        text-align: center;
      }

      .service-compt-text h2 {
        text-align: left;
        font-size: 2rem;
        padding: 20px;
      }

      .service-compt-text p{
        text-align: justify;
        padding: 20px;
      }

      .service-compt-text,
      .service-compt-img {
        width: 100%;
      }
    }


.marketing-head {
      width: 100%;
      height: auto;
      padding: 60px 20px;
      box-sizing: border-box;
      
    }

    .marketing-head h2 {
      text-align: center;
      font-size: 40px;
      font-weight: 600;
      font-family: "Roboto Slab", serif;
      color: black;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .marketing-head p {
      font-family: "Roboto Slab", serif;
      width: 83%;
      max-width: 800px;
      text-align: center;
      margin: auto;
      color: #666769;
      font-weight: 400;
      font-size: 24px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .marketing-head h2 {
        font-size: 28px;
        line-height: 1.3;
      }

      .marketing-head p {
        font-size: 18px;
        line-height: 1.5;
      }
    }

    @media (max-width: 480px) {
      .marketing-head h2 {
        font-size: 22px;
      }

      .marketing-head p {
        font-size: 16px;
        width: 100%;
        padding: 0 10px;
      }
    }






    

    .marketing-card-container {
      display: flex;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 30px;
      padding: 50px 20px;
      align-items: flex-start;
      background-color: rgba(135, 80, 247, 0.1);
      width: 100%;
      margin: auto;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      overflow-x: hidden;
    }

    .marketing-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 350px;
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .marketing-card:hover {
      transform: translateY(-10px);
    }

    .marketing-image-wrapper {
      flex: 1;
      height: 250px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #fafafa;
    }

    .marketing-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      max-width: 100%;
    }

    .marketing-card-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
    }

    .marketing-card-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #222;
    }

    .marketing-card-content p {
      font-size: 1rem;
      color: #555;
      line-height: 1.5;
      margin-bottom: 20px;
    }

   .marketing-card-content a {
  align-self: flex-start;
  padding: 10px 20px;
  border: none;
  background-color: #8750f7;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.marketing-card-content a:hover {
  background-color: #6e40d8;
}



     .marketing-card-container .marketing-card:nth-child(1) {
      margin-top: 0;
    }

    .marketing-card-container .marketing-card:nth-child(2) {
      margin-top: 60px;
    }

    .marketing-card-container .marketing-card:nth-child(3) {
      margin-top: 160px;
    }


    /* Responsive Fixes */
    @media (max-width: 1024px) {
      .marketing-card-container {
        flex-wrap: wrap;
        justify-content: center;
      }

      .marketing-card {
        margin-top: 0;
      }
    }

    @media (max-width: 768px) {
      .marketing-card-container {
        flex-direction: column;
        gap: 20px;
      }

      .marketing-card {
        max-width: 100%;
        width: 100%;
      }
    }



    .Social-Media{
    width: 100%;
    height: 300px;
  
  }
  
  .Social-Media h2{
    padding-top: 100px;
    text-align: center;
    font-size: 40px;
      font-weight: 600;
      
      font-family: "Roboto Slab", serif;
     
      color: black;
    font-weight: 600;
    line-height: 60px;
    font-style: normal;
      
  }
  

   .Social-Media p{
    font-family: "Roboto Slab", serif;
   
    width: 83%;
    text-align: center;
    margin: auto;
    color: #666769;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
  }





 .marketing-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;

      padding: 40px;

      max-width: 1200px;
      margin: auto;
    }

    .marketing-image {
      flex: 1 1 400px;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 3px solid #111;
    }

    .marketing-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    
    .marketing-content {
      flex: 1 1 600px;
    }

    .marketing-content h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .marketing-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 30px;
      color: #333;
    }

    .cta-button {
      background-color: #8750f7;
      color: #fff;
      font-weight: 700;
      padding: 12px 25px;
      font-size: 1rem;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 3px 3px 0px #b8c5e8;
    }

    .cta-button:hover {
      background-color: #8750f7;
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .marketing-section {
        flex-direction: column;
        text-align: center;
      }

    

      .cta-button {
        margin: 0 auto;
      }
    } 



.ppc-main {
    width: 100%;
    min-height: 100vh; /* allows the section to grow with content */
    background-image: url(images/ppc-image.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    font-family: "Playwrite DE Grund", cursive;
    padding-top: 80px;
}

.ppc-main-content{
    width: 700px;
    padding: 20px;
}


.ppc-main-content h1{
      font-family: "Roboto Slab", serif;
    padding-left: 20px;
    font-size: 45px;
    color: #594978;
    
}

.ppc-main-content p{
    padding-left: 20px;
    padding-top: 20px;
    color: #4d4e4e;
    font-size: 20px;
}


.ppc-main-content a {
    text-decoration: none;
    display: inline-block;
    background-color: blueviolet;
    padding: 10px 25px;
    color: white;
    border-radius: 25px;
    font-size: 18px;
    font-family: "Playwrite DE Grund", cursive;
    margin-left: 20px;
    margin-top: 20px;
  }



   .Social-Media{
    width: 100%;
    height: 300px;
  
  }


  .Social-Media h2{
    padding-top: 100px;
    text-align: center;
    font-size: 40px;
      font-weight: 600;
      
      font-family: "Roboto Slab", serif;
     
      color: black;
    font-weight: 600;
    line-height: 60px;
    font-style: normal;
      
  }
  

   .Social-Media p{
    font-family: "Roboto Slab", serif;
   
    width: 83%;
    text-align: center;
    margin: auto;
    color: #666769;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
  }



  .ppc-section {
      display: flex;
      flex-direction: column;
      gap: 60px;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .ppc-card {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .ppc-card.reverse {
      flex-direction: row-reverse;
    }

    .ppc-image {
      flex: 1 1 400px;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 3px solid #111;
    }

    .ppc-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .ppc-content {
      flex: 1 1 600px;
    }

    .ppc-content h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .ppc-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 30px;
      color: #333;
    }

    

  .ppc-button {
  display: inline-block;
  background-color: #8750f7;
  color: #fff;
  font-weight: 700;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px #b8c5e8;
}

.ppc-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

    @media (max-width: 768px) {
      .ppc-card,
      .ppc-card.reverse {
        flex-direction: column;
        text-align: center;
      }

      .ppc-button {
        margin: 0 auto;
      }
    }



     .card-container {
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
    }

    .info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* text-align: center; */
  width: 100%;
  max-width: 250px;
  padding: 10px;
 
  border-radius: 10px;
  /* Removed box-shadow */
  background-color: #fff;
  position: relative; /* for pseudo element if needed */
}

/* Wrap icon in a circle background */
.icon {
  width: 190px;
  height: 190px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Add circle behind icon */
.icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;  /* slightly bigger than icon */
  height: 220px;
  background-color: #f0f0f0; /* light gray circle */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


    /* Wrap icon in a circle background */
.icon-circle {
  width: 240px;
  height: 240px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon {
  width: 200px;
  height: 200px;
}

    .title {
      margin: 0;
      font-size:22px;
      font-weight: bold;
    }

    .description {
      margin: 8px 0 0;
      font-size: 16px;
      text-align: center;
      color: #555;
    }


    .Social-Media{
    width: 100%;
    height: 300px;
  
  }
  
  .Social-Media h2{
    padding-top: 100px;
    text-align: center;
    font-size: 40px;
      font-weight: 600;
      
      font-family: "Roboto Slab", serif;
     
      color: black;
    font-weight: 600;
    line-height: 60px;
    font-style: normal;
      
  }
  

   .Social-Media p{
    font-family: "Roboto Slab", serif;
   
    width: 83%;
    text-align: center;
    margin: auto;
    color: #666769;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
  }

    
    .promo-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
      flex-wrap: wrap;
      gap: 30px;
      background-color: rgba(197, 154, 237, 0.7);
    }

    .promo-image {
      flex: 1 1 45%;
      max-width: 500px;
    }

    .promo-image img {
      width: 80%;
      padding-top: 50px;
      border-radius: 10px;
    }

    .promo-content {
      flex: 1 1 45%;
      max-width: 650px;
    }

    .promo-content h2 {
      font-size: 38px;
      margin-bottom: 15px;
      color: #271250;
    }

    .promo-content p {
      font-size: 18px;
      margin-bottom: 20px;
      color: #271250;
    }

    .promo-btn {
      padding: 12px 24px;
      background-color: #8750f7;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .promo-btn:hover {
      background-color: #af57ce;
    }

    @media (max-width: 768px) {
      .promo-section {
        flex-direction: column;
        text-align: center;
      }

      .promo-image,
      .promo-content {
        max-width: 100%;
      }
    }
  
/* About */



.intro-section {
      width: 100%;
      min-height: 100vh;
      padding-top: 200px;
      /* background-color: #af57ce; */
   background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url(https://images.unsplash.com/photo-1674027392887-751d6396b710?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
        background-position: center;
        background-size: cover;
        background-attachment: fixed;
      color: #fff;
      padding: 50px;
      text-align: center;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .intro-title {
      font-size: 4.5rem;
      font-weight: bold;
      line-height: 1.2;
      margin-bottom: 30px;
      padding-top: 80px;
      margin-top: 0;
    }

    .intro-title span {
      font-style: normal;
      color: blanchedalmond;
    }

    .about-details {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-top: 20px;
    }

    .about-step {
      font-weight: bold;
      margin-right: 10px;
    }

    .divider-line {
      width: 50px;
      height: 1px;
      background-color: #fff;
      margin-right: 20px;
    }

    .about-text {
      max-width: 600px;
      line-height: 1.5;
    }

    .hero-section {
      display: flex;
      height: 100vh;
      width: 100%;
    }

    .hero-image {
      flex: 1.5;
      background: url(images/Content\ Marketing.jpg) no-repeat center center/cover;
    }

    .hero-content {
      flex: 1;
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(images/building.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px;
      position: relative;
    }

    .hero-heading {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-text {
      font-size: 1.1rem;
      color: #ccc;
      margin-bottom: 40px;
    }

    .hero-text strong {
      color: white;
    }

    .cta-button {
  width: 200px;
  background-color: #fff;
  color: black;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ccc;
}

.cta-button::after {
  content: "↗";
  font-size: 1.2rem;
}

    @media(max-width: 768px) {
      .hero-section {
        flex-direction: column;
      }

      .hero-content {
        padding: 30px;
        text-align: center;
      }

      .hero-heading {
        font-size: 2.5rem;
      }

      .cta-button {
        justify-content: center;
      }
    }



    
    /* Overall section styling */
.our-services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* Section heading */
.our-services-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

/* Divider line under heading */
.our-services-divider {
  width: 80px;
  height: 4px;
  background-color: #8750f7; /* Customize color as needed */
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Container for service cards */
.our-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual service card */
.our-service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Service icon */
.our-service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* Service title */
.our-service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Service description */
.our-service-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .our-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .our-service-card {
    width: 90%;
  }
}

     .section-heading {
      text-align: center;
      margin-top: 50px;
    }

    .section-heading h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      color: black;
    }

    .section-heading .line {
      width: 60px;
      height: 3px;
      background-color: #8750f7;
      margin: 0 auto 40px;
      border-radius: 2px;
    }

    .team-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0 20px 50px;
    }

    .team-member {
      /* background-color: #111; */
      max-width: 250px;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    .team-member img {
      width: 100%;
      height: auto;
      display: block;
    }

    .member-info {
      padding: 15px 10px;
      background-color: gray;
    }

    .member-info h3 {
      font-size: 1.2rem;
      margin: 10px 0 5px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .member-info p {
      font-size: 0.9rem;
      color: #aaa;
      margin: 0;
    }
     

    /* wev dev */

 .webdev-intro {
      background-image: url('https://images.unsplash.com/photo-1624800131366-6da5fb02a654?q=80&w=1932&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-blend-mode: darken;
      background-color: rgba(0, 0, 0, 0.6);

      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .webdev-intro h1 {
      font-size: 2.7rem;
      margin-bottom: 10px;
    }

    .webdev-intro p {
      font-size: 1.2rem;
      max-width: 700px;
    }

    @media (max-width: 600px) {
      .webdev-intro h1 {
        font-size: 2rem;
      }

      .webdev-intro p {
        font-size: 1rem;
      }
    }
    
    .growth-section {
      padding: 60px 20px;
      background-color: #f9f9f9;
    }

    .growth-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
      align-items: center;
    }

    .growth-text {
      flex: 1 1 400px;
    }

    .growth-text h1 {
      font-size: 3rem;
      color: #333;
    }

    .growth-text p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.6;
      margin-top: 20px;
    }

    .growth-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .growth-image img {
      max-width: 100%;
      height: 500px;
      border-radius: 10px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .webdev-intro h1 {
        font-size: 2rem;
      }

      .webdev-intro p {
        font-size: 1rem;
      }

      .growth-wrapper {
        flex-direction: column;
      }

      .growth-text,
      .growth-image {
        text-align: center;
      }

      .growth-image img {
        height: auto;
        max-height: 300px;
      }

      .growth-text h1 {
        font-size: 2rem;
      }

      .growth-text p {
        font-size: 1rem;
      }
    }   
