* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'ITC Bauhaus', sans-serif;
  line-height: 1.6;
  color: #fff;
  /* background: linear-gradient(135deg, #000000, #106050); */
  /* background: linear-gradient(180deg, #0a1a2f 0%, #0f2e3d 80%); */
  /* background: linear-gradient(135deg, #0c353f, #0a0a0a); */
  /* background: linear-gradient(135deg, #07343f, #0a0a0a); */
  /* background: linear-gradient(135deg, #0B2237, #0a0a0a); */
  background: radial-gradient(circle, #190382, #000000);
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* background: linear-gradient(to bottom 180 deg, #0f2027, #203a43, #2c5364); */
  padding-top: 0;
}

.header-wrapper {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.segmented-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  width: 100%;
  z-index: 20;
  position: relative;
}

.material-symbols-outlined {
  font-size: 24px;
  vertical-align: middle;
}

.btn {
  background-color: #1800AD;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 80px;
  /* background: linear-gradient(135deg, #000000, #106050); */
  background: radial-gradient(circle, #190382, #000000);
  /* background: linear-gradient(to bottom, #06263c, #0f2e3d ); */
  /* background: linear-gradient(180deg, #0a1a2f 0%, #0f2e3d 80%); */
  /* background: radial-gradient(circle at center, #2e12d6 0%, #0a2544 80%); */
}

.nav-links {
  display: flex;
  gap: 20px;
  padding: 20px 80px;
  align-items: center;
}

.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(17, 17, 17, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  transition: right 0.4s ease-in-out;
  z-index: 999;
}

.mobile-menu a {
  font-size: 22px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu.open {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* @media (max-width: 1024px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    width: 100%;
    position: relative;
  }

  .nav-links {  
    display: none; 
    justify-content: space-between;
  }

  .menu-btn {
    display: block; 
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
  }
} */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: white;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: right 0.4s ease-in-out;
    z-index: 999;
  }

  .mobile-menu.open {
    right: 0;
  }

  .mobile-menu a {
    font-size: 22px;
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: white;
    cursor: pointer;
  }
}

.segmented-toggle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #1800AD;
  border-radius: 50px;
  display: flex;
  gap: 8px;
  padding: 4px;
  z-index: 10;
}

.segment {
  background: transparent;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.segment.active {
  background-color: white;
  color: #1800AD;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 30px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  padding: 30px;
  float: left;
  margin-right: 15px;
}

.logo-icon {
  font-weight: bold;
  font-size: larger;
}

.logo img {
  max-height: 100%;
  display: block;
  width: 100%;
  margin: 0 auto;
  max-height: 210px;
  cursor: pointer;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo a:hover img {
  opacity: 0.8;
}

.nav-links a {
  margin-left: 20px;
  font-weight: 600;
  color: white;
}

.nav-links .btn {
  background-color: #1800AD;
  gap: 8px;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Hero Section */
.hero {
  padding: 40px 60px;
  animation: animatedHeroGradient 15s ease infinite;
  color: #fff;
}

@keyframes animatedHeroGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  padding-right: 60px;
}

.hero-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 0;
  color: #fff;
}

.hero-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-style: italic;
  color: #ddd;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 20px;
}

#brands {
  display: none;
}

.hero-alt .hero-content {
  flex-direction: row-reverse;
}

.hero-alt .hero-text {
  padding-right: 20;
  padding-left: 0px;
}

@media (max-width: 992px) {
  .hero-text {
    padding-right: 30px;
  }
  .hero-text h2 {
    font-size: 32px;
  }
  .hero-text h3 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 16px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column; 
    text-align: center;
  }

  .hero-alt .hero-content {
    flex-direction: column-reverse; 
    text-align: center;
  }

  .hero-text {
    padding: 0;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text h3 {
    font-size: 20px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-img {
    margin-top: 20px;
  }

  .hero-img img {
    max-width: 90%;
  }
}


/*services section*/
#influencerServices,
#brandServices {
  transition: opacity 0.4s ease;
  text-align: center;
}
.slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-wrapper {
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  align-items: center;
}

.slider.carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 20px;
  justify-content: center;
  scroll-padding-inline: 20px;
  position: relative;
  align-items: center;
}

.slider.carousel::-webkit-scrollbar {
  display: none;
}

.card {
  position: absolute;
  width: 300px;
  height: 380px;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8) translateX(0%);
  transition: all 0.2s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card.prev {
  opacity: 0.9;
  transform: scale(0.95) translateX(-50%) translateZ(-1px);
  z-index: 1;
}

.card.next {
  opacity: 0.9;
  transform: scale(0.95) translateX(50%) translateZ(-1px);
  z-index: 1;
}

.card.active {
  opacity: 1;
  transform: scale(1) translateX(0) translateZ(0);
  z-index: 2;
}

.card-text {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 40%;
  margin-bottom: 0;
  box-sizing: border-box;
}

.card:first-child {
  margin-left: 0;
}

.card.active {
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin-bottom: 1px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 1px 0 2px;
  color: #111;
  text-align: center;
}

.card p {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  text-align: center;
  margin: 0 0 15px;
}

@media (min-width: 600px) and (max-width: 900px) {
  .card {
    width: 260px;
    height: 340px;
  }

  .card.prev {
    transform: scale(0.95) translateX(-40%);
  }

  .card.next {
    transform: scale(0.95) translateX(40%);
  }
}

@media (min-width: 901px) {
  .card {
    width: 300px;
    height: 380px;
  }

  .card.prev {
    transform: scale(0.95) translateX(-50%);
  }

  .card.next {
    transform: scale(0.95) translateX(50%);
  }
}


/*other popular services*/
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.features h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #00b894, #0984e3); */
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

#brandTopServices {
  padding: 80px 20px;
}

@media (max-width: 1024px) {
  .features h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .features-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 25px 18px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 40px 15px;
  }

  .features h2 {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 30px 10px;
  }

  .features h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .feature-card {
    padding: 18px 14px;
  }

  .feature-card h3 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 12px;
  }
}

/* ---------------- TESTIMONIALS SECTION---------------- */
.testimonial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
  padding: 60px 80px;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-left h5 {
  font-size: 15px;
  letter-spacing: 1px;
  color: #555;
}

.testimonial-left h2 {
  font-size: 36px;
  margin: 10px 0;
  line-height: 1.2;
  font-weight: bold;
}

.testimonial-left p {
  margin: 15px 0 30px;
  font-size: 17px;
  color: #fff;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.stat h3 {
  font-size: 28px;
  color: #fff;
  margin: 0;
}

.stat span {
  font-size: 14px;
  color: #979090;
}

.video-wrapper {
  position: relative;
  width: 500px;
  max-width: 100%;
  margin-top: 40px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* .image-wrapper {
  position: relative;
  width: 500px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
} */


.testimonial-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;        
  text-align: left; 
  gap: 20px;                 
}

.testimonial-left h2,
.testimonial-right .highlight-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 600px;  
  text-align: left;  
}

.testimonial-right .highlight-heading {
  margin-top: 45px; 
}

/* .highlight-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
} */

/* 
.highlight-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
} */

.highlight-heading a {
  text-decoration: none;
}

.highlight-heading span {
  color: #ccff00; 
  transition: color 0.3s;
}

.highlight-heading span:hover {
  color: #1800AD; 
}

.client-showcase {
  margin: 18px 0 10px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.showcase-card {
  background: linear-gradient(135deg, #1a1a4f, #2a1d7a);
  display: block;
  width: 250px;             
  /* background: #ffffff; */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), box-shadow 220ms;
  border: 1px solid rgba(15,23,42,0.04);
}

.showcase-image-wrap {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f6f7f9;
}

.showcase-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  transition: transform 420ms ease;
}

.showcase-meta {
  background: linear-gradient(135deg, #1a1a4f, #2a1d7a); /* darker tone of your background */
  border-radius: 12px;
  padding: 16px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-meta:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
.showcase-meta h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
}
.showcase-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: #55607a;
  line-height: 1.3;
}

.showcase-card:hover,
.showcase-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.showcase-card:hover .showcase-image-wrap img {
  transform: scale(1.06);
}

@media (max-width: 780px) {
  .showcase-card { width: 48%; }
}
@media (max-width: 420px) {
  .showcase-card { width: 100%; }
}

.video-wrapper iframe,
.video-wrapper .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 5;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}


@media (max-width: 1024px) {
  .testimonial-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 30px;
  }

  .testimonial-left {
    order: 1;
    text-align: center;
    align-items: center;
  }

  .testimonial-right {
    order: 2;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

  .testimonial-left h2,
  .testimonial-right .highlight-heading {
    font-size: 2rem;
    text-align: center;
    max-width: 100%;
  }

  .testimonial-left p {
    font-size: 15px;
  }

  .stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-right .video-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .client-showcase {
    justify-content: center;
  }
  .showcase-card {
    width: 45%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 30px 20px;
    gap: 30px;
  }

  .testimonial-left h2,
  .testimonial-right .highlight-heading {
    font-size: 1.8rem;
  }

  .testimonial-left p {
    font-size: 14px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .testimonial-right .video-wrapper {
    max-width: 100%;
  }

  .showcase-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 20px 15px;
  }

  .testimonial-left h2,
  .testimonial-right .highlight-heading {
    font-size: 1.5rem;
  }

  .testimonial-left p {
    font-size: 13px;
  }

  .stat h3 {
    font-size: 20px;
  }

  .stat span {
    font-size: 12px;
  }

  .showcase-card {
    width: 100%;
  }
}


/* FAQ's section */
.faq-section {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 100px;
  font-family: 'ITC Bauhaus', sans-serif;
  text-align: center;
}

.faq-heading {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-heading::after {
  display: none;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  padding: 18px 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 0 16px;
  font-size: 16px;
  color: #fff;
  text-align: left;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 20px 80px;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
    padding: 16px 0;
  }

  .faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 30px 15px 60px;
  }

  .faq-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 14px 0;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 20px 10px 50px;
  }

  .faq-heading {
    font-size: 20px;
  }

  .faq-question {
    font-size: 15px;
    padding: 12px 0;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-question::after {
    font-size: 18px;
  }
}

/*footer*/
.footer {
  background: #fff;
  padding: 50px 20px 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.footer-about,
.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.footer-about p {
  font-size: 14px;
  color: #111;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #111;
}

.footer a:active {
  text-decoration: underline;
}

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

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

.footer-links ul li a {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #1800AD;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer,
.footer p,
.footer a,
.footer h2,
.footer h3 {
  color: #111 !important;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #1800AD;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #111;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1800AD;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #111;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-about h2,
  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    font-size: 24px;
  }

  .footer-links ul li a {
    font-size: 15px;
  }

  .footer-about p,
  .footer-contact p,
  .footer-bottom {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-about,
  .footer-links,
  .footer-social,
  .footer-contact {
    flex: 1 1 100%;
    min-width: unset;
  }

  .footer-about h2,
  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    font-size: 22px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom {
    font-size: 13px;
    margin-top: 20px;
    padding-top: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-about h2,
  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    font-size: 20px;
  }

  .footer-about p,
  .footer-links ul li a,
  .footer-contact p {
    font-size: 13px;
  }

  .social-icons a {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 15px;
  }
}

/*scroll button*/
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #002c57;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 14px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #004080;
}


/*---------- COOKIE BANNER--------------*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  color: #111;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  animation: slideUp 0.5s ease;
}

.btn-primary {
  background-color: #1800AD;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* @media (max-width: 768px) {
  .faq-heading {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-about h2 {
    font-size: 22px;
  }

  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    font-size: 20px;
  }

  .social-icons {
    justify-content: center;
  }
} */

/* @media (max-width: 480px) {
  .faq-heading {
    font-size: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .footer-about h2 {
    font-size: 20px;
  }

  .footer-contact h3,
  .footer-links h3,
  .footer-social h3 {
    font-size: 18px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }
}  */

/* --- ABOUT PAGE --- */
.about-hero {
  /* background: linear-gradient(135deg, #1a1a2e, #16213e); */
  color: #fff;
  text-align: center;
  padding: 100px 20px 90px;
  margin-bottom: 0;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 10px auto;
}

.about-mission {
  margin-top: 0;
  padding: 80px 20px;
  padding-top: 20px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.about-col {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 40px 30px;
  text-align: center;
}

.about-col h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #fff;
}

.about-col p {
  font-size: 16px;
  line-height: 1.6;
  color: inherit;
}

.about-services,
.about-values {
  padding: 80px 10px;
  text-align: center;
}

.about-services h2,
.about-values h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-services h3,
.about-values h3 {
  font-size: 1.8rem;
  margin: 15px 0 10px;
  color: #111;
}

.about-services p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 40px;
}

.about-values p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 40px;
}

.about-services .service-grid,
.about-values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-card,
.value-card {
  background: #fff;
  color: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

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

.about-cta {
  background: linear-gradient(135deg, #5A00FF, #9D00FF);
  color: #fff;
  text-align: center;
  padding: 80px 10px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 12px;
}

.about-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.about-cta p {
  font-size: 1.2rem;
}

.about-cta h2 {
  margin-bottom: 15px;
}

.about-cta p {
  margin-bottom: 25px;
}

/*footer*/
.footer {
  background: #fff;
  padding: 50px 20px 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.footer-about,
.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.footer-about p {
  font-size: 14px;
  color: #111;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #111;
}

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

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

.footer-links ul li a {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #1800AD;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer,
.footer p,
.footer a,
.footer h2,
.footer h3 {
  color: #111;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #1800AD;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #111;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1800AD;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #111;
}


/* Responsive Footer */
/* @media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
} */

/* --- CONTACT PAGE --- */
.contact-hero {
  /* background: linear-gradient(135deg, #1a1a2e, #16213e); */
  color: #fff;
  text-align: center;
  padding: 80px 10px;
}

.contact-form-section {
  padding: 80px 20px;
  text-align: center;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm input,
#contactForm textarea {
  padding: 18px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #0a0a0a;
}

#contactForm button {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #5A00FF, #9D00FF);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  align-self: center;
}

#contactForm button:hover {
  opacity: 0.9;
}

.contact-info {
  padding: 30px 80px;
  text-align: center;
}

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

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.contact-info h2 {
  font-size: 2.5rem;
}

.contact-hero p {
  font-size: 1.9rem;
}

.info-card h3 {
  font-size: 1.6rem;
}

.info-card p {
  font-size: 1.5rem;
}

.contact-form-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
}

.info-card {
  background: #fff;
  color: #111;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.map iframe {
  width: 100%;
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 0;
}

.footer {
  background: #fff;
  padding: 50px 20px 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.footer-about,
.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.footer-about p {
  font-size: 14px;
  color: #111;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #111;
}

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

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

.footer-links ul li a {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #1800AD;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer,
.footer p,
.footer a,
.footer h2,
.footer h3 {
  color: #111 !important;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #1800AD;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #111;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1800AD;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #111;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
} 

/* --- PRIVACY POLICY PAGE --- */
.policy-hero {
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.policy-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #eee;
  line-height: 1.8;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #5b70f5;
}

.policy-content p {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #fff;
}

/*footer*/
.footer {
  background: #fff;
  padding: 50px 20px 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.footer-about,
.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.footer-about p {
  font-size: 14px;
  color: #111;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #111;
}

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

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

.footer-links ul li a {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #1800AD;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer,
.footer p,
.footer a,
.footer h2,
.footer h3 {
  color: #111 !important;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #1800AD;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #111;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1800AD;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #111;
}


/* Responsive Footer */
/* @media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
} */

/* --- TERMS & CONDITIONS ACCORDION --- */
.policy-hero {
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.policy-hero h1 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 3rem;
  color: #fff;
}

.policy-hero p {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 2rem;
  color: #fff;
}

.policy-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #eee;
  line-height: 1.8;
}

.policy-content .accordion {
  background-color: #111;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  margin-top: 12px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s;
  position: relative;
}

.policy-content .accordion:hover {
  background-color: #222;
}

.policy-content .accordion.active {
  background: linear-gradient(135deg, #5A00FF, #9D00FF);
}

.policy-content .accordion::after {
  content: "+";
  font-size: 1.2rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.policy-content .accordion.active::after {
  content: "-";
}

.policy-content .accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
  padding: 0 18px;
}

.policy-content .accordion-panel.open {
  padding: 15px 18px;
}

.policy-content .accordion-panel p,
.policy-content .accordion-panel ul {
  padding: 10px 0;
  margin: 0;
  color: #ddd;
}

.policy-content .accordion-panel ul li {
  margin-bottom: 10px;
  list-style: disc inside;
}

/*footer*/
.footer {
  background: #fff;
  padding: 50px 20px 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.footer-about,
.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.footer-about p {
  font-size: 14px;
  color: #111;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #111;
}

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

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

.footer-links ul li a {
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #1800AD;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer,
.footer p,
.footer a,
.footer h2,
.footer h3 {
  color: #111 !important;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #1800AD;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #111;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1800AD;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #111;
}


/* Responsive Footer */
/* @media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
} */

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #002c57;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
}

/* ---------- Responsive ---------- */
/* @media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .policy-hero h1 {
    font-size: 2rem;
  }

  .policy-hero p {
    font-size: 1rem;
  }
} */

/* --- SERVICES PAGE --- */
.services-hero {
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.services-grid {
  padding: 80px 20px;
  text-align: center;
}

.services-grid h2 {
  font-size: 3rem;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 2rem;
  margin-bottom: 20px;
}

.services-grid .grid h3 {
  font-size: 1.6rem;
}

.services-grid .grid p,
.services-cta p {
  font-size: 1.2rem;
}

.services-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.services-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  color: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: #111;
}

.hover-animate:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(90, 0, 255, 0.6);
}

.services-cta {
  background: linear-gradient(135deg, #5A00FF, #9D00FF);
  color: #fff;
  text-align: center;
  padding: 80px 10px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 12px;
}

.services-cta h2 {
  margin-bottom: 15px;
}

.services-cta p {
  margin-bottom: 25px;
}

/*footer*/
.footer {
  background: #fff;
  padding: 50px 20px 20px 50px;
  width: 100%;
  box-sizing: border-box;
}

.footer-about,
.footer-links,
.footer-social,
.footer-contact {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-about h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #111;
}

.footer-about p {
  font-size: 14px;
  color: #111;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #111;
}

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

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

.footer-links ul li a {
  position: relative;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #1800AD;
}

.footer-links ul li a:hover {
  color: #1800AD;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-links ul li a,
.footer-links ul li a:visited,
.footer-links ul li a:focus,
.footer-links ul li a:active {
  text-decoration: none;
  outline: none;
}


.footer-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #111;
}

.footer,
.footer p,
.footer h2,
.footer h3 {
  color: #111;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover {
  color: #1800AD;
}

/* .social-icons a {
  font-size: 22px;
  margin-right: 12px;
  transition: color 0.3s ease;
} */

.social-icons a {
  display: inline-flex;           
  align-items: center;
  justify-content: center;
  width: 40px;                     
  height: 40px;
  border-radius: 50%;              
  font-size: 18px;
  margin-right: 10px;
  background: #cac1c1;             
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a[href*="facebook"] i { color: #1877f2; }   
.social-icons a[href*="instagram"] i { color: #e4405f; }
.social-icons a[href*="linkedin"] i { color: #0a66c2; }  
.social-icons a[href*="youtube"] i { color: #ff0000; }   

.social-icons a:hover i {
  color: #1800AD;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #111;
}


/* Responsive Footer */
/* @media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
} */

/* Influencer contact form */
.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  margin: 40px auto;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b2145;
  position: relative;
}

.form-container p {
  font-size: 1rem;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.form-container h2 span {
  color: #0b2145;
}

.form-container h2 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  z-index: -1;
} 

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group .input-box {
  flex: 1;
  min-width: 250px;
}

.form-group .input-box.full {
  flex: 1 1 100%;
}

.form-container label {
  font-weight: 600;
  color: #0b2145;
  display: block;
  margin-bottom: 6px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-container input:focus,
.form-container textarea:focus {
  border-bottom: 2px solid #0b2145;
}

.form-container textarea {
  min-height: 120px;
  resize: vertical;
}

.options {
  margin: 20px 0;
}

.options label {
  font-weight: 600;
  color: #0b2145;
  display: block;
  margin-bottom: 10px;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.option-buttons button {
  padding: 10px 18px;
  border: 2px solid #0b2145;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: #0b2145;
  transition: all 0.3s ease;
}
.option-buttons button.selected {
  background-color: #190382;
  color: #fff;
  border: 2px solid #190382;
}

.option-buttons button:hover {
  background: #0a0a5c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 10, 92, 0.2);
}

.submit-btn {
  display: inline-block;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  background: #190382;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0f0260;
}
