/* General resets */



body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f7f7f7;
}
html {
  scroll-behavior: smooth;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  /* left: 0; */
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  z-index: 1002;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header-container {
    position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.header img {
  height: 60px;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: rgb(255, 0, 0);
}   
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #007bff;
  position: relative;
  font-weight: bold;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00BFFF;
}

/* Change nav link color when header is scrolled */
.header.scrolled .nav-links a {
  color: #222; /* Or #000 for pure black */
}

.header.scrolled .nav-links a:hover {
  color: #007bff; /* Keep hover effect */
}

/* Make nav links and logo text black on portfolio page */
body.portfolio-page .header,
body.portfolio-page .header a,
body.portfolio-page .header .logo,
body.portfolio-page .header i,
body.portfolio-page .nav-links a {
  color: #000 !important;
  fill: #000 !important; /* for SVG or icons if needed */
}

/* General Banner Styling */
.banner {
  height: 100vh;
  background: linear-gradient(135deg, #3178c6 60%, #33eaff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
}

.banner-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  color: white;
  z-index: 3;
  gap: 4rem;
  margin-top: 100px;
}
.banner-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}
.banner-logo {
  width: 120px;
  margin-bottom: 20px;
  animation: fadeInScale 1s cubic-bezier(.77, .2, .48, 1.01) forwards;
  opacity: 0;
}
.banner-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s .5s cubic-bezier(.77,.2,.48,1.01) forwards;
}
.banner-subtext {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s .8s cubic-bezier(.77,.2,.48,1.01) forwards;
}
.banner-desc {
  font-size: 1rem;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
}
.banner-btn {
  opacity: 0;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 50px;
  background: #fff;
  color: #3178c6;
  font-weight: 600;
  transition: background .2s, color .2s;
  box-shadow: 0 8px 18px rgba(60,120,200,.09);
  animation: fadeInScale 1s 1.6s forwards;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.banner-btn:hover {
  background: #54A847;
  color: #fff;
}
.banner-image {
  flex: 1;
  max-width: 500px;
  opacity: 0;
  animation: fadeInScale 1s 2s forwards;
}
.banner-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
#about-section {
  scroll-margin-top: 96px; /* Adjust size according to your fixed header height */
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.85);}
  to { opacity: 1; transform: scale(1);}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}
@media (max-width: 900px) {
  .banner-content-wrapper {
    flex-direction: column;
    text-align: center;
    margin-top: 80px;
  }
  .banner-text {
    max-width: 100%;
    text-align: center;
  }
  .banner-image {
    max-width: 100%;
    /* margin-top: 20px; */
  }
  .banner-title {
    font-size: 1.85rem;
    text-align: center;
  }
  .banner-subtext {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
  }
  .banner-btn {
    display: inline-block;
    /* margin-left: 125px; */
  }
  .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
}


/* About Section */
.about-section {
  background: #f3f3f3;
  padding: 4rem 2rem;
  text-align: center;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-content p {
  color: #555;
  max-width: 600px;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
}
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.about-image img {
  width: 100%;
  max-height:300px;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
}
.about-hero {
  background: url('assets/about-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}
.about-hero .overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  text-align: center;
}
.what-we-do {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
  line-height: 2;
  font-size: 1.1rem;
}
.why-choose {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.point h4 {
  margin-bottom: 0.5rem;
  color: #007bff;
}


@media (max-width: 768px) {
  .header img {
  height: 45px;
}

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }
}


/* Buttons */
.msg-btn {
  background: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.msg-btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.portfolio-item {
  transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.portfolio-item img {
  width: 100%;
  border-radius: 5px;
}
.explore-more {
  margin-top: 2rem;
}
.explore-more a {
  color: #007bff;
  text-decoration: underline;
}
.portfolio-hero {
  background: url('assets/about-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}
.portfolio-hero .overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  text-align: center;
}
/* Our Plans Section */
#plans {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}
.container {
  max-width: 1000px;
  margin: auto;
}
#plans h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}
.subtitle {
  color: #666;
  margin-bottom: 40px;
}
.plans-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.plans-card {
  background: #fff;
  padding: 30px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s forwards;
  opacity: 0;
  transform: translateY(30px);
}
.plans-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.plans-card h3 {
  margin-top: 0;
  color: #0a66c2;
}
.plans-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #333;
  text-align: left;
}
.offer {
  margin-top: 40px;
  color: #888;
  font-style: italic;
}

.plans-hero {
  background: url('assets/about-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}
.plans-hero .overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  text-align: center;
}

/* Contact us */

.contact-hero {
  background: url('assets/contact-banner.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}
.contact-hero .overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  text-align: center;
}


/* Footer Styles */

.site-footer {
  background-color: #54A847;
  color: #fff;
  /* padding: 60px 20px 30px; */
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  border-top: 0px dotted #000;
  border-bottom: 0px dotted #000;
  padding: 40px 20px;
  position: relative;
  /* margin-bottom: 40px; */
}
.footer-top > div {
  flex: 1;
  padding: 0 20px;
  position: relative;
}


.footer-logo img {
  width: 250px;
  margin-bottom: 10px;
}

.footer-logo .tagline {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.social-icons a {
  /* margin-right: 12px; */
  font-size: 1.2rem;
  color: #0a66c2;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #52a83b;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #0a66c2;
  font-weight: 500px;
}

.footer-contact p {
  margin-bottom: 8px;
  color: #fff;
}

.footer-contact i {
  margin-right: 10px;
  color: #0a66c2;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
  color: #fff;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    /* align-items: center; */
    text-align: center;
    margin-bottom: -20px; 
    gap: 0;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
  }
}
/* Vertical dotted lines centered between items */

.footer-top > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top:0%;
  bottom: 0%;
  right: 0px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #000,
    #000 2px,
    transparent 2px,
    transparent 4px
  );
  opacity: 0.5;
}


@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-top > div {
    border-bottom: 1px dotted #000;
    padding: 20px 0;
  }

  .footer-top > div::after {
    display: none;
  }

  .footer-top > div:last-child {
    border-bottom: none;
  }
}

/* back to top button */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border: 1.5px solid #333;
  background: transparent;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background-color:#0a66c2;
  color: white;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .banner-content h1 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
  .banner {
  z-index: 1;
  position: relative;
}
}
/* hide hamburger on desktop */

@media (min-width: 768px) {
  .menu-toggle {
    display: none !important;
  }
}

/* Show hamburger only on mobile */

  @media (max-width: 767px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    z-index: 999;
    right: 0.5rem;
    position: relative;
    /* background: #fff; ✅ ADD THIS */
    padding: 0.5rem;   /* ✅ Optional for better visibility */
    border-radius: 6px;
  }

  .social-links img:hover {
    transform: scale(1.3);
  }
  .nav {
    transition: max-height 0.3s ease;
    overflow: hidden;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
  }

  .nav.active {
    display: block;
  }

  .nav-links {
    display: flex; /* <-- Add this */
    flex-direction: column;
    padding: 1rem;
  }

  .nav-links li {
    padding: 0.5rem 0;
    text-align: left;
  }

  .nav-links a {
    color: #000 !important; /* Make sure links are visible */
  }
  .cursor-dot{
      display: none;
  }
}



/* Slide down animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* NEW portfoilo section */

      * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Helvetica Neue', sans-serif;
    }
    .works-container {
      /* background-color: #000; */
      background-image: url("../assets/about-banner.jpg"); /* change path */
      background-size: cover;        /* make image fill the section */
      background-position: center;   /* keep it centered */
      background-attachment: fixed;  /* makes it fixed during scroll */
      background-repeat: no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: nowrap;
      padding: 20px;
    }

    .poster {
      width: 200px;
      height: 250px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
      background-size: cover;
      background-position: center;
      border-radius: 8px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-mockup {
      position: relative;
      width: 330px;
      height: 660px;
      background: url('assets/mobile-mockup-bg-white.png') no-repeat center/contain;
      display: flex;
      align-items: center;
      justify-content: left;
    }

    .mockup-content {
      position: absolute;
      /* background-color: #fff; */
      bottom: 30px;
      left: 1.5%;
      width: 320px;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      /* align-items: center;
      text-align: center; */
      align-items: flex-start;     /* <-- align content to left */
      text-align: left;
    }

    .mockup-content img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 100px;
    }

    .mockup-content h2 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 6px;
      text-align: left;
    }

    .mockup-content .dsc {
      font-size: 0.7rem;
      color: #666;
      margin-bottom: 20px;
      text-align: left;
    }

    .content-top {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
    .explore-btn {
      margin-top: auto;
      margin-left: 75px;
      padding: 10px 40px;
      background-color: #0077cc;
      color: #fff;
      border-radius: 24px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .explore-btn:hover {
      background-color: #007bff;
    }

    /* mobile size */

    @media (max-width: 768px) {
      .container {
        flex-wrap: nowrap;
        gap: 5px !important;
      }

      .poster {
        width:220px;
        height: 100px;
        border-radius: 4px;
      }

      .works-container{
          gap: 5px;
      }

      .mobile-mockup {
        width: 500px;
        height: 600px;
      }

      .mockup-content {
        bottom: 130px;
        width: 185px;
        position: absolute;
        display: flex;
        padding: 0 12px;
        font-size: 0.6rem;
      }

      .mockup-content img {
        margin-bottom: 20px;
      }

      .explore-btn {
        padding: 8px 5px;
        margin-top: auto;
        background-color: #0077cc;
        color: #fff;
        text-decoration: none;
        font-size: 0.8rem;
        transition: background-color 0.3s ease;
        align-items: center;
        margin-left: 20px;
        }
    }

/* Header dropdown list */

.dropdown-content {
  position: absolute;
  top: 40px;
  margin: 0;
  padding: 10px 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 6px;
  width: 250px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  list-style: none;
}

.show-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100px;
}

.dropdown-content li a {
  display: block;
  padding: 8px 16px;
  color: #000;
  transition: background 0.3s;
  border: 0;
  text-decoration: none;
}

.dropdown-content li a:hover {
  background: rgb(156, 156, 156);
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {


  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .submenu:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}
.sub-dropdown {
  position: absolute;
  top: 110px;
  left: 100%;
  background: #fff;
  padding: 10px 0;
  width: 180px;
  box-sizing: border-box;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.show-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* services page */
/* 
    .services-section {
      padding: 4rem 2rem;
      text-align: center;
    }

    .services-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #0077cc;
    }

    .services-section p.subtitle {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 3rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .service-card {
      background-color: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card img {
      width: 48px;
      margin-bottom: 1rem;
    }

    .service-card h4 {
      margin-bottom: 0.5rem;
      color: #333;
    }

    .service-card p {
      font-size: 0.9rem;
      color: #555;
    }

    @media (max-width: 768px) {
      .services-section h2 {
        font-size: 2rem;
      }

      .services-section p.subtitle {
        font-size: 1rem;
      }
    } */


/* Following Dot Cursor  (cursor animation) */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #00BFFF 0%, #007BFF 60%, transparent 100%);
  box-shadow: 
    0 0 8px rgba(0, 191, 255, 0.8),
    0 0 20px rgba(0, 123, 255, 0.6),
    0 0 40px rgba(0, 123, 255, 0.4);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease, transform 0.1s ease;
}

.cursor-dot.services-glow {
  background: radial-gradient(circle, #52a83b 0%, #3c7f27 60%, transparent 100%);
  box-shadow: 
    0 0 8px rgba(82, 168, 59, 0.9),
    0 0 20px rgba(82, 168, 59, 0.6),
    0 0 40px rgba(82, 168, 59, 0.4);
}

/* Enquire form  */

.contact-section {
  position: relative;
  background-image: url('assets/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.contact-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  color: #fff;
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
  color: #cccccc;
  opacity: 1; 
}



.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: transparent;
  border: 1px solid #00aaff;
  color: #fff;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form-container button {
  background: #00aaff;
  border: none;
  color: #fff;
  padding: 12px 30px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  font-size: 1rem;
}

.contact-form-container button:hover {
  background: #0088cc;
}

/* Social media new style */
.wrapper {
  display: inline-flex;
  list-style: none;
  height: 120px;
  width: 100%;
  padding-top: 40px;
  font-family: "Poppins", sans-serif;
  justify-content: center;
}

.wrapper .icon {
  position: relative;
  background: #fff;
  border-radius: 50%;
  margin: 10px;
  /* margin-left: 100px; */
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #fff;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #fff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #fff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #fff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #fff;
}

/* Explre buttton */

.cta {
  display: flex;
  padding: 11px 33px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  background: #6225e6;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
  border: none;
  cursor: pointer;
  margin-left: 110px;
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #fbc638;
}

.cta .second {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover .second {
  transition: 0.5s;
  margin-right: 45px;
}

.span {
  transform: skewX(15deg);
}

.second {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 12%;
}

.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

    @media (max-width: 768px) {
        .cta{
            margin-left: 60px;
        }
    }

@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #fbc638;
  }

  100% {
    fill: white;
  }
}

/* services-carousel */
/* 
.services-carousel {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #f0f4ff;
}

.carousel-track {
  display: flex;
  width: 300%;
  animation: slideBanner 12s ease-in-out infinite;
}

.carousel-slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.carousel-slide h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.carousel-slide p {
  font-size: 1.2rem;
  max-width: 600px;
} */

.explore-btn {
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #0066ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #004ecc;
}

/* Animation */
@keyframes slideBanner {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100vw); }
  66% { transform: translateX(-200vw); }
  100% { transform: translateX(0); }
}

.box {
  width: 200px;
  height: 250px;
  perspective: 1000px;
  margin: 20px;
}

.offer-banner {
  overflow: hidden;
  white-space: nowrap;
}

.offer-text {
  display: inline-block;
  animation: scrollLeft 10s linear infinite;
  font-weight: bold;
  font-size: 1.1rem;
  color: red;
}

@keyframes scrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
