* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway';
}

body {
  background: #000;
  color: #fff;
}


.section-title h2 {
  font-size: 54px;
  margin-bottom: 60px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .section-title h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 40px;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

.nav-container {
    width:90%;
    margin:0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* MENU */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* hover underline effect */
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #6c5ce7;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 90px;
    right: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
/* 📱 MOBILE */
@media (max-width: 600px) {

  .navbar {
    padding: 15px 10px; /* 👈 10px left & right */
  }

  .navbar .logo img {
    height: 40px; /* slightly smaller */
  }
}

/* HERO */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes it behave like background */
  z-index: -2;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
    margin-bottom: 50px;
  justify-content: flex-start;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 70%;
  padding: 100px 50px;
  text-align: left;
  margin-left: 80px; /* 👈 increase or decrease this */
}

.hero h1 {
  font-size: 70px;
  margin-bottom: 20px;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 568px){
  .logo {
  height: 70px; 
  width: 210px;
}

  .hero h1 {
    font-size: 32px;
    margin-top: 50px;
  }

  .card {
    width: 100%;
  }
}

.buttons {
  margin-top: 20px;
}

.buttons {
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  transition: 0.3s;
}

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  background: #6c5ce7; /* change color if needed */
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden; /* IMPORTANT */
}



/* ✨ SHINE LAYER */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transform: skewX(-25deg);
}

/* ✨ HOVER ANIMATION */
.btn-primary:hover::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}


.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden; /* IMPORTANT */
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* TABLET */
@media (max-width: 992px) {

  .hero {
    padding: 0 6%;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {

  .hero {
    padding: 0 10px; /* 👈 left & right 10px */
    justify-content: center; /* center horizontally */
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
  }
    /* STACK BUTTONS */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
  .btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  width:100%;

  

  border-radius: 6px;
  cursor: pointer;
  overflow: hidden; /* IMPORTANT */
}

}




/* LOGO SLIDER */


.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;              /* ✅ 100% width */
  margin: 40px auto;       /* ✅ center horizontally */
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 18s linear infinite;
  will-change: transform;
}

/* LOGOS */
.logo-track img {
  width: 120px;
  margin: 0 30px;
  
  flex-shrink: 0;
  transition: 0.3s;
}

.logo-track img:hover {
  opacity: 1;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}



/* ⭐ FIXED SMOOTH CONTINUOUS LOOP */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* REVERSE SLIDER */
.reverse-track {
  display: flex;
  align-items: center;
  animation: scroll-reverse 25s linear infinite;
}

/* RIGHT → LEFT (already exists) */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* LEFT → RIGHT */
@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* 🌫️ LEFT & RIGHT SHADOW FADE */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* LEFT FADE */
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

/* RIGHT FADE */
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.brand-logos span {
  margin: 10px;
  opacity: 0.6;
  transition: 0.3s;
}

/* TABLET */
@media (max-width: 992px) {
  .brands {
    width: 100%;
  }



  .brand-logos img {
    max-width: 100px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .brands {
    width: 100%;
    padding: 20px;
  }



  .brand-logos {
    gap: 10px;
  }
    
/* LEFT FADE */
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

/* RIGHT FADE */
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}


}
/* SECTIONS */
section {
  padding: 20px 50px;
  text-align: center;
}

/* SECTION */
.cards {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* CARD */
.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;

  background-size: cover;
  background-position: center;

  transition: 0.4s ease;
}
.cards h3 {
  font-size: 24px;
    margin-bottom: 25px;
    font-weight: 400;

}



/* DARK OVERLAY */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 20%,
    rgba(0,0,0,0.4) 60%,
    transparent 100%
  );
  z-index: 1;
}

/* CONTENT */
.card-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  color: #fff;
  text-align: left;
}

/* TITLE */
.card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.card-content p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
}

.card {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05); /* subtle, clean */
}

/* 📱 RESPONSIVE */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    width: 100%;
      
  }


  .card-grid {
    grid-template-columns: 1fr;
  }


}

/* SECTION */
.service-section {
  width: 90%;

  margin: 80px auto;
  text-align: center;
}




/* GRID */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

/* CARD */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;

  background-size: cover;
  background-position: center;

  transition: 0.4s ease;
}


/* OVERLAY */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(108, 92, 231, 0.9) 20%,
    rgba(108, 92, 231, 0.4) 30%,
    transparent 100%
  );
  z-index: 1;

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* SHOW ON HOVER */
.service-card:hover::before {
  opacity: 1;
}

/* CONTENT */
.card-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  color: #fff;
  text-align: left;
}

/* TITLE */
.card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* 📱 RESPONSIVE */

/* TABLET */
@media (max-width: 992px) {
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .service-section {
    width: 100%;
  }



  .service-card-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.photo-expert {
  width: 100%;
  margin: 80px auto;
  text-align: center;
}

/* TITLE */
.section-title{
  font-size: 54px;
  margin-bottom: 60px;
    font-weight: 700;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* SLIDE (CENTER EVERYTHING) */
.slide {
  min-width: 100%;
  height: 650px;
  display: flex;
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
}

/* INNER CONTENT WRAPPER (IMPORTANT) */
.slide-content {
  width: 85%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.slide-img {
  flex: 1;
  height: 650px;
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* TEXT */
.slide-text {
  flex: 1;
  text-align: left;
}


/* ARROWS (VISIBLE + NOT CUT) */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FIX ARROW POSITION */
.slide-arrow.left { left: 20px; }
.slide-arrow.right { right: 20px; }

/* 📱 RESPONSIVE SLIDER LAYOUT */
@media (max-width: 768px) {
    
 .section-title{
  font-size: 36px;
  margin-bottom: 30px;
    font-weight: 700;
    
}
  .slide-content {
    width: 100%;
    flex-direction: column;
    text-align: center;
      
  }

  .slide-img {
    width: 100%;
  }

  .slide-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .slide-text {
    width: 100%;
    padding: 20px 10px;
  }
  

  .slide-text h2 {
    font-size: 24px;
    margin-top: 15px;
  }

  .slide-text p {
    font-size: 15px;
    line-height: 1.5;
  }

  .btn-primary {
    margin-top: 15px;
  }


}

 /* 📱 MOBILE (≤600px) */
@media (max-width: 600px) {

  .slide-content {
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin-bottom: -50px;
  }

  .slide-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .slide-text {
    width: 100%;
    padding: 15px 5px;
  }

  .slide-text h2 {
    font-size: 20px;
    margin-top: 10px;
    line-height: 1.3;
  }

  .slide-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-primary {
    width: 100%;          /* full width button */
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }

}   
/* SECTION */
.experience {
  width: 100%;
  margin: 100px auto;
}



/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
}
.item {
  margin-bottom: 10px;
}

/* card1 CONTAINER */
.card1 {
  position: relative;
  display: flex;
  align-items: center;
}

/* IMAGE (ON TOP) */
.img-box {
  position: relative;
  z-index: 2; /* ABOVE text box */
}

.img-box img {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
}

/* TEXT BOX */
.text-box {
    height:220px;
    width:500px;
  position: relative;
  margin-left: -80px; /* pushes under image */
  padding: 50px 60px 50px 120px;
  border-radius: 30px;
  z-index: 1;
  overflow: hidden;
  text-align: left;
}

/* 🔥 PURPLE BACKGROUND (UNDER IMAGE) */
.text-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6c5ce7, #8e7cff);
  border-radius: 30px;

  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

/* HOVER → SHOW BACKGROUND */
.card1:hover .text-box::before {
  opacity: 1;
}

/* TEXT */
.text-box h3 {
  font-size: 1.17em;
  margin-bottom: 10px;
  
  transition: 0.3s;
}

.text-box p {
  font-size: 14px;
  transition: 0.3s;
}

/* ARROW */
.arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: 0.3s;
}

/* TEXT COLOR CHANGE */
.card1:hover .text-box h3,
.card1:hover .text-box p,
.card1:hover .arrow {
  color: #fff;
}

/* IMAGE HOVER */
.card1:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .experience {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr; /* single column */
    gap: 40px;
  }

 

  .card1 {
    flex-direction: row;
  }

  .img-box img {
    width: 220px;
    height: 220px;
  }

  .text-box {
    width: 100%;
    height: auto;
    margin-left: -60px;
    padding: 40px 40px 40px 100px;
  }
}
    
    /* =========================
   MOBILE (≤ 600px)
========================= */
@media (max-width: 600px) {

  .experience {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
  }

 

  /* STACK LAYOUT */
  .card1 {
    flex-direction: column;
    align-items: flex-start;
  
  }

  /* IMAGE FULL WIDTH */
  .img-box img {
    width: 80%;
    height: auto;
  }

  /* TEXT BELOW IMAGE */
  .text-box {
    width: 100%;
    height:450px;
    margin-top:-320px;
    margin-left: 0;
    
    padding: 25px;
    border-radius: 20px;
  }

  .text-box h3 {
    font-size: 18px;
    margin-top:320px;
  }

  .text-box p {
    font-size: 13px;
  }

  /* ARROW FIX */
  .arrow,
  .text-box span {
    font-size: 28px !important;
    position: relative;
    float: right;
    top: auto;
    right: auto;
    transform: none;
  }
}

/* SECTION */
.contact-section {
    width: 90%;
    margin: 0 auto;
  display: flex;
  min-height: 600px;
  text-align: left;
  background: url('img/contact-background.png') center/cover no-repeat;  
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  position: relative;
  color: #fff;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.6),
    transparent
  );
}

/* TEXT CONTENT */
.left-content {
  position: relative;
  z-index: 2;
  padding: 80px;
}

.left-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.left-content p {
  max-width: 400px;
  line-height: 1.6;
  color: #ddd;
}

/* RIGHT SIDE FORM */
.contact-right {
  flex: 1;
  background: #f5f5f5;
  padding: 40px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
    text-align: left;
}

/* ✅ FIX: FORCE LABEL COLOR */
.contact-right label {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
  color: #000;              /* ← THIS FIXES YOUR ISSUE */
  font-weight: 500;
}

/* ✅ FIX: INPUT TEXT COLOR */
.contact-right input,
.contact-right select,
.contact-right textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #000;              /* ensures text is visible */
  background: #fff;
}

/* CHECKBOX */
.checkbox {
  margin-top: 15px;
  font-size: 13px;
  color: #000;
}

/* BUTTON */
button {
  margin-top: 20px;
  padding: 12px;
  background: black;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}


/* 📱 CONTACT SECTION RESPONSIVE */

/* TABLET */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 30px !important;
  }

  .contact-left h1 {
    font-size: 34px;
  }

  .contact-left p {
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: -50 !important;
    height: auto !important;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-left h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-left p {
    font-size: 14px;
  }

  .contact-right form {
    width: 100%;
  }

  input,
  select,
  textarea {
    width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .contact-section {
    padding: 0 !important;
    border-radius: 15px !important;
    width: 100%;
  }

  .contact-left h1 {
    font-size: 24px;
    
    
  }

  .contact-left p {
    font-size: 14px;
  }

  label {
    font-size: 13px;
  }

  .btn-primary {
    width: 100%;
  }
}



/* SECTION */
.testimonial {
  width: 90%;
  margin: 100px auto;
  text-align: center;
  overflow: hidden;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.testimonial:hover .testimonial-track {
  animation-play-state: paused;
}

/* CARD */
.testimonial-card {
  min-width: 300px;
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

/* IMAGE */
.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  margin-bottom: 10px;
}

/* STARS */
.stars {
  color: gold;
}

/* 🔥 ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}





/* FOOTER BASE */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 10%;
  font-family: Arial, sans-serif;
}

/* TOP HEADING */
.footer-top h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* GRID */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* COLUMN */
.footer-col h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #6c5ce7;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

.footer-links span {
  margin-left: 20px;
  cursor: pointer;
}

.footer-links span:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .footer-top h1 {
    font-size: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
      text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}