/*
Theme Name: Brandrift
Theme URI: http://localhost
Author: You
Description: Brandrift custom theme
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
}
body {
  background-color: var(--background-color);
}
:root {
  --text-color: #ffffff;
  --text2-color: #746969e2;
  --text3-color: #73d393;
  --hover-color: #cdd0f9;
  --background-color: rgb(0, 0, 0);
  --site-max-width: 1300px;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}

/* Header Navbar */
header {
  width: 100%;
  position: fixed;
  background-color: var(--background-color);
  z-index: 10;
}
.navbar-container {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 1;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-container.scrolled {
  background-color: rgba(0, 0, 0, 0.85); /* change color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.menubtn {
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.closebtn {
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
body.menu-open {
  overflow: hidden;
}

.menu-content {
  position: relative;
  height: 100vh;
  background-color: var(--background-color);
  z-index: 4;
  display: none;
  animation: fadeIn 0.4s ease forwards;
  font-size: clamp(32px, 6vw, 60px);
}
.main-menu {
  list-style: none;
}
.main-menu li a
{
 text-decoration: none;
}

.main-menu li a:hover
{
 text-decoration: none;
 color:#cdd0f9;
}

.main-menu li .number {
  color: #575353;
  padding-left: 20px;
  font-style: italic;
  font-size: 30px;
  padding-top: 10px;
}
.main-menu {
  list-style: none;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
}

.main-menu li {
  color: var(--text-color);
  font-size: 60px;
  font-weight: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.main-menu span {
  font-size: 18px;
  opacity: 0.8;
}

.main-menu li:hover {
  color: #cdd0f9
}

/* .main-menu li.active::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #5a2dff;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
} */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-bar {
  position: relative;
  top:85px;
}
.services {
  font-size: 1.7rem;
  position: absolute;
  bottom: 170px;
  right: 50px;
  display: none;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  flex-shrink: calc(1024px);
}
.services p {
  cursor: pointer;
  transition: color 0.3s ease;
}
.services p:hover {
  color: var(--hover-color);
}
.col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.social-icons {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  gap: 10px;
}

.social-icons i {
  font-size: 42px;
  color: var(--text-color);
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
  transform: translateY(-4px);
  color: #73d393;
}
/* Intro section */
.intro-container {
  position: relative;
  width: 100%;
  height: 100vh;

  margin: 0 auto;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Video */
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY FOR RESPONSIVE VIDEO */
  z-index: 1;
}

/* Overlay */
.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* adjust */
  z-index: 2;
}

/* Content */
.intro-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 20px;
}

.intro-container h1 {
  font-size: clamp(48px, 10vw, 90px);
  font-weight: 500;
  color: var(--text-color);
  line-height: 1;
}
.intro-container h1 span.lead
{
      color: #cdd0f9;
    font-weight: 900;
}

.intro-container h1 span.brand
{
      color: #cdd0f9;
    font-weight: 900;
}

.subheading{font-size: 25px;
    letter-spacing: 4px;}
/* .hero-text {
  transform: translateX(-100px);
} */
li {
  list-style: none;
}
.hero-text .offset {
  transform: translateX(300px);
}
.hero-tags {
  font-size: clamp(12px, 3vw, 24px);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

/* ////////brand styling\\\\\\\\\\ */
.brand-container {
  width: 100%;
  padding: 20px;
}
.heading1 {
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-color);
}
.icons {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
.img {
  max-width: 220px;
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  flex-wrap: wrap;
}
.logos {
  flex: 1 1 100px;
}
.icons-row2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}
/* ////////// gallery styling\\\\\\\\\\\\ */
.gallery {
  padding: 40px;
}
.grid {
  display: grid;
  min-height: 100vh;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 160px;
  gap: 24px;
}
.card {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card.wide {
  grid-column: span 2;
}
.card.tall {
  grid-row: span 2;
}
.spin {
  animation: spin 10s linear infinite;
}
@keyframes spin {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
.fadeup {
  animation: fadeup both;
  animation-timeline: view();
}
@keyframes fadeup {
  from {
    transform: translateZ(-20px);
  }
  to {
    transform: translateY(0);
  }
}
/* ////////////Featured styling\\\\\\\\\\\\\\\\ */
.feature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}
.feature-text p {
  font-size: clamp(1rem, 4vw, 2rem);
  color: var(--text-color);
  margin-bottom: 20px;
}
.card1 img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  object-fit: contain;
}
.grid-layout {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 24px;
  width: 100%;
  padding: 40px;
  flex-wrap: nowrap;
}

/* ////////////////Who we are\\\\\\\\\\\\\\ */
.who-container {
  display: flex;
  width: 100%;
  margin: 3rem 0;
  padding: 0 3.2rem;
  gap: 2rem;
}
.container-1,
.container-2 {
  width: 50%;
}
.heading2 {
  width: 100%;
  font-size: clamp(1rem, 6vh, 2.5rem);
  font-weight: 300;
  padding-bottom: 1rem;
  line-height: 1.2;
}
.text1 {
  font-size: 18px;
  color: #cabebe;
}
.logo1 {
  width: 70%;
  margin: 1rem 0;
}
.btn {
  margin-top:20px;
  width: 250px;
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  color: black;
}
.btn:hover {
  background-color: #cdd0f9;
}

.container-2 {
  display: flex;
  align-items: center;
}
.container-2 img {
  border-radius: 30px;
}

/* ///////////////////List styling\\\\\\\\\\\\\\\\\\\\\ */
/* .list-container{
  border:  1px solid white;
  width: 60%;
}
.container-3{
  padding: 3rem 2rem; 
  gap: 20px;
}
.No{
  font-style: italic;
  color: #575353;
  font-size: 35px;
}
.list{
  transform: rotate(270deg);
}
.lists{
  position: relative;
  padding: 2rem 0;
  border:  1px solid white;
  width:100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  transform: translate(200px, 280px);
}
.list-head{
  font-size: 50px;
  font-weight: lighter;
}
.info{
    transform: rotate(90deg);
  font-size: 12px;
  width: 60%;
  padding-right: 3rem;
  margin-bottom: 20px;
  
}
.btn1{
  width: 200px;
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  background-color: var(--background-color);
  color: white;
  cursor: pointer;
    transform: rotate(90deg);
}
.btn1:hover{
  background-color: #39f0c6;
}
.sec-1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.sec-1.active {
  transition: max-height 0.4s ease;
  max-height: 300px;
} */
/* ///////////wORK STYLING\\\\\\\\\\\\\ */
.work-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.detail-section {
  display: flex;
  flex-direction: column;
}
.head {
  font-size: 20px;
  padding: 2rem;
}
.con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  padding: 2rem;
  border-bottom: 1px solid #575353dd;
}
.con1 {
  border: none;
}
.num {
  font-size: clamp(2rem, 15vh, 5rem);
  padding-right: 2rem;
}
.inf {
  padding: 0 2rem;
  font-size: 2.5rem;
  font-weight: 100;
}

/* /////////Question section styling\\\\\\\\\\\ */

.question-section {
  width: 100%;
  padding: 1rem 3rem;
}
.question-container {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}

.title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 80px;
}
p span {
  color: #cdd0f9;
}
.ques-item {
  max-width: 1400px;
  width: 100%;
  border-bottom: 1px solid #57535377;
  border-top: 1px solid #5753538f;
}
.ques-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #5753539b;
}
.ques-btn .icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.ques-btn:hover .icon {
  background-color: #39f0c6;
}
.answer p {
  /* height: 200px; */
  max-width: 520px;
  padding: 30px 0;
  display: flex;
  font-size: 20px;
  text-align: left;
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  justify-content: flex-end;
}
/*////////////// Booking styling \\\\\\\\\\\\\\\\\\*/
.booking-section {
  width: 100%;
  padding: 2rem 5rem;
}
.booking-container {
  background-image: url(image/backG.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.heading3 {
  width: 100%;
  font-size: 2rem;
  font-weight: 100;
}
.booking {
  font-size: 1.2rem;
  max-width: 760px;
  width:100%;
  margin: 0 auto;
}
.btn2 {
  width: 250px;
  background: #ffffff;
  border: none;
  color: black;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 50px;
}
.btn2:hover {
  background-color: #39f0c6;
}
/* /////////////Footer Styling\\\\\\\\\\\ */
.footer-section {
  border-top: 1px solid #ffff;
  margin: 0 50px;
  padding: 2rem 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footerbar
{
  background: #6d6d6d;
    padding: 20px 50px;
}
.list p {
  font-size: 2rem;
  font-weight: normal;
  padding-bottom: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.list-item {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #a09898;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.social {
  width: 25%;
}
.lit {
  color: #22836c;
}
nav .list-item {
  cursor: pointer;
}
.social-icon {
  font-size: 2rem;
  text-align: right;
  flex-wrap: nowrap;
}
.social-icon .fa-brands:hover {
  color: #39f0c6;
  transition: 0.4s ease-in-out;
}

/* /////////client section styling\\\\\\\\\\ */
.client-container {
  width: 100%;
  padding: 2rem 3rem;
  margin-bottom: 50px;
}
.title1 {
  font-size: 1rem;
  margin-bottom: 35px;
  
}
.head2 {
  font-size: 3rem;
}
.box-con img {
  width: 180px;
}
.box-con {
 display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.box {
  border: 1px solid #cdd0f9;
  width: 420px;
  padding: 0 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 0 5px 1.5px #cdd0f9;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}
.boxlogo {
  padding-top: 2rem;
  text-align: center;
}
.box-title {
  font-size: 1.5rem;
  font-weight: 500;
}
.box-title1 {
  font-size: 1rem;
  color: #818080;
  padding-bottom: 3rem;
}
.box:hover .boxlogo {
  transform: translateY(-10px);
  transition: 0.4s ease-in-out;
}
.box:hover {
  box-shadow: 0 0 25px 2px #cdd0f9;
}
/* .box2 {
  transform: translateY(40px);
}
.box3 {
  transform: translateY(80px);
} */

/* ///////////////floating Styling \\\\\\\\\\\\*/

.floating-container {
  display: flex;
  overflow: auto;
  gap: 30rem;
  overflow: hidden;
  background-color: #cdd0f9;
}
.floating-item {
  width: 100%;
  display: flex;
  gap: clamp(2rem, 10vw, 8rem);
  font-size: clamp(2rem, 6vw, 5rem);
  flex-shrink: 0;
  animation: spin 60s infinite linear;
}
.floating-container::-webkit-scrollbar {
  display: none;
}
.card {
  flex: 0 0 5em;
  color:#000;
}

@keyframes spin {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ////////////Team styling\\\\\\\\\\\\\ */
.team-section {
  margin: 1rem 0;
  padding: 1rem 2rem;
  height: 35vh;
}
.team-container {
  position: relative;
}
.testimonial img {
  min-width: 400px;
  width: 100%;
  min-height: 400px;
  height: 100%;
  object-fit: cover;
}
.testimonials-list {
  display: flex;
  max-width: 1600px;
  width: 100%;
  position: relative;
  /* border: 1px solid white; */
  padding-bottom: 2rem;
}
.testimonial .review
{
    width: 400px;
    padding: 20px;
}
.team-section .testimonial {
  display: flex;
  align-items: center;
  padding-right: 2rem;
  flex-direction: column;
}
.section-content {
  position: relative;
}

.team-section::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.slider-container {
  overflow-x: hidden;
  position: absolute;
  left: 520px;
}
.testimonial {
  position: relative;
}
.teamtitle {
  text-align: right;
  width: 22%;
  font-size: 3rem;
  font-weight: 800;
  position: absolute;
  left: 100px;
}
.teamtitle2 {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}
.info {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0px;
}
.Swiper-slider-button {
  background-color: #88334e;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev {
  position: absolute;
  top: 0;
  left: 450px;
}
.swiper-button-next {
  position: absolute;
  left: 450px;
  top: 60px;
}

/* //////social media styling\\\\\\\\\\\ */
.social-section {
  position: fixed;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: #cdd0f9;
  border-radius: 0px 10px 10px 0px;
  padding: 15px 2px;
}

.social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Vertical title */
.social-title p {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
  padding: 10px 6px;
  text-align: center;
}

/* Icons column */
.social-item {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 22px;
  color: #000;
}

/* Hover – classic agency feel */
.social-item i {
  cursor: pointer;
  transition: transform 0.3s ease;
  color:#000;
}
.info-class
{ margin-top:15px; 
  background:#fff;
  max-width:700px; 
  width:100%;
}
.services-page
{
  margin-top: 100px;
}

/* Services page code */
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("./image/service_banner.jfif"); /* replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(18 18 18 / 75%), rgb(36 36 36 / 75%));
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

/* Heading */
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Paragraph */
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: #eae6ff;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 16px 34px;
  background: #cdd0f9;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #cdd0f9;
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: #0f0f12;
  padding: 100px 20px;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 60px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.why-card {
  background: #15161a;
  border: 1px solid rgba(167, 139, 250, 0.5);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #cdd0f9;
}

/* Icon */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cdd0f9;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Card text */
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
}

.platforms {
  background: #000;
  padding: 100px 20px;
}

.platforms-container {
  max-width: 1200px;
  margin: auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.platform-card {
  border: 1px solid #cdd0f9;
  border-radius: 18px;
  padding: 32px;
  color: #cdd0f9;
  background: #000;
}

.platform-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cdd0f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.platform-icon svg {
  width: 22px;
  height: 22px;
  color: #000;
}

.platform-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.platform-card ul {
  list-style: none;
  padding: 0;
}

.platform-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(205, 208, 249, 0.25);
  font-size: 0.95rem;
}

.bf-services {
  background: #000;
  padding: 80px 20px;
  color: #cdd0f9;
}

.bf-services-container {
  max-width: 1100px;
  margin: auto;
}

.bf-service-item {
  border: 1px solid #cdd0f9;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
}

.bf-service-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #cdd0f9;
}

.bf-service-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.bf-service-icon {
  width: 36px;
  height: 36px;
  background: #cdd0f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-service-icon svg {
  width: 18px;
  height: 18px;
}

.bf-badge {
  background: #cdd0f9;
  color: #000;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}

.bf-service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.bf-service-item.bf-active .bf-service-content {
  max-height: 900px;
  padding-bottom: 20px;
}

.bf-service-content ul {
  list-style: none;
  padding: 0;
}

.bf-service-content li {
  padding: 10px 0;
  border-top: 1px solid rgba(205, 208, 249, 0.25);
  font-size: 0.95rem;
}

/* ===== HERO BANNER ===== */
.bf-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

  background-image: url("./image/service_banner.jfif"); /* replace */
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.bf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* Content wrapper */
.bf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #ffffff;
}

/* Title */
.bf-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.bf-hero-title span {
  color: #cdd0f9;
}

/* Accent line */
.bf-hero-line {
  width: 200px;
  height: 4px;
  background: #cdd0f9;
  margin: 0 auto 24px;
}

/* Subtitle */
.bf-hero-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 auto 36px;
  max-width: 650px;
}

/* CTA Button */
.bf-hero-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #cdd0f9;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bf-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ===== OUR STORY SECTION ===== */
.bf-story {
  background: #000;
  padding: 100px 20px;
  color: #e5e7eb;
}

.bf-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.bf-story-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.bf-story-line {
  width: 80px;
  height: 3px;
  background: #cdd0f9;
  margin-bottom: 28px;
}

.bf-story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.bf-story-text strong {
  color: #cdd0f9;
}

/* Image */
.bf-story-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.bf-story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== WHAT WE BELIEVE ===== */
.bf-believe {
  background: #000;
  padding:20px;
  color: #fff;
}

.bf-believe-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.bf-believe-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.bf-believe-line {
  display: inline-block;
  width: 70px;
  height: 3px;
  background: #cdd0f9;
  margin-bottom: 50px;
}

/* Grid */
.bf-believe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.bf-believe-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border-radius: 18px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(205, 208, 249, 0.25);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover effect */
.bf-believe-card:hover {
  transform: translateY(-8px);
  border-color: #cdd0f9;
  box-shadow: 0 20px 50px rgba(205, 208, 249, 0.15);
}

/* Icon */
.bf-believe-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(205, 208, 249, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-believe-icon svg {
  width: 26px;
  height: 26px;
  fill: #cdd0f9;
  stroke: #cdd0f9;
}

/* Text */
.bf-believe-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
}
/* ===== HOW WE WORK ===== */
.bf-process {
  background: #000;
  padding: 50px  20px;
  color: #ffffff;
}

.bf-process-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.bf-process-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.bf-process-line {
  display: inline-block;
  width: 70px;
  height: 3px;
  background: #cdd0f9;
  margin-bottom: 60px;
}

/* Grid */
.bf-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card */
.bf-process-card {
  position: relative;
  padding: 42px 36px 40px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(205, 208, 249, 0.25);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

/* Hover highlight */
.bf-process-card:hover {
  transform: translateY(-8px);
  border-color: #cdd0f9;
  box-shadow: 0 25px 60px rgba(205, 208, 249, 0.15);
}

/* Step number */
.bf-step {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(205, 208, 249, 0.25);
  pointer-events: none;
}

/* Content */
.bf-process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.bf-process-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1d5db;
}

/* ===== FINAL CTA ===== */
.bf-final-cta {
  position: relative;
  min-height: 85vh;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("./image/service_banner.jfif"); /* replace if needed */
  background-size: cover;
  background-position: center;
}

/* Dark overlay */
.bf-final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}

/* Content */
.bf-final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

/* Title */
.bf-final-cta-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.bf-final-cta-title span {
  color: #cdd0f9;
}

/* Text */
.bf-final-cta-text {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
  color: #e5e7eb;
  margin: 0 auto 40px;
  max-width: 650px;
}

/* Button */
.bf-final-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #cdd0f9;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bf-final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ===== FOOTER ===== */
.bf-footer {
  background: linear-gradient(
    180deg,
    #000 0%,
    #050505 100%
  );
  color: #cdd0f9;
  padding: 80px 20px 30px;
  font-size: 0.95rem;
}

.bf-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(205, 208, 249, 0.15);
}

/* Brand */
.bf-footer-logo {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(205, 208, 249, 0.08);
  color: #cdd0f9;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.bf-footer-brand
{
  padding-left: 25px;
}

.bf-footer-brand p {
  color: #9ca3af;
  max-width: 360px;
  line-height: 1.6;
}

/* Links */
.bf-footer-links h4,
.bf-footer-social h4 {
  margin-bottom: 18px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

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

.bf-footer-links li {
  margin-bottom: 12px;
}

.bf-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.25s ease;
}

.bf-footer-links a:hover {
  color: #cdd0f9;
}

/* Social Icons */
.bf-footer-icons {
  display: flex;
  gap: 12px;
}

.bf-footer-icons a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cdd0f9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.bf-footer-icons a:hover {
  background: #cdd0f9;
  color: #000;
  transform: translateY(-2px);
}

/* Bottom */
.bf-footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.85rem;
}
.bf-footer-legal
{
  display: none;
}

.bf-footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  margin: 0 6px;
}

.bf-footer-legal a:hover {
  color: #cdd0f9;
}

/* ===== SERVICES ===== */
.bf-services {
  background: #000;
  padding: 120px 20px;
  color: #fff;
}

.bf-services-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.bf-services-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.bf-services-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(205,208,249,0.12);
  color: #cdd0f9;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.bf-services-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin-bottom: 24px;
}

.bf-services-header p {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Grid */
.bf-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.bf-service-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(205,208,249,0.2);
  transition: all 0.35s ease;
}

/* Flagship */
.bf-flagship {
  border-color: #cdd0f9;
}

/* Icon */
.bf-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(205,208,249,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.bf-service-icon svg {
  width: 26px;
  height: 26px;
  stroke: #cdd0f9;
  fill: none;
  stroke-width: 2;
}

/* Base card (ensure position relative) */
.bf-service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Glow layer */
.bf-service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(
    120% 120% at 0% 0%,
    rgba(205, 208, 249, 0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Hover state */
.bf-service-card:hover {
  transform: translateY(-8px);
  border-color: #cdd0f9;
  box-shadow:
    0 20px 50px rgba(205, 208, 249, 0.18),
    inset 0 0 0 1px rgba(205, 208, 249, 0.35);
}

/* Show glow */
.bf-service-card:hover::before {
  opacity: 1;
}


/* Hover animation */
.bf-service-card:hover .bf-service-icon {
  transform: scale(1.15) rotate(6deg);
}

/* Text */
.bf-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.bf-service-card strong {
  display: block;
  margin-bottom: 10px;
  color: #cdd0f9;
}

.bf-service-card p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Badge */
.bf-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(205,208,249,0.15);
  color: #cdd0f9;
  font-size: 0.65rem;
  padding: 6px 10px;
  border-radius: 999px;
}

/* CTA */
.bf-services-cta {
  text-align: center;
  margin-top: 50px;
}

.bf-services-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #cdd0f9;
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* ===== BRAND SLIDER ===== */
.brand-section {
  background: #000;
  padding: 20px 0;
  overflow: hidden;
}

.brand-container {
  max-width: 1200px;
  margin: auto;
}

.heading1 {
  text-align: center;
  margin-bottom: 40px;
  color: #cdd0f9;
  font-size: 1.1rem;
}

/* Slider */
.brand-slider {
  overflow: hidden;
  position: relative;
}

/* Moving track */
.brand-track {
  display: flex;
  width: max-content;
  animation: brandScroll 25s linear infinite;
}

/* Individual logo */
.logos {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.logos img {
  max-width: 140px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Pause on hover (optional) */
.brand-slider:hover .brand-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logos {
    width: 160px;
  }

  .logos img {
    max-width: 110px;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .bf-services-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .bf-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bf-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bf-final-cta {
    min-height: 75vh;
  }
}

@media (max-width: 500px) {
.bf-footer
{
  padding: 30px 20px;
}

  .bf-final-cta {
    padding: 0 16px;
    min-height: 50vh;
  }

  .bf-final-cta-btn {
    width: 100%;
    max-width: 320px;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .bf-process-grid {
    grid-template-columns: 1fr;
  }

  .bf-step {
    font-size: 2.4rem;
  }
}

@media (max-width: 500px) {
  .bf-process {
    padding: 15px;
  }

  .bf-process-card {
    padding: 36px 26px;
  }
.bf-process-line
{
  margin-bottom: 20px;
}

}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .bf-believe-grid {
    grid-template-columns: 1fr;
  }

  .bf-believe-card {
    padding: 40px 24px;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .bf-story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bf-story {
    padding: 80px 20px;
  }

  .bf-story-line {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .bf-story {
    padding: 70px 16px;
  }

  .bf-story-text p {
    font-size: 1rem;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .bf-hero {
    min-height: 80vh;
  }

  .bf-hero-line {
    width: 140px;
  }
}

@media (max-width: 480px) {
  .bf-hero {
    padding: 0 16px;
  }

  .bf-hero-btn {
    width: 100%;
    max-width: 320px;
  }
}


/* Responsive */
@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-choose {
    padding: 70px 16px;
  }
}


/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 600px) {
  .hero {
    padding: 0 16px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
  }
}


/* responsive for mobile 1400px */
@media (max-width: 1400px) {
  .delete {
    display: none;
  }
}
/* responsive for mobile 1200px */
@media (max-width: 1200px) {
  .teamtitle {
    position: static;
    text-align: start;
    width: 100%;
  }
.team-container {
  display: flex;
  flex-direction: column;
}
  .team-section {
  margin: 1rem 0;
  padding: 1rem 2rem;
}
  .slider-container {
    left: 0;
  }
.testimonials-list {
  width: 80%;
}
  .slider-container {
    position: static;
  }
  .swiper-button-prev {
    position: absolute;
    top: 400px;
    left: 0;
  }
  .swiper-button-next {
    position: absolute;
    top: 400px;
    left: 60px;
  }
}
/* responsive for mobile 1024px */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 16px 24px;
  }
  .box-con {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo {
    font-size: 32px;
  }

  .services {
    font-size: 1.3rem;
    gap: 20px;
  }
  .grid-layout {
    gap: 0;
    padding: 10px;
  }
  .who-container {
    flex-direction: column;
  }
  .container-1,
  .container-2 {
    width: 100%;
  }
  .num {
    font-size: clamp(2rem, 5vh, 4rem);
    padding-right: 2rem;
  }
  .inf {
    padding: 0 2rem;
    font-size: 1.9rem;
    font-weight: 100;
  }
  .social {
    width: 100%;
  }
  .social-icon {
    font-size: 2rem;
    text-align: start;
  }
 
  .box {
    width: 100%;
  }
  .boxlogo {
    text-align: start;
  }
}
/* responsive for mobile 900px */
@media (max-width: 900px) {
  .main-menu li .number {
    padding-top: 0;
  }
  .main-menu li {
    font-size: clamp(32px, 6vw, 60px);
    gap: 16px;
  }
  .main-menu span {
    font-size: 16px;
  }
  .menu-content {
    height: 100vh;
  }
  .services {
    display: none;
  }
  .col {
    display: none;
  }
  .social-icons {
    display: none;
  }
  .img {
    max-width: 220px;
    width: 100%;
  }
  .ques-btn {
    font-size: 25px;
  }
}

/* responsive for mobile 768px */
@media (max-width: 768px) {
  header {
    padding: 0;
    top:0;
  }

  .navbar-container {
    padding: 14px 20px;
  }

  .logo {
    font-size: 28px;
  }

  .menubtn,
  .closebtn {
    width: 48px;
    height: 48px;
  }

  .menu-content {
    height: 100vh;
    width: 100%;
  }

  .main-menu {
    bottom: 100px;
    left: 20px;
  }

  .main-menu li {
    font-size: 36px;
    gap: 12px;
  }

  .main-menu li .number {
    font-size: 20px;
    padding-left: 10px;
  }
  .hero-text {
    transform: translateX(-50px);
  }
  .hero-text .offset {
    transform: translateX(120px);
  }
  .services {
    display: none;
  }

  .social-icons {
    right: 20px;
    bottom: 20px;
  }

  .social-icons i {
    font-size: 2rem;
  }
  .delete1 {
    display: none;
  }
  .grid-layout {
    grid-template-columns: 1fr 1fr;
  }
  .feature-text p {
    font-size: clamp(0.4rem, 3vw, 2rem);
  }
  .heading2 {
    font-size: clamp(1.3rem, 3vh, 2.5rem);
  }
  .text1 {
    font-size: 14px;
  }
  .btn {
    font-size: 15px;
  }
  .who-container {
    padding: 0 1.5rem;
  }
  .num {
    font-size: clamp(2rem, 7vh, 3rem);
  }
  .inf {
    padding: 0 2rem;
    font-size: 1.4rem;
  }
  .ques-btn {
    font-size: 20px;
  }
  .title {
    font-size: 1.4rem;
  }
  .ques-btn {
    font-size: 15px;
    text-align: left;
  }
  .ques-btn .icon {
    width: 2.4rem;
    height: 2.4rem;
  }
  .answer p {
    font-size: 16px;
  }
  .question-section {
    padding: 1rem 1rem;
  }
  .booking-section {
    width: 100%;
    padding: 2rem 1rem;
  }
  .list-box {
    padding-top: 1rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-section {
    margin: 0 1rem;
  }
}

/* responsive for mobile 500px */
@media (max-width: 500px) {

.bf-believe
{
  padding: 15px;
}

.social-section
{
display: none;
}
.bf-services {
   
    padding: 50px 20px;
    
}

  .hero-tags {
    font-size: clamp(12px, 4vw, 20px);
    bottom: 20px;
    left: 20px;
  }
  .intro-container {
    height: 600px;
    background-position: center;
    padding-left: 0;
    align-items: flex-start;
  }
  .box-con {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: clamp(32px, 15vw, 100px);
  }

  .hero-text {
    transform: translateX(0px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-text .offset {
    transition: all;
    transform: translateX(60px);
  }
  .delete2 {
    display: none;
  }
  .img {
    border-radius: 15px;
  }
  .logos {
    flex: 1 1 50px;
  }
  .icons {
    gap: 10px;
  }
  .icons-row2 {
    gap: 10px;
  }
  .brand-container {
    padding: 40px 10px;
  }
  .logo1 {
    width: 100%;
  }
  .con {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .num {
    font-size: clamp(1rem, 6vh, 3rem);
  }
  .inf {
    padding: 0;
    font-size: 1.2rem;
  }
  .work-section {
    align-items: center;
  }
  .bf-footer-brand
  {
    padding-left: 0;
  }
  .ques-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .heading3 {
    font-size: 1.3rem;
  }
  .booking {
    font-size: 0.9rem;
  }
}
