@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #161513;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #161513;
}

.logo img {
  width: 170px;       
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #c5c6c7;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn.contact {
  background: #CA9D2E;
  color: #fff;
}

.btn.contact:hover {
  background: white;
  color:black;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #c5c6c7;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #ffffff;
}

.hero-content h1 span {
  color:#BAB0AB ;
}

.hero-content p {
  margin-top: 20px;
  color: #b0b3b8;
  line-height: 1.6;
  font-size: 1.05rem;
}

.bold-text {
  margin-top: 25px;
  color: #ffffff;
  font-weight: 600;
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  right: -10px; /* moves image further right */
}

.hero-images img {
  width: 90%;
  border-radius: 10px;
  object-fit: cover;
}



/* Why us*/
.why-choose-us {
  color: white;
  padding: 50px 16px;
}

.choose-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.choose-stats {
  flex: 1;
  display: flex;
  justify-content: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 2px solid #CA9D2E;
  padding: 40px 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  min-width: 240px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  color: #CA9D2E;
  font-weight: 700;
  overflow: hidden;
  height: 45px;
  line-height: 45px;
}

.stat-item p {
  color: white;
  font-size: 1rem;
  margin-top: 4px;
}

.choose-content {
  flex: 1.2;
  text-align: left;
}

.choose-content h2 {
  font-size: 2rem;
  color: #CA9D2E;
  margin-bottom: 16px;
}

.choose-content p {
  color: #ddd;
  line-height: 1.7;
  font-size: 1.1rem;
}



/* Brand Logos */
.brands-section {
  text-align: center;
  padding: 50px 0;
}
.brands-section h2 {
  font-size: 25px;
  margin-bottom: 50px;  
 color: #CA9D2E;
}

.logo-slider {
  width: 80%;              
  max-width: 900px;        
  margin: 0 auto;          
  overflow: hidden;        
  position: relative;
  border-radius: 12px;
}

.logo-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;      
}

.logo-track img {
  height: 60px;
  margin: 0 25px;
  transition: transform 0.3s ease;
}
.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partnership-btn {
  display: inline-block;
  margin-top: 40px;         
  background-color: #CA9D2E;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.partnership-btn:hover {
  background-color: #b58a26; 
  transform: translateY(-2px);
}


/* Testimonials */
.testimonials-section {
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 1.5 rem;
  color: #CA9D2E;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #CA9D2E;
  border-radius: 15px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(202, 157, 46, 0.3);
}

.testimonial-text {
  font-size: 1em;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
}

.client-name {
  color: #CA9D2E;
  font-size: 1.1em;
  margin: 5px 0;
}

.client-role {
  color: #fff;
  font-size: 0.9em;
  opacity: 0.8;
}



/* Book a call */
.marketing-hero {
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.marketing-hero__title {
    font-size: 2.5rem; 
    font-weight: 400; 
    line-height: 1.1;
    margin-bottom: 20px;
}

.marketing-hero__tagline {
    font-size: 1.3rem; 
    font-weight: 200;
    line-height: 1.4;
    margin-bottom: 40px;
}

.marketing-hero__cta-button {
    background-color: #CA9D2E; 
    color: white; 
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px; 
    display: inline-block; 
    transition: background-color 0.3s ease; 
    border: none;
    cursor: pointer;
}

.marketing-hero__cta-button:hover {
    background-color: #E2B038; 
}



/* Footer */
.footer {
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-desc {
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex: 2;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
  margin: 10px 0;
}

.footer-column h3 {
  color: #CA9D2E;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.footer-column p,
.footer-column a {
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #CA9D2E;
}

.social-icons a {
  color: white;
  margin-right: 12px;
  font-size: 1.2em;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #CA9D2E;
  transform: scale(1.2);
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 0.9em;
  color: #ccc;
}





/* -------------------------------------------------------------------------------------Responsive ----------------------------------------------------------------------------------------- */

/* Navbar*/
@media (max-width: 768px) {

  .navbar {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .logo img {
    width: 130px; 
    transition: all 0.3s ease;
    transform: translateX(-10px); 
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    background: #CA9D2E;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }

  .navbar.active {
    flex-direction: column;
    align-items: center;
  }

  .navbar.active .nav-links,
  .navbar.active .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #161513;
    border-top: 1px solid #CA9D2E;
    position: relative; /* keeps content in normal flow */
    padding: 20px 0;
    gap: 18px;
    animation: slideDown 0.4s ease forwards;
  }

  .navbar.active .nav-links a {
    font-size: 16px;
    color: #c5c6c7;
  }

  .navbar.active .nav-links a:hover {
    color: #ffffff;
  }

  .navbar.active .nav-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 80%;
    text-align: center;
  }

  /* Slide-down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

 
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
}


/* Header Section*/
@media (max-width: 1024px) {
  .hero {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 30px 25px;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-images {
    order: 2;
    justify-content: center;
    right: 0;
    margin-top: 25px;
  }

  .hero-images img {
    width: 100%;
    max-width: 400px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 25px 20px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-images img {
    max-width: 350px;
  }
}


@media (max-width: 380px) {
  .hero {
    padding: 20px 15px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-images img {
    width: 100%;
    max-width: 300px;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}


/* Why us*/
@media (max-width: 1024px) {
  .choose-content h2 {
    font-size: 1.8rem;
  }

  .choose-content p {
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .choose-container {
    flex-direction: column; 
    text-align: left;
  }

  .choose-content {
    order: 1;
    text-align: left;
  }

  .choose-stats {
    order: 2;
    margin-top: 25px;
  }

  .stat-box {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 540px) {
  .why-choose-us {
    padding: 40px 20px;
  }

  .choose-content h2 {
    font-size: 1.6rem;
  }

  .choose-content p {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .why-choose-us {
    padding: 30px 15px;
  }

  .choose-content h2 {
    font-size: 1.4rem;
  }

  .choose-content p {
    font-size: 0.9rem;
  }

  .stat-box {
    padding: 30px 20px;
  }
}

/* Brand Logo*/
@media (max-width: 1024px) {
  .brands-section {
    padding: 40px 0;
  }

  .brands-section h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .logo-track img {
    height: 55px;
    margin: 0 20px;
  }

  .partnership-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .brands-section {
    padding: 35px 0;
  }

  .brands-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .logo-slider {
    width: 90%;
  }

  .logo-track img {
    height: 50px;
    margin: 0 18px;
  }

  .partnership-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}

@media (max-width: 540px) {
  .brands-section {
    padding: 30px 0;
  }

  .brands-section h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .logo-slider {
    width: 95%;
  }

  .logo-track img {
    height: 45px;
    margin: 0 15px;
  }

  .partnership-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .brands-section h2 {
    font-size: 16px;
  }

  .logo-slider {
    width: 100%;
  }

  .logo-track img {
    height: 40px;
    margin: 0 10px;
  }

  .partnership-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}



/*Testimonials Section */
@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px; 
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
     .testimonial-text {
    text-align:left;
}
}

@media (max-width: 540px) {
  .testimonials-container {
    grid-template-columns: 1fr; 
    gap: 20px;
    padding: 0 15px; 
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
   .testimonial-text {
    text-align:left;
}
}

@media (max-width: 380px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonial-card {
    padding: 15px 10px;
  }

  .testimonial-text {
    font-size: 0.95em;
    text-align:left;
  }

  .client-name {
    font-size: 1em;
  }

  .client-role {
    font-size: 0.85em;
  }
}

@media (max-width: 320px) {
  .testimonial-card {
    padding: 12px 8px;
  }

  .testimonial-text {
    font-size: 0.9em;
   text-align:left;
  }

  .client-name {
    font-size: 0.95em;
  }

  .client-role {
    font-size: 0.8em;
  }
}


/* Book a call*/
@media (max-width: 1024px) {
    .marketing-hero {
        max-width: 600px;
        padding: 50px 25px;
    }

    .marketing-hero__title {
        font-size: 2.2rem;
    }

    .marketing-hero__tagline {
        font-size: 1.2rem;
    }
}


@media (max-width: 768px) {
    .marketing-hero {
        max-width: 90%;
        padding: 40px 15px;
    }

    .marketing-hero__title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .marketing-hero__tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .marketing-hero__cta-button {
        font-size: 1rem;
        padding: 14px 26px;
    }
}

@media (max-width: 540px) {
    .marketing-hero {
        padding: 35px 15px;
    }

    .marketing-hero__title {
        font-size: 1.8rem;
    }

    .marketing-hero__tagline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .marketing-hero__cta-button {
        width: 100%;
        font-size: 0.90rem;
        padding: 12px 0;
    }
}

@media (max-width: 380px) {
    .marketing-hero {
        padding: 30px 10px;
    }

    .marketing-hero__title {
        font-size: 1.6rem;
    }

    .marketing-hero__tagline {
        font-size: 0.95rem;
    }

    .marketing-hero__cta-button {
        padding: 10px 0;
        font-size: 0.55rem;
    }
}


/* Footer */


@media (max-width: 868px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
    gap: 15px; /* Reduce space between columns */
  }

  .footer-column {
    min-width: 100%;
    margin: 8px 0;
  }
}

@media (max-width: 540px) {
  .footer {
    padding: 40px 15px 20px;
  }

  .footer-logo {
    width: 110px;
  }

  .footer-column h3 {
    font-size: 1em;
    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.85em;
    margin-bottom: 6px;
  }

  .social-icons a {
    font-size: 1.1em;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 10px;
  }

  .footer-column {
    margin-bottom: 6px;
  }
}

@media (max-width: 380px) {
  .footer {
    padding: 30px 10px 15px;
  }

  .footer-logo {
    width: 90px;
    margin-bottom: 10px;
  }

  .footer-column h3 {
    font-size: 0.95em;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.8em;
  }
}
/* Footer Bottom  */

@media (max-width: 768px) {
    .footer-bottom {
        font-size: 0.85em;
    }
}

@media (max-width: 540px) {
    .footer-bottom {
        font-size: 0.8em;
    }
}
@media (max-width: 390px) {
    .footer-bottom {
        font-size: 0.55em;
    }
}
