/* Navbar Style Begin */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
/* Scroll Bar Begin */
.scrollbar {
  height: 100%;
}

*::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

*::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
  background-color: #000000;
}
/* Scroll Bar End */

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #252a32;
  background: #ffffff;
}

.hidden {
  display: none;
}

.navbar {
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-basis: auto;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  width: 100%;
  padding: 1rem 4rem;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 1000; /* Ensure it stays above other content */
  background-color: #fff;
}

.scrolled {
  background-color: #ffffff7d;
}

.navlogo {
  height: 50px;
}

.navbar .menu {
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-basis: auto;
  justify-content: center;
  align-items: center;
}
.navbar .menu-item:not(:first-child) {
  margin-left: 1.2rem;
}
.navbar .menu-item a {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: inherit;
  color: #252a32;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
    margin: 0 auto;
  }
  .navbar .wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: #f1f5f8;
    transition: all 0.3s ease;
    pointer-events: none; /* ✅ Add this line */
  }
  .navbar .wrapper .menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
  }
  .navbar .wrapper .menu-item {
    padding-bottom: 1rem;
    width: 100%;
    /* text-align: left; */
  }
  .navbar .wrapper .menu-item:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .navbar .wrapper .menu-item:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .navbar .wrapper .menu-item:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .navbar .wrapper .menu-item:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .navbar .wrapper .menu-item:nth-child(5) a {
    transition-delay: 0.6s;
  }
  .navbar .wrapper .menu-item:nth-child(6) a {
    transition-delay: 0.7s;
  }
  .navbar .wrapper .menu-item:nth-child(7) a {
    transition-delay: 0.8s;
  }
  .navbar .wrapper .menu-item:nth-child(8) a {
    transition-delay: 0.9s;
  }
  .navbar .wrapper .menu-item:nth-child(9) a {
    transition-delay: 1s;
  }
  .navbar .wrapper .menu-item:not(:first-child) {
    margin-left: 0;
  }
  .navbar .wrapper .menu-item a {
    padding: 1rem 2rem;
    opacity: 0;
    color: #252a32;
    font-size: 1rem;
    font-weight: 600;
    transform: translateX(-20px);
    transition: all 0.3s ease-in-out;
  }
  .navbar .nav-toggle {
    display: block;
    position: fixed;
    right: 1rem;
    top: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    z-index: 999;
    background-color: white;
    border-radius: 50px;
  }
  .navbar .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #252a32;
    border-radius: 2px;
    margin-left: 11px;
  }

  .navbar .nav-toggle span:nth-child(1) {
    margin-top: 13px;
  }
  .navbar .nav-toggle span:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .navbar .nav-toggle span:nth-child(3) {
    margin-top: 4px;
  }
  .navbar #nav:checked + .nav-toggle {
    transform: rotate(45deg);
  }
  .navbar #nav:checked + .nav-toggle span {
    background: #252a32;
    transition: transform 0.5s ease;
  }
  .navbar #nav:checked + .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(180deg);
  }
  .navbar #nav:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navbar #nav:checked + .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(90deg);
  }
  .navbar #nav:checked ~ .wrapper {
    z-index: 99;
    opacity: 1;
    pointer-events: all;
  }
  .navbar #nav:checked ~ .wrapper .menu-item a {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navbar Style End */
/* a */
/* a */
/* a */
/* a */

/* . */
/* . */
/* . */
/* . */
/* . */
/* Hero Slider */

.slides {
  display: block;
  position: relative;
  height: 90vh;
  margin: 0;
  margin-top: 10vh;
  padding: 0;
  overflow: hidden;
  list-style: none;

  background-image: url("./assets/hero.jpg"); /* Replace with your actual image path */
  background-size: cover; /* Ensures the image covers the entire area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents tiling */
}

.herotext {
  background: white;
  padding: 40px;
  padding-right: 80px;

  /* text-align: center; */
  position: relative;
  font-family: "Georgia", serif;
  color: #5800a2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 60px auto;
  /* border-radius: 8px; */
  z-index: 2;
  position: absolute;
  left: 10%;
  top: 30%;
}

.hero-logo {
  width: 200px;
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%) rotate(-20deg);
  z-index: 3;
}

.Hero-Main-Text {
  font-family: "Old Standard TT", serif;

  font-size: 4rem;
  margin-top: 20px;
  /* font-weight: bold; */
  color: #5800a2;
}

.Hero-Secondary-Text {
  font-size: 1rem;
  color: #333;
  margin: 20px 0;
  font-weight: 500;
  font-family: "Poppins";
}

.hero-button {
  background-color: #5800a2;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.5rem;
  cursor: pointer;
  /* border-radius: 6px; */
  margin-top: 10px;
  transition: background-color 0.3s ease;
  position: absolute;
  right: 10%;
}

.hero-button:hover {
  background-color: #4b2273;
}

.herosocials {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #5800a2;
  padding: 10px 5px;
  border-radius: 10px 0px 0px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.herosocials a {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.fa-facebook-f:hover {
  color: #1877f2;
  transform: scale(1.2);
}
.fa-youtube:hover {
  color: #ff0033;
  transform: scale(1.2);
}
.fa-instagram:hover {
  color: #ff3040;
  transform: scale(1.2);
}
.fa-whatsapp:hover {
  color: #25d366;
  transform: scale(1.2);
}

/* Hero Slider */
/* . */
/* . */
/* . */
/* . */
/* . */

/* . */
/* . */
/* . */
/* . */
/* . */
/* . */
/* Footer Section Begin */

.footer-container {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style: none;
}
.footer {
  background-color: #4b2273;
  padding: 30px 0px;
  text-align: center;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/* Footer Section End */
/* . */
/* . */
/* . */
/* . */
/* . */
/* . */
/* . */
/* . */
.about {
  background-color: #fff;
  margin: 20vh 0px;
  padding: 0px 15vw;
  text-align: center;
}

#upButton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #1d1d1f;
  color: white;
  cursor: pointer;
  padding: 9px 12px 9px 12px;
  /* border-radius: 50%; */
  font-size: 18px;
  transition: background-color 0.3s;
}

#upButton:hover {
  background-color: #333;
}
.headingFont {
  font-family: "Old Standard TT", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10vh;
}
.poppins {
  font-family: "Poppins";
}
.para {
  font-size: 1.3rem;
  padding-top: 20px;
  font-weight: 300;
}

.parallax {
  background-image: url("./assets/parallax.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 
.
.
.
.
.
.
*/
/* About Section Begin  */
.about-section {
  background-color: #fff;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  text-align: center;
}

.about-box {
  flex: 1 1 300px;
  padding: 40px 20px;
  position: relative;
}

.about-box h3 {
  font-size: 1.25rem;
  color: #5800a2;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.about-box p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* SHAPE STYLES */
.about-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 30%;
  transform: translateX(-50%);
  opacity: 0.05;
  z-index: 1;
}

/* Square with Image */
.about-box.ads::before {
  width: 120px;
  height: 120px;
  background-image: url("./assets/icons/ads.png"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the square */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents repeating the image */
}

/* Circle with Image */
.about-box.camera::before {
  width: 120px;
  height: 120px;
  background-image: url("./assets/icons/camera.png"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the circle */
  background-position: center;
  background-repeat: no-repeat;
}
.about-box.content-strategy::before {
  width: 120px;
  height: 120px;
  background-image: url("./assets/icons/content-strategy.png"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the circle */
  background-position: center;
  background-repeat: no-repeat;
}
.about-box.curve::before {
  width: 120px;
  height: 120px;
  background-image: url("./assets/icons/curve.png"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the circle */
  background-position: center;
  background-repeat: no-repeat;
}
.about-box.design::before {
  width: 120px;
  height: 120px;
  background-image: url("./assets/icons/design.png"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the circle */
  background-position: center;
  background-repeat: no-repeat;
}
.about-box.marketing::before {
  width: 120px;
  height: 120px;
  background-image: url("./assets/icons/marketing.png"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the circle */
  background-position: center;
  background-repeat: no-repeat;
}

/* About Section End  */
/* 
.
.
.
.
.
.
*/
/* Our Team Section Begin  */
.portfolio-section {
  background-color: #e8eff1;
  padding: 60px 20px;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.portfolio-container {
  display: flex;
  justify-content: center;
  column-gap: 50px;
  row-gap: 80px;
  flex-wrap: wrap;
  /* max-width: 1084px; */
  margin: 0 auto;
}

.portfolio-box {
  width: 250px;
}

.img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.3;
  overflow: hidden;
  padding-top: 10px;
}

.smallertext {
  font-size: 1.5rem;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%); */
  display: block;
  object-position: top; /* <-- this ensures top is prioritized */
}

/* Green corner borders */
.img-wrapper::before,
.img-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 8px solid transparent;
  pointer-events: none;
}

.img-wrapper::before {
  border-left-color: #5900a200;
  border-top-color: #ffffff00;
  top: 10px;
  left: 0;
  z-index: 100;
}

.img-wrapper::after {
  border-right-color: #00e67700;
  border-bottom-color: #5900a200;
  bottom: 0;
  right: 0;
}

.portfolio-box h4 {
  margin-top: 15px;
  font-size: 1rem;
  color: #111;
}

.portfolio-box p {
  font-size: 0.9rem;
  color: #555;
}

/* Our Team Section ENd  */
/* 
.
.
.
.
.
.
*/
/* Partners Section ENd  */
.partners-section {
  background-color: #fff; /* match background */
  padding: 60px 20px;
  text-align: center;
}

.partners-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 40px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-logos img {
  max-height: 100px;
  max-width: 120px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 1;
  /* transition: opacity 0.3s ease; */
}

.partners-logos img:hover {
  opacity: 1;
}

/* Partners Section ENd  */
/* 
.
.
.
.
.
.
*/
/* Connect with us  Section begin  */
.connect-section {
  background-color: #e8eff1;
  padding: 40px 20px;
}

.connect-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.connect-left {
  flex: 1 1 50%;
}

.connect-left h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 0px;
}

.connect-left p {
  font-size: 1rem;
  color: #555;
}

.connect-right {
  flex: 1 1 30%;
  text-align: left;
}
.marginbottom80px {
  margin-bottom: 40px;
}
.connect-right p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
}

.fa-map-pin {
  margin-right: 8px;
}

.marginleft10px {
  margin-left: 20px;
}
/* Connect with us  Section ENd  */
/* 
.
.
.
.
.
.
*/

/* new footer   Section begin  */
.footer-text {
  color: #fff;
  font-size: 1rem;
}
/* new footer  Section ENd  */
/* 
.
.
.
.
.
.
*/

@media only screen and (max-width: 768px) {
  .herotext {
    max-width: 330px;
    padding-right: 0px;
    padding: 30px;
  }
  .Hero-Main-Text {
    font-size: 2.6rem;
  }
  .hero-button {
    font-size: 1.2rem;
  }
  .headingFont {
    margin-bottom: 0vh;
  }
  .about {
    margin: 12vh 0px;
  }
  .hero-logo {
    width: 150px;
    top: -101px;
  }
}

/* SVG CSS BEGIN */
.SVGDiv {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  pointer-events: none; /* Optional */
}

.plusSVGlightpurple {
  width: 3vw;
  animation: rotateleftInfinite 8s linear infinite;
}

.blog {
  margin-top: 30px;
}

.blog1img {
  width: 40vw;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.blogimg {
  width: 20vw;
  height: auto;
  display: block;
  /* margin-left: auto; */
  /* margin-right: auto; */
  margin-bottom: 2rem;
}

.blogheading {
  text-align: left;
  margin-bottom: 1rem;
}

@keyframes rotateleftInfinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.plusSVGpurple {
  width: 5vw;
  animation: rotaterightInfinite 6s linear infinite;
  margin-left: 2vw;
}
@keyframes rotaterightInfinite {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.SVGcontainer {
  position: relative; /* Important: this anchors the absolute child */
}

@media only screen and (max-width: 768px) {
  .plusSVGpurple {
    width: 10vw;
  }
  .plusSVGlightpurple {
    width: 7vw;
  }

  .blog1img {
    width: 70vw;
  }
  .blogheading {
    font-size: 2rem;
  }
  .blogimg {
    width: 80vw;
  }
}
/* SVG CSS END */
