/* =========================================
   ROOT VARIABLES
========================================= */

:root {
  --black: #000000;
  --red: #c40000;
  --white: #ffffff;
  --gray: #f5f5f5;
}

/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}


/* =========================================
   HEADER
========================================= */

header {
  background: linear-gradient(90deg, #000, #111);
  padding: 20px 80px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 1000;
}

header img {
  height: 55px;
}

nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0%;
  height: 2px;

  background: var(--red);
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--red);
}

nav a:hover::after {
  width: 100%;
}

/* =========================================
   HERO
========================================= */

.hero {
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  animation: heroSlider 45s infinite ease-in-out;

  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.4);

  z-index: -1;
}

@keyframes heroSlider {

  0%   { background-image: url('imgs/Banners/img1.png'); }
  11%  { background-image: url('imgs/Banners/img2.png'); }
  22%  { background-image: url('imgs/Banners/img3.png'); }
  33%  { background-image: url('imgs/Banners/img4.png'); }
  44%  { background-image: url('imgs/Banners/img5.png'); }
  55%  { background-image: url('imgs/Banners/img6.png'); }
  66%  { background-image: url('imgs/Banners/img7.png'); }
  77%  { background-image: url('imgs/Banners/img8.png'); }
  88%  { background-image: url('imgs/Banners/img10.png'); }
  100% { background-image: url('imgs/Banners/img1.png'); }

}

.hero h1 {
  font-size: 60px;
  font-weight: 700;

  animation: fadeDown 1s ease forwards;
}

.hero p {
  margin-top: 15px;
  font-size: 20px;
  opacity: 0.9;
}


/* =========================================
   GENERAL
========================================= */

section {
  padding: 90px 80px;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
}

h2::after {
  content: "";
  width: 70px;
  height: 4px;

  background: var(--red);

  display: block;
  margin-top: 10px;
}

/* =========================================
   ABOUT
========================================= */

#about {
  background-image: url('imgs/Backgrounds/back.png');
  background-repeat: repeat;
  padding: 60px;
}

.about-images {
  margin-top: 35px;

  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-images img {
  width: 30%;
  max-width: 220px;

  border-radius: 12px;

  object-fit: cover;

  box-shadow: 0 6px 15px rgba(0,0,0,0.15);

  transition: 0.4s ease;
  cursor: pointer;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* =========================================
   HISTORY SECTION (LUXURY STYLE)
========================================= */

#history {
  position: relative;
  overflow: hidden;

  padding: 90px 80px;
  text-align: center;

  /* MAIN WHITE BACKGROUND */
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f3f3f3 100%
    );
}

/* =========================================
   LUXURY WHITE LINES
========================================= */

#history::before {
  content: "";

  position: absolute;
  inset: 0;

  background:

    /* LINE 1 */
    linear-gradient(
      125deg,
      transparent 0%,
      rgba(255,255,255,0.98) 16%,
      rgba(210,210,210,0.45) 20%,
      rgba(255,255,255,0.95) 26%,
      transparent 34%
    ),

    /* LINE 2 */
    linear-gradient(
      132deg,
      transparent 28%,
      rgba(255,255,255,0.95) 36%,
      rgba(220,220,220,0.40) 42%,
      rgba(255,255,255,0.95) 48%,
      transparent 56%
    ),

    /* LINE 3 */
    linear-gradient(
      138deg,
      transparent 52%,
      rgba(255,255,255,0.95) 60%,
      rgba(220,220,220,0.40) 66%,
      rgba(255,255,255,0.95) 72%,
      transparent 80%
    ),

    /* LINE 4 */
    linear-gradient(
      145deg,
      transparent 70%,
      rgba(255,255,255,0.95) 78%,
      rgba(220,220,220,0.35) 83%,
      rgba(255,255,255,0.95) 88%,
      transparent 94%
    );

  pointer-events: none;
}

/* =========================================
   EXTRA SOFT SHADOW LAYER
========================================= */

#history::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 18px,
      rgba(225,225,225,0.08) 18px,
      rgba(225,225,225,0.08) 36px
    );

  mix-blend-mode: soft-light;
  opacity: 0.7;

  pointer-events: none;
}

/* KEEP CONTENT ABOVE BACKGROUND */
#history > * {
  position: relative;
  z-index: 2;
}

/* =========================================
   TITLE
========================================= */

#history h2::after {
  margin: 12px auto;
}

.history-intro {
  max-width: 900px;
  margin: 20px auto 50px;

  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* =========================================
   WRAPPER
========================================= */

.history-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;

  flex-wrap: wrap;
}

/* =========================================
   TEXT SIDE
========================================= */

.history-text {
  flex: 1 1 500px;
  text-align: left;
}

.history-text h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #111;
}

.history-text p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
  color: #444;
}

/* =========================================
   IMAGE SIDE
========================================= */

.history-image-side {
  flex: 1 1 450px;

  display: flex;
  gap: 18px;

  align-items: stretch;
}

/* MAIN IMAGE */

.history-image {
  flex: 1;
}

.history-image img {
  width: 70%;
  height: 100%;

  object-fit: cover;

  border-radius: 14px;

  transition: 0.5s ease;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.15);
}

.history-image img:hover {
  transform: scale(1.02);
}

/* SMALL IMAGE COLUMN */

.history-gallery {
  display: flex;
  flex-direction: column;

  gap: 15px;
  width: 180px;
}

.history-gallery img {
  width: 100%;
  flex: 1;

  object-fit: cover;

  border-radius: 12px;

  transition: 0.4s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

.history-gallery img:hover {
  transform: translateY(-4px);
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

  #history {
    padding: 60px 18px;
  }

  .history-wrapper {
    flex-direction: column;
    gap: 35px;
  }

  .history-text {
    text-align: center;
  }

  .history-text h3 {
    font-size: 24px;
  }

  .history-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .history-image-side {
    flex-direction: column;
    align-items: center;
  }

  .history-image img {
    width: 100%;
    max-width: 320px;
  }

  .history-gallery {
    width: 100%;

    flex-direction: row;
    justify-content: center;
  }

  .history-gallery img {
    height: 120px;
  }
}

/* =========================================
   COLLECTIONS
========================================= */

#categories {
  background-image: url('imgs/Backgrounds/back.png');
  background-repeat: repeat;

  padding: 90px 80px;
  border-radius: 20px;
}

/* GRID */

.grid {
  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;
}

/* CARD */

.card {
  flex: 1 1 220px;
  max-width: 240px;

  background: var(--gray);

  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

  transition: 0.4s ease;

  animation: floatCard 4s ease-in-out infinite;
}

/* DIFFERENT DELAYS */

.card:nth-child(2) {
  animation-delay: 0.5s;
}

.card:nth-child(3) {
  animation-delay: 1s;
}

.card:nth-child(4) {
  animation-delay: 1.5s;
}

.card:nth-child(5) {
  animation-delay: 2s;
}

/* FLOAT ANIMATION */

@keyframes floatCard {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.card:hover {
  transform: translateY(-12px);
}

.card img {
  width: 100%;
  height: 220px;

  object-fit: cover;

  transition: 0.5s ease;
  cursor: pointer;
}

.card img:hover {
  transform: scale(1.06);
}

.card h3 {
  text-align: center;
  padding: 20px;
}

/* =========================================
   COLLECTION TEXT
========================================= */

.collection-text {
  margin-top: 55px;

  display: flex;
  justify-content: center;

  position: relative;
}

.collection-text::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0;

  width: 100%;
  height: 2px;

  background:
    linear-gradient(
      to right,
      transparent,
      #c40000,
      transparent
    );

  z-index: 1;
}

.collection-text p {
  max-width: 950px;

  text-align: center;

  font-size: 17px;
  line-height: 2;

  color: #000;

  padding: 0 30px;

  background: rgba(255,255,255,0.95);

  border-radius: 50px;

  position: relative;
  z-index: 2;

  box-shadow: 0 5px 20px rgba(0,0,0,0.2);

  transition: 0.4s ease;
}

.collection-text p:hover {
  transform: translateY(-4px);
}

.collection-text span {
  color: #ff2b2b;
  font-weight: 600;
}

/* =========================================
   BRAND
========================================= */

#brand {
  background-image: url('imgs/Backgrounds/back2.png');
  background-repeat: repeat;

  padding: 90px 80px;

  text-align: center;
  color: white;
}

.brand-gallery {
  margin-top: 40px;

  display: flex;
  justify-content: center;
  gap: 25px;

  flex-wrap: wrap;
}

.brand-card {
  position: relative;

  width: 28%;
  max-width: 300px;

  border-radius: 15px;
  overflow: hidden;

  transition: 0.4s ease;
}

.brand-card img {
  width: 100%;
  border-radius: 15px;

  transition: 0.5s ease;
  cursor: pointer;
}

.brand-card:hover img {
  transform: scale(1.06);
}

.brand-card button {
  position: absolute;

  bottom: 15px;
  left: 50%;

  transform: translateX(-50%);

  background: var(--red);
  color: white;

  border: none;

  padding: 10px 20px;

  border-radius: 8px;

  cursor: pointer;

  opacity: 0;

  transition: 0.3s ease;
}

.brand-card:hover button {
  opacity: 1;
}

/* =========================================
   DISCOUNTS
========================================= */

.discount {
  text-align: center;
  padding: 80px 20px;
}

.discount-box {
  margin-top: 40px;

  display: flex;
  justify-content: center;
  gap: 20px;

  flex-wrap: wrap;
}

.h-card {
  width: 280px;

  overflow: hidden;
  border-radius: 15px;

  transition: 0.4s ease;
}

.h-card img {
  width: 100%;
  border-radius: 15px;

  transition: 0.5s ease;
}

.h-card:hover img {
  transform: scale(1.08);
}

.h-card:hover {
  transform: translateY(-8px);
}

.h-content {
  margin-top: 10px;
}

.discount h2 {
  text-align: center;
}

.discount h2::after {
  margin: 12px auto;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact {
  background: url("imgs/Backgrounds/back.png");

  background-size: cover;
  background-position: center;

  padding: 90px 20px;
  text-align: center;
}

/* TITLE */

.contact h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

/* 🔥 CENTER RED UNDERLINE */

.contact h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c40000;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  bottom: -12px;
  border-radius: 20px;
}

/* DELIVERY */

.delivery {
  font-size: 18px;
  color: #222;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* OPEN HOURS */

.open-hours {
  font-size: 18px;   /* 🔥 increased */
  color: #444;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  font-weight: 500;
}

/* WHATSAPP */

.whatsapp-link {
  font-size: 16px;
  margin-bottom: 35px;
}

.whatsapp-link a {
  color: #c40000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-link a:hover {
  color: #000;
}

/* MAP */

.contact iframe {
  width: 100%;
  max-width: 1100px;
  height: 400px;

  border: 0;
  border-radius: 18px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);

  transition: 0.4s ease;
}

.contact iframe:hover {
  transform: scale(1.01);
}

/* MOBILE */

@media (max-width: 768px) {

  .contact {
    padding: 70px 18px;
  }

  .contact h2 {
    font-size: 32px;
  }

  .delivery {
    font-size: 15px;
  }

  .open-hours {
    font-size: 16px;
  }

  .whatsapp-link {
    font-size: 14px;
  }

  .contact iframe {
    height: 300px;
  }
}

/* =========================================
   FOOTER
========================================= */

.lux-footer {
  background: linear-gradient(180deg, #000, #0f0f0f);

  color: white;

  padding: 70px 8% 25px;

  border-top: 3px solid var(--red);

  position: relative;
  overflow: hidden;
}

.lux-footer::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  background: rgba(196,0,0,0.18);

  filter: blur(100px);

  top: -100px;
  right: -80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;

  flex-wrap: wrap;

  position: relative;
  z-index: 2;
}

.footer-box {
  flex: 1 1 250px;
}

.footer-logo {
  height: 65px;
  margin-bottom: 20px;
}

.footer-box h3 {
  margin-bottom: 18px;
}

.footer-box h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--red);
  display: block;
  margin-top: 8px;
}

.footer-box p,
.footer-box a {
  color: #d5d5d5;
}

.footer-box a {
  display: block;

  text-decoration: none;

  margin-bottom: 10px;

  transition: 0.3s ease;
}

.footer-box a:hover {
  color: #ff3d3d;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

  margin-top: 40px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  flex-wrap: wrap;
}

.creator span {
  color: #ff2d2d;
  font-weight: 700;
}

/* =========================================
   IMAGE MODAL
========================================= */

.img-modal {
  display: none;

  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.92);

  z-index: 99999;

  justify-content: center;
  align-items: center;

  animation: fadeIn 0.3s ease;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;

  border-radius: 12px;

  animation: zoomIn 0.4s ease;
}

.close-modal {
  position: absolute;

  top: 25px;
  right: 35px;

  color: white;

  font-size: 42px;

  cursor: pointer;
}

.close-modal:hover {
  color: red;
}

/* =========================================
   LUXURY FASHION TYPOGRAPHY
========================================= */

/* Main Titles */
.hero h1,
h2,
h3,
.history-text h3,
.footer-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Title */
.hero h1 {
    font-size: 72px;
    line-height: 1.1;
}

/* Section Titles */
h2 {
    font-size: 48px;
    font-weight: 700;
}

/* Card Titles */
.card h3,
.h-content h3 {
    font-size: 28px;
}

/* Navigation */
nav a {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Paragraphs */
p,
a,
button,
span {
    font-family: 'Poppins', sans-serif;
}

/* Brand Section Paragraph */
#brand p,
#about p,
.history-text p,
.collection-text p {
    font-size: 17px;
    line-height: 2;
}

/* =========================================
   MODAL ANIMATIONS
========================================= */

@keyframes zoomIn {

  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

  section {
    padding: 70px 30px;
  }

  header {
    padding: 15px 25px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    justify-content: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .about-images img {
    width: 45%;
  }

  .card {
    max-width: 45%;
  }

  .brand-card {
    width: 45%;
  }

  .h-card {
    width: 45%;
  }
}

@media (max-width: 600px) {

  section,
  #about,
  #categories,
  #brand,
  #contact {
    padding: 60px 18px;
  }

  header img {
    height: 45px;
  }

  h2 {
    font-size: 28px;
    text-align: center;
  }

  h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    height: 85vh;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .about-images img {
    width: 48%;
  }

  .grid {
    gap: 15px;
  }

  .card,
  .brand-card,
  .h-card {
    width: 100%;
    max-width: 100%;
  }

  .contact iframe {
    height: 300px;
  }

  .footer-content,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-box a {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-box h3::after {
    margin: 8px auto 0;
  }

  .collection-text p {
    font-size: 14px;
    line-height: 1.9;

    padding: 15px 18px;

    border-radius: 25px;
  }
    .hero h1{
      font-size: 42px;
  }

  h2{
      font-size: 34px;
  }

  .card h3,
  .h-content h3{
      font-size: 22px;
  }
  .hero-logo{
    width: 90px;
}

.hero-brand{
    font-size: 22px;
    letter-spacing: 2px;
}

.hero h1{
    font-size: 42px;
}
}

/* =========================================
   CENTER BRAND TITLE UNDERLINE
========================================= */

.brand h2 {
  text-align: center;
}

.brand h2::after {
  margin: 12px auto;
}


/* =========================================
   ABOUT US PARAGRAPH STYLE
========================================= */

#about p {
  max-width: 10000px;

  margin: 45px auto 0;

  text-align: center;

  font-size: 17px;
  line-height: 2;

  color: #000;

  padding: 0 30px;

  position: relative;
  z-index: 2;

  background: rgba(255,255,255,0.95);

  border-radius: 50px;

  box-shadow:
    0 5px 20px rgba(0,0,0,0.18);

  transition: 0.4s ease;
}


/* HOVER EFFECT */
#about p:hover {
  transform: translateY(-4px);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {

  #about p {

    font-size: 14px;
    line-height: 1.9;

    padding: 15px 18px;

    border-radius: 25px;
  }

  #about p::before {
    left: -20px;
    width: calc(100% + 40px);
  }
}
.creator a {
  color: #ff2d2d !important;
  text-decoration: none;
  font-weight: 700;
}

.creator a:hover {
  color: white !important;
  text-decoration: none;
}

/* Luxury Paragraph Font */

p,
.collection-text p,
.history-text p,
#about p,
#brand p,
.history-intro,
.delivery,
.open-hours,
.footer-box p {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 2;
    letter-spacing: 0.2px;
}

nav a,
button,
.whatsapp-link a,
.footer-box a {
    font-family: 'Lora', serif;
}
/* Hero Brand Name */

.hero-brand{
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

/* Main Hero Heading */

.hero h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 85px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 1px;
}
/* Hero Content */

.hero-content{
    text-align: center;
}

/* Hero Logo */

.hero-logo{
    width: 140px;
    height: auto;
    margin-bottom: 15px;

    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));

    transition: 0.4s ease;
    display:inline-block;
    padding:12px;
    border:2px solid rgba(255,255,255,0.9);
    border-radius:8px;

    box-shadow:
      0 0 12px rgba(255,255,255,0.8),
      0 0 30px rgba(255,255,255,0.5);

    animation: glowSquare 2.5s ease-in-out infinite;
}



.hero-logo:hover{
    transform: scale(1.05);
}

/* CONTACT INFO CARDS */

.contact-cards{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;

    margin-top:60px;
    margin-bottom:60px;
}

.contact-card{
    width:220px;
    text-align:center;

    transition:0.4s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card i{
    width:110px;
    height:110px;

    border:1px solid #ddd;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    font-size:40px;
    color:#c40000;

    transition:0.4s ease;
}

.contact-card:hover i{
    background:#c40000;
    color:#fff;
    border-color:#c40000;
}

.contact-card h3{
    font-size:28px;
    color:#222;
    margin-bottom:10px;

    font-family:'Cormorant Garamond', serif;
}

.contact-card p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}
.logo-wrap{
  position: relative;
  display: inline-block;
}

.logo-wrap::before{
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;

  border-radius: 50%;
  border: 2px solid transparent;

  border-top: 2px solid #fff;
  border-right: 2px solid rgba(255,255,255,0.4);

  animation: rotateRing 3s linear infinite;
}

@keyframes rotateRing{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}
#OurBrands {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

#OurBrands h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.brands-images {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.brands-images img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;

    /* Keep original colors */
    opacity: 1;

    /* Slow random breathing effect */
    animation: pulse 4s ease-in-out infinite;
}

.brands-images img:nth-child(2) { animation-duration: 5s; }
.brands-images img:nth-child(3) { animation-duration: 6s; }
.brands-images img:nth-child(4) { animation-duration: 4.5s; }
.brands-images img:nth-child(5) { animation-duration: 5.5s; }
.brands-images img:nth-child(6) { animation-duration: 6.5s; }
.brands-images img:nth-child(7) { animation-duration: 4.8s; }
.brands-images img:nth-child(8) { animation-duration: 5.8s; }

.brands-images img:hover {
    transform: scale(1.15);
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer Social Buttons */
.footer-social{
    display:flex;
    gap:10px;
    margin-top:20px;
    flex-wrap:wrap;
}

.social-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    color:#fff;
    transition:all .3s ease;
    border:1px solid rgba(255,255,255,0.15);
}

.social-btn i{
    font-size:16px;
}

.call-btn{
    background:linear-gradient(135deg,#222,#444);
}

.whatsapp-btn{
    background:linear-gradient(135deg,#25D366,#128C7E);
}

.facebook-btn{
    background:linear-gradient(135deg,#1877F2,#0d5fd8);
}

.social-btn:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 0 18px rgba(196,0,0,0.5);
}

.call-btn:hover{
    box-shadow:0 0 20px rgba(255,255,255,0.25);
}

.whatsapp-btn:hover{
    box-shadow:0 0 20px rgba(37,211,102,0.5);
}

.facebook-btn:hover{
    box-shadow:0 0 20px rgba(24,119,242,0.5);
}

