@font-face{
  font-family: 'organetto-ultrabold';
  src: url(Fonts/Organetto-Sans-Font-Family/Demo_Fonts/Fontspring-DEMO-organetto-extbold.otf);
}

@font-face {
  font-family: 'Montserrat';
  src: url(Fonts/Montserrat/static/Montserrat-Medium.ttf);
}

@font-face {
  font-family: 'Montserrat regular';
  src: url(Fonts/Montserrat/static/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'Poppins-bold';
  src: url(Fonts/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: 'inter-bold';
  src: url(Fonts/Inter/static/Inter_18pt-SemiBold.ttf);
}

@font-face {
  font-family: 'inter';
  src: url(Fonts/Inter/static/Inter_28pt-Light.ttf);
}


html {
  scroll-behavior: smooth;
}

body{
  padding: 0px;
  margin: 0px;
  background-color: #0F0F0F;
}

.home{
  width: 100%;
  height: 100vh;
  margin: 0px 0px;
  padding: 0px 0px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.background-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.navbar {
  width: 100%;
  height: 3.125rem;
  position: absolute;
  top: 1.625rem;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  padding-left: 1.875rem;
  height: 2.5rem;
  object-fit: contain;
}


.menus ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  column-gap: 1.9375rem;
  margin-right: 1.875rem;
  font-family: 'inter-bold';
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.menus ul li {
  cursor: pointer;
}

.menus ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.menus ul li a:hover {
  color: #a431eccb;
}


.content {
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  justify-content: center;
  justify-items: center;
  transform: translate(-50%, -50%);
}

.content h2{
  position: relative;
  font-family: 'Montserrat';
  font-size: 6rem;
  letter-spacing: 3px;
  line-height: 3.75rem;
  font-weight: 900;
  text-align: center;
  color: white;
  width: 100%;
}

.content h2 span{
  background: #a431ec;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.text-mask {
  display: inline-block;
  position: relative;
  width: 500px;
  height: 75px;
  overflow: hidden;
}
  
#dynamic-text {
  display: inline-block;
  position: relative;
  font-family: 'Montserrat';
  font-size: 6rem;
  letter-spacing: 1px;
  line-height: 5rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content p{
  text-align: center;
  color: whitesmoke;
}

#headline{
  width: 100%;
  font-family: 'inter';
  font-size: 4rem;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 2px;
  margin: 20px 0px 20px 0px;
}

#fadein {
  width: 64%;
  font-family: 'inter';
  font-size: 1.8rem;
  line-height: 40px;
  letter-spacing: 1px;
  padding: 10px 0px 10px 0px;
}

.content .btn {
  display: flex;
  position: relative;
  width: 160px;
  height: 50px;
  border-radius: 50px;
  margin: 20px 0px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat';
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  background: #a431eccb;
  color: rgba(245, 245, 245, 0.788);
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: 0.3s;
  transition: box-shadow 0.3s ease;
}
  
.content .btn a {
  text-decoration: none;
  color: white;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.content .btn:hover {
  box-shadow: 0 0 15px 4px rgba(165, 49, 236, 0.5);
  color: #ffffff;
  border: 2px solid white;
}
 
.client {
  width: 100%;
  overflow: hidden;
}
  
.slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  margin: 40px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 30px; 
  padding-left: 10px; 
}

.slider::-webkit-scrollbar {
  display: none; 
}

.slide {
  flex-shrink: 0;
  width: 350px; 
}

.client-box {
  background: black;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  height: 150px;
  width: 100%;
  color: white;
  gap: 10px;
}

.image {
  width: 120px;
  height: 100%;
  flex-shrink: 0;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.client-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-info h4 {
  margin: 5px 5px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  font-family: 'inter-bold';
  font-weight: 600;
  margin-bottom: 10px;
}

.client-info p {
  margin: 0px 5px;
  font-size: 13px;
  color: white;
  font-family: 'inter';
  letter-spacing: 1px;
  line-height: 1.3;
}

.results {
  text-align: center;
  padding: 50px 20px;
  color: white;
}

.results h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Poppins-bold';
}

/* Wrapper */
.result-wrapper {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-wrapper h2 {
  font-size: 2.25rem;
  color: white;
  font-family: 'inter-bold';
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
}

/* Upper 60% Image Section */
.images {
  flex: 6;
  display: flex;
  gap: 15px;
}

.images img:first-child {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  background-color: #1a1a1a;
}

/* Bottom 40% Text Section */
.texts {
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.before-section,
.after-section {
  min-width: 280px;
  background-color: #121212;
  padding: 10px 20px;
}

strong {
  font-size: 1.2rem;
  color: white;
  font-family: 'inter-bold';
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1px;
}

.result-wrapper img{
  height: 600px;
}

.result-wrapper p{
  font-family: 'inter';
  font-size: 1.2rem;
  color: white;
  text-align: left;
  opacity: 0.8;
  line-height: 1.5;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .images {
    flex-direction: column;
  }

  .images img {
    width: 100%;
  }

  .texts {
    flex-direction: column;
  }
}


.whatwedo {
  padding: 100px 100px;
  text-align: center;
  background-color: #fdf5e6; 
  background-image: url('https://www.transparenttextures.com/patterns/cream-pixels.png'); /* Textured overlay */
  background-repeat: repeat;
  background-size: 200px;
}
  
.whatwedo h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins-bold';
  color: black;
  font-size: 3rem;
  text-align: center;
}

.whatwedo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; 
}
  
.service-box {
  width: 50%;
  background-color: rgb(40, 39, 39);
  border-radius: 12px;
  margin: 20px;
  padding: 50px ;
  box-shadow:  0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid #a431eccb;
  box-shadow: 0 2px 6px rgba(77, 74, 74, 0.5);
  transition: background-color 0.3s ease;
}

.service-box:hover .icon-circle {
  background-color: #ffffff20;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1); 
}
  
.service-box h3 {
  font-size: 1.5rem;
  color: white;
  font-family: 'inter-bold';
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
  
.service-box p {
  font-family: 'inter';
  font-size: 1rem;
  color: white;
  opacity: 0.8;
  line-height: 1.6;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: scale(1.05);
}
  
/* Responsive */
@media screen and (max-width: 768px) {
  .whatwedo-wrapper {
     flex-direction: column;
   }
  .right {
     grid-template-columns: 1fr;
   }
}

.wrapper {
  width: 56%;
  display: flex;
  justify-content: center;
  margin: 60px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapper:hover {
  transform: scale(1.05);
}

.bullet-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgb(40, 39, 39);
  box-shadow:  0 4px 12px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 20px 10px;
}

.bullet-item::before {
  content: "•";
  color: white;
  margin-right: 10px;
  font-size: 0.96rem;
  display: inline-block;
  transform: translateY(1px);
}

.bullet-item {
  display: inline-flex;
  text-align: center;
  font-size: 1.2rem;
  color: white;
  font-family: 'inter-bold';
  letter-spacing: 1px;
  margin: 10px 7px;
}

.portfolio {
  max-width: 100vw;
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-header h2 {
  font-family: 'Poppins-bold';
  color: white;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 1px;
}

.portfolio-header p {
  display: inline-block;
  background: #a431eccb;
  color: white;
  font-family: 'inter-bold';
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
  cursor: pointer;
  margin: 10px;
  padding: 6px 12px;
  border-radius: 999px;
}

.media-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.video-container video,
.image-container img {
  height: 450px;
  display: block;
  border-radius: 8px;
  background: black;
  object-fit: contain;
}

.video-container video {
  width: calc(450px * 9 / 16); 
}

.image-container img {
  width: calc(250px * 16 / 9); 
}

/* Optional hover effect 
.video-container video:hover,
.image-container img:hover {
  transform: scale(1.05);
  box-shadow:
    0 25px 30px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(255, 85, 0, 0.9);
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}    */

/* Responsive */
@media (max-width: 1440px) {
  .media-wrapper {
    gap: 15px;
    flex-wrap: wrap;
  }

  .video-container video,
  .image-container img {
    height: 300px;
  }

  .video-container video {
    width: calc(300px * 9 / 16);
  }

  .image-container img {
    width: calc(250px * 16 / 9);
  }
}

@media (max-width: 768px) {
  .media-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video-container video,
  .image-container img {
    width: 90vw;
    height: auto;
  }
}

.testimonial {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: url(Background.png), linear-gradient(135deg, #0a0a0a, #1a1a1a);
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.testimonial h1 {
  font-family: 'Poppins-bold';
  color: white;
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 1px;
}

.testimonial p {
  display: inline-block; 
  background: #a431eccb;
  color: white;
  font-family: 'inter-bold';
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1px;
  cursor: pointer;
  margin: 0px;
  padding: 6px 12px; 
  border-radius: 999px; 
}

.swiper-slide {
  height: 400px;
  max-height: 100%;
  box-sizing: border-box;
  margin: 40px 0px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 280px;
}

/* Neon glow on active slide */
.swiper-slide-active {
  z-index: 10;
}

.creator-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #a431eccb;
  margin-bottom: 12px;
  object-fit: cover;
  box-shadow: 0 0 10px #a431eccb;
}

.creator-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}

.creator-name {
  color: white;
  font-family: 'inter-bold';
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  margin: 10px;
}

.testimonial-text {
  font-family: 'Montserrat regular';
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: #ddd;
  margin-top: auto;
  position: relative;
}

.faq-section {
  width: 80%;
  margin: 100px auto;
  background-color: #fdf5e6; 
  background-image: url('https://www.transparenttextures.com/patterns/cream-pixels.png'); /* Textured overlay */
  background-repeat: repeat;
  background-size: 200px;
  padding: 10px 40px 40px 40px;
  border-radius: 20px;
  color: black;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
  
.faq-section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins-bold';
  color: black;
  font-size: 3rem;
  text-align: center;
  }
  
.faq-container {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #333;
}
  
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #333;
  cursor: pointer;
}
  
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  font-family: 'inter-bold';
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-question p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  flex: 1;
  margin-left: 20px; 
}
  
.faq-question .icon {
  font-size: 1.5rem;
  color: #a431eccb;
  transition: transform 0.3s ease;
  margin-left: 20px; 
}
  

.faq-answer {
  margin-left: 60px;
  margin-top: 10px;
  display: none;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 1px;
  color: black;
}
  
/* Active state */
.faq-item.active .faq-answer {
  display: block;
}
  
.faq-item.active .icon {
  transform: rotate(45deg); 
}

.cta::before{
  content: '';
  width: 1200px;
  height: 900px;
  background: radial-gradient(41.76% 41.76% at 50% 50%, #a431eccb 0%, rgba(255, 85, 0, 0) 100%);
  opacity: 0.7;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 1600%;
  left: -15%;
  filter: blur(15px);
  z-index: -1;
}

.cta {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  color: #fff;
  text-align: center;
  padding: 100px;
}

  
.cta-line {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
  
.cta-line h1 {
  font-family: 'Montserrat';
  letter-spacing: 5px;
  font-weight: 1000;
  font-size: 5rem;
  margin: 0px;
  line-height: 1;
}
  
.cta-line span {
  background: #a431ec;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Montserrat';
  letter-spacing: 5px;
  line-height: 1;
  font-size: 5rem;
  font-weight: 1000;
}

.cta-btn {
  align-items: center;
  text-align: center;
}
  
.cta-btn h6 {
  font-size: 2rem;
  font-weight: 500;
  color: #bbbbbb;
  margin-bottom: 20px;
}
  
.cta-btn button {
  padding: 14px 28px;
  background: #a431eccb;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(165, 49, 236, 0.5);
}

.cta-btn button a {
  text-decoration: none;
  color: white;
}
  
.cta-btn button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(165, 49, 236, 0.5);
}
  
/* Responsive */
@media (max-width: 768px) {
  .cta {
    flex-direction: column;
    height: auto;
    text-align: center;
  }
  .cta-line h1 {
    font-size: 2rem;
  }
}

/* Overall Footer Layout */
.footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #5e5c5c;
}

.footer-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 30px;
}

.social-footer {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  gap: 80px;
  background-color: transparent;
}

.social-footer .icon {
  color: #ffffff;
  font-size: 5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-footer .icon:hover {
  transform: translateY(-4px);
}

.icon.insta:hover {
  color: #e1306c;
  text-shadow: 0 0 8px rgba(225, 48, 108, 0.6);
}

.icon.twitter:hover {
  color: #1d9bf0;
  text-shadow: 0 0 8px rgba(29, 155, 240, 0.6);
}

.icon.linkedin:hover {
  color: #0077b5;
  text-shadow: 0 0 8px rgba(0, 119, 181, 0.6);
}

.icon.mail:hover {
  color: #f39c12;
  text-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
}

.footer-image {
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: block;
}

.footer-bottom-bar {
  width: 99%;
  background-color: rgba(255, 255, 255, 0.035);
  color: #aaa;
  font-size: 0.85rem;
  text-align: center;
  padding: 12px 10px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #222;
}

.footer-bottom-bar strong {
  color: #a431eccb;
}