@font-face {
  font-family: "Century751-BT";
  src: url("assets/fonts/Century751-No2-BT Bold.woff2") format("woff2"),
       url("assets/fonts/Century751-No2-BT Bold.woff") format("woff");
  font-weight: 800; /* for bold */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century751-SemiBd";
  src: url("assets/fonts/Century751-SeBd-BT Semi Bold.woff2") format("woff2"),
       url("assets/fonts/Century751-SeBd-BT.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Fallback for Lucida Sans */
body, button, input, textarea { font-family: "Lucida Sans", Arial, sans-serif; }

:root{
  --accent: #FAD672; /* main yellow */
  --accent-dark: #f5c84f;
  --muted: #4a4a4a;
  --max-width: 1100px;
}

/* Reset & container */
*{box-sizing:border-box}
html,body{height:100%;margin:0}
.container{max-width:var(--max-width);margin:0 auto;padding:0 0}

/* Fixed Navbar */
/* Fixed Navbar - Height and Layout Fix */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px; /* Increased to prevent text clipping */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header .nav-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.site-header .menu {
  display: flex;
  gap: 20px; /* Tighter gap to fit the classic typography elegantly */
  align-items: center;
  font-size: 14px;
}

.site-header a {
  color: #111;
  text-decoration: none;
}

.site-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}

/* Lang button */
.lang-btn{
  border:1px solid rgba(0,0,0,0.08);
  padding:8px 12px;
  border-radius:8px;
  background:#fff;
  font-weight:600;
  cursor:pointer;
}


/* ===== MEGA MENU ===== */

.has-mega-menu {
  position: relative;
}

/* Hidden by default */
.mega-menu {
  position: absolute;
  top: 100%; /* Aligns perfectly with the bottom of the 80px header */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 900px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 999;
}

/* Glass effect container */
.mega-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;

  padding: 40px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Columns */
.mega-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Titles */
.mega-column h4 {
  font-family: "Century751-SemiBd", sans-serif;
  font-size: 16px;
  color: #210B04;
  margin-bottom: 10px;
}

/* Links */
.mega-column a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: all 0.25s ease;
  position: relative;
}

/* Hover effect */
.mega-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
}

.mega-column a:hover {
  color: #000;
}

.mega-column a:hover::after {
  width: 100%;
}

/* SHOW on hover */
.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}
/* Smooth animation */
.menu-item:hover .mega-column a {
  animation: fadeUp 0.4s ease forwards;
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger button */
/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  padding: 16px;
  text-align: center;
}
.mobile-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.mobile-menu.open { display: flex; }

/* Responsive: hide desktop menu on mobile, show hamburger */
@media (max-width: 768px){
  .menu { display: none !important; } /* hide desktop menu */
  .hamburger { display: flex; }       /* show hamburger */
}

/* Triggered animation */
.about-image.show {
  animation: slideInLeft 1s ease forwards;
}

.about-text.show {
  animation: slideInRight 1s ease 0.2s forwards;
}

/* Keyframes for the slide effect */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}




/* HERO */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 120vh !important; /* 180vh was too tall */
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;

  /* keep gradient + full image visible and scrollable */
  background: linear-gradient(to bottom, #FAD672 60%, #ffffff 100%),
              url('<?php echo get_template_directory_uri(); ?>/assets/images/hero.svg') no-repeat center top;
  background-size: 100% auto; 
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center top;
}


/* hero inner */


.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 0;
  margin-top: -300px; /* move up by 60px */
}


.hero .small {
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
  font-weight: 300;
  font-size: 17px;
  margin: 0 0 0;
  color: #111;
  padding-bottom: 20px;
  padding-top:0px;
}

.hero h1 {
  margin: 0 auto;
  font-family: "Century751-BT", "Georgia", serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05; /* smaller line spacing */
  letter-spacing: 0.6px;
  color: #210B04;
  display: inline-block;
  transform-origin: center;
  animation: pulse 3s ease-in-out infinite;
  transition: transform 0.18s ease;
}

.hero h1:hover {
  transform: scale(1.05);
}

.hero .sub {
  margin-top: 18px;
  font-family: "Lucida Sans", Arial, sans-serif;
  font-size: 20px;
  color: #222;
  margin-bottom: 5px;
  line-height: 1.25; /* slightly tighter */
}


/* illustration */
.hero-illustration{
  margin-top:34px;
  max-width:840px;
  width:100%;
  display:block;
  border-radius:6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  padding-bottom:0 ;
  margin-bottom:0 ;
}


/* ── HERO BUTTON ── */
.hero-buttons {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
 
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: "Lucida Sans", Arial, sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
 
.hero-btn--primary {
  background: #210B04;
  color: #FAD672;
  box-shadow: 0 6px 24px rgba(33, 11, 4, 0.22);
}
 
.hero-btn--primary svg {
  transition: transform 0.22s ease;
}
 
.hero-btn--primary:hover {
  background: #3a1508;
  box-shadow: 0 10px 32px rgba(33, 11, 4, 0.32);
  transform: translateY(-2px);
}
 
.hero-btn--primary:hover svg {
  transform: translateX(5px);
}
 
.hero-btn:active {
  transform: translateY(0px) scale(0.97);
}
 
@media (max-width: 768px) {
  .hero-buttons {
    margin-top: 28px;
  }
  .hero-btn {
    padding: 13px 28px;
    font-size: 15px;
  }
}
 

/* subtle pulse animation */
@keyframes pulse {
  0% { transform: scale(1); filter:brightness(1); }
  50% { transform: scale(1.01); filter:brightness(1.02); }
  100% { transform: scale(1); filter:brightness(1); }
}
/* Responsive Mobile Hero - Asset Override */
@media (max-width: 768px) {
  .hero {
    /* Uses the new vertical phone svg instead of the plain yellow hex color */
    background: url('../assets/images/herophone.svg') no-repeat center top !important;
    background-size: cover; /* Ensures the graphic scales smoothly across various screen sizes */
    
    /* Adjust height and top margins dynamically so text flows comfortably inside mobile viewpoint */
    min-height: 100vh !important; 
    padding-top: 100px;
  }

  .hero-inner {
    margin-top: -340px !important; /* Resets the negative desktop offset so text elements don't overlap the header */
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 32px; /* Tighter typography scaling down nicely for compact touch displays */
  }

  .hero .sub {
    font-size: 16px;
  }
}
/* Responsive */
@media (max-width:900px){
  .hero h1{font-size:44px}
  .hero .sub{font-size:20px;margin-top:20px}
  .hero .small{font-size:18px}
  .hero{min-height:520px;padding-top:40px}
}

/* Utility spacing for content below */
.site-content{padding:80px 0 160px}


/* ABOUT SECTION */
.about-section {
  background: linear-gradient(to bottom, #FAD672 0%, #ffffff 35%);
  padding: 0 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px; /* ✅ more space between image and text */
  flex-wrap: nowrap;

}

.about-image {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1s ease forwards;

}

.about-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  padding-top: 50px;
  margin-top: 100px;
}

.about-text {
  flex: 1;

  text-align: left;
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1s ease 0.2s forwards;
}

.about-title {
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
  font-size: 35px;
  color: #210B04;
  margin-bottom: 32px; /* ✅ more space below title */
  padding-top: 50px;
  margin-top: 100px;
}

.about-paragraph {
  font-family: "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
  color: #575757;
  line-height: 1.7;
  margin-bottom: 24px; 
}

/* ✅ Smooth slide + fade animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive layout for mobile */
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

}


/* CONTACT SECTION STYLING */

/* Layout */
.contact-section {
  background: #fff;
  padding: 60px 0;
}

.contact-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* Left Image */
.contact-left {
  flex: 0 0 45%;
  display: block;
}
.contact-left img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* Right Contact Info */
.contact-right {
  flex: 1 1 50%;
}

.contact-right h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #210B04;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #210B04;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #f9c846;
  transform: translateX(4px);
}

.contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Button */
.contact-btn-wrapper {
  margin-top: 25px;
}
.contact-btn-wrapper .btn-text {
  display: inline-block;
  background-color: #FAD672;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.contact-btn-wrapper .btn-text:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
  .contact-inner {
    flex-direction: column;
    align-items: center; /* CENTER horizontally */
    text-align: center;  /* CENTER text */
    gap: 30px;
  }

  /* Hide left image */
  .contact-left {
    display: none;
  }

  .contact-right h2 {
    font-size: 28px;
  }

  .contact-item {
    font-size: 16px;
  }

  .contact-icon {
    width: 24px;
    height: 24px;
  }

  .contact-btn-wrapper .btn-text {
    padding: 10px 20px;
  }
}


/* ✨ SERVICES SECTION (no background rectangles) */
.services-section1 {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.services-section1 h2 {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 50px;
  font-family: "Georgia", serif;
}

.services-section1 h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.services-container1 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  flex: 1 1 300px;
  max-width: 340px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* 🖼️ Image styling */
.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* 🪶 Title below image */
.service-title {
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
  font-size: 20px;
  color: #210B04;
  margin-top: 18px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--accent-dark);
}

/* ✨ Subtle fade-in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.services-container .service-card {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.services-container .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-container .service-card:nth-child(2) { animation-delay: 0.3s; }
.services-container .service-card:nth-child(3) { animation-delay: 0.5s; }

/* ✅ Mobile layout */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
    gap: 50px;
  }
  .service-card img {
    height: 240px;
  }
}

/* 🎨 LATEST WORK SECTION — FINAL FIX */
.creative-works {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  gap: 60px;
  background: linear-gradient(to top, #FAD672 0%, #ffffff 35%);
  overflow: hidden;
}

.works-left {
  width: 40%;
  position: relative;
  z-index: 2;
}

.works-left h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #210B04;
  margin-bottom: 20px;
  line-height: 1.2;
}



.works-left h2 span {
  background: linear-gradient(90deg,  #210B04,#1A4E7C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.works-left p {
  color: #210B04;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 400px;
}

.btn-explore {
  display: inline-block;
  background:#210B04;
  color: #fff;
  padding: 14px 28px;
  border-radius: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-explore:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.works-right {
  width: 60%;
  position: relative;
  height: 450px;
}

.floating-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.item {
  position: absolute;
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.item:hover {
  transform: scale(1.08);
}

.item1 { top: 0; left: 80px; animation-delay: 0s; }
.item2 { top: 120px; right: 60px; animation-delay: 1s; }
.item3 { bottom: 60px; left: 150px; animation-delay: 2s; }
.item4 { bottom: 0; right: 120px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 900px) {
  .creative-works {
    flex-direction: column;
    text-align: center;
  }

  .works-left, .works-right {
    width: 100%;
  }

  .works-right {
    height: 350px;
    margin-top: 40px;
  }
}


/* ✨ BRANDS SECTION */
.brands-section {
  background: #FAD672;
  padding: 80px 0;
  text-align: center;
}

.section-subtitle {
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
  font-size: 22px;
  color: #210B04;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  animation: slideBrands 15s linear infinite;
  overflow: hidden;
}

.brands-logos img {
  width: 120px;
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brands-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* 🌀 Simple sliding animation */
@keyframes slideBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 900px) {
  .brands-logos {
    gap: 30px;
    animation: none; /* disable sliding for small screens */
  }
}

/* ✉️ CONTACT SECTION CLEANED & CENTERED */

/* Container & Layout */
.contact-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center the content horizontally */
  gap: 50px;
  margin: 50px auto;
  max-width: 1200px; /* optional max width */
  padding: 0 20px;
}

.contact-page-left,
.contact-page-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Left side image */
.contact-page-left img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto 0; /* centered horizontally */
}

/* Form Container */
.contact-form-container {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Form Fields */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #9f8643;
  box-shadow: 0 0 8px rgba(159,134,67,0.3);
}

.contact-form textarea {
  min-height: 120px;
}

/* Submit Button */
.contact-form .btn-text {
  display: inline-block;
  background-color: #FAD672;
  color: #fff;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact-form .btn-text:hover {
  background-color: #f9c846;
  transform: translateY(-2px);
}

/* Success/Error Messages */
.success-msg,
.error-msg {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}
.success-msg {
  background-color: #d4edda;
  color: #155724;
}
.error-msg {
  background-color: #f8d7da;
  color: #721c24;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .contact-page-left,
  .contact-page-right {
    flex: 1 1 100%;
    text-align: center; /* center the left content on mobile */
  }

  .contact-page {
    gap: 30px;
  }

  .contact-form-container {
    padding: 25px 20px;
  }
}

/* ✨ Text-style link button */
.btn-text {
  display: inline-block;
  margin-top: 25px;
  color: #f9c846;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.btn-text:hover {
  border-bottom: 1px solid #f9c846;
  color: #210B04;
  transform: translateX(5px);
}

/* ✅ Responsive */
@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .contact-right h2 {
    font-size: 30px;
  }

  .contact-item {
    justify-content: center;
  }

  .btn-text {
    font-size: 16px;
  }
}


/* 🌞 BIG ELEGANT FOOTER */
.site-footer {
  background: #210B04;
  color: #fff;
  padding: 100px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-col {
  flex: 1 1 300px;
  min-width: 260px;
}

.footer-col h3 {
  font-family: "Century751-BT", "Georgia", serif;
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col h3 span {
  color: #fff;
}

.footer-col p {
  font-family: "Lucida Sans", Arial, sans-serif;
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: "Century751-SemiBd", "Lucida Sans", sans-serif;
}

/* 🧭 Quick Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #eee;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

/* ☎ Contact */
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--accent);
  font-size: 18px;
}

/* 🌐 Social Icons */
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

/* 💛 Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 80px;
  padding-top: 25px;
}

.footer-bottom p {
  font-size: 14px;
  color: #aaa;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-col p {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }
}




/* CONTACT PAGE */
/* 🌇 Contact Hero */
.contact-hero {
  background: linear-gradient(120deg, #f9c846, #f8d87a);
  text-align: center;
  padding: 120px 20px 100px;
  color: #210B04;
}

.contact-hero h1 {
  font-size: 54px;
  font-family: "Century751-SemiBd", Arial, sans-serif;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 20px;
  font-family: "Lucida Sans", Arial, sans-serif;
  color: #2b1a0e;
  opacity: 0.9;
}

/* 💌 Contact Section */
/* 💌 Contact Section */
.contact-page {
  background: #fff;
  padding: 120px 0;
}

.contact-page-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.contact-page-left {
  flex: 1;
  min-width: 320px;
}

.contact-page-title {
  font-size: 40px;
  color: #210B04;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-page-desc {
  color: #4a4334;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 500px;
}

.contact-illustration img {
  max-width: 400px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.1));
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.contact-page-right {
  flex: 1;
  min-width: 350px;
}

/* FORM CONTAINER — Shorter and Classy */
.form-container {
  border-radius: 1.5rem;
  width: 80%;
  max-width: 700px;
  padding: 2rem 3rem;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(33, 11, 4, 0.1);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);

}

.form-container input,
.form-container textarea {
  border: 1px solid rgba(33, 11, 4, 0.3);
  border-radius: 10px;
}

.form-container button {
  background-color: #210B04;
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-container button:hover {
  background-color: #3a1b12;
}


/* Scroll animation */
[data-scroll] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}


/* 🗺️ Map Section */
.contact-map {
  background: #fff8e2;
  text-align: center;
  padding: 100px 0;
}

.contact-map h2 {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 40px;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-page-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-hero h1 {
    font-size: 42px;
  }
  .contact-page-title {
    font-size: 30px;
  }
}


/* Form container */
.wpcf7-form {
  background: #fffdfa;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Input fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #f9c846;
  box-shadow: 0 0 8px rgba(249, 200, 70, 0.4);
  outline: none;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  background: #f9c846;
  color: #210B04;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
  background: #f8d87a;
  transform: translateY(-2px);
}





/* ===== ABOUT PAGE ===== */
/* ABOUT PAGE */
.about-hero-section {
  background: linear-gradient(135deg, #FAD672 0%, #fceaa3 100%);
  color: #210B04;
  text-align: center;
  padding: 180px 20px 160px;
  position: relative;
  overflow: hidden;
}

.about-hero-container h1,
.about-hero-container p {
  opacity: 0;
  transform: translateY(30px);
  animation: textFadeUp 1s ease forwards;
}

.about-hero-container h1 {
  font-size: 48px;
  color: #210B04;
  margin-bottom: 20px;
  animation-delay: 0.2s;
}

.about-hero-container p {
  font-size: 18px;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  animation-delay: 0.5s;
}

/* Text fade-up animation */
@keyframes textFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Our Story */
.our-story {
  padding: 100px 20px;
}
.story-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}
.story-text {
  flex: 1;
}
.story-text h2 {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 50px;
  font-family: "Georgia", serif;
}
.story-text p {
  font-family: "Lucida Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
.story-image {
  flex: 0 0 40%;
}
.story-image img {

}
/* Our Values - Minimal Elegant Style */
.our-values {
  background: #F5F5F5;
  text-align: center;
  padding: 100px 20px;
}

.our-values h2 {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 50px;
  font-family: "Georgia", serif;
}

.values-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #4A2F1D; /* rich brown rectangle */
  border-radius: 30px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.value-item img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.value-item span {
  color: #FAD672; /* gold text */
  font-family: "Georgia", serif;
  font-size: 18px;
}

/* hover animation */
.value-item:hover img {
  transform: scale(1.2);
}



/* ===== OUR PROCESS ===== */
.our-process {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  background: #fffdf7;
}

.our-process h2 {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 70px;
  font-family: "Georgia", serif;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  position: relative;
  flex-wrap: wrap;
}

/* connecting line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, #FAD672, #FAD67280, #FAD672);
  z-index: 0;
  animation: lineGlow 4s infinite alternate;
}

/* Step item */
.step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 160px;
  transition: all 0.3s ease;
}

.step .icon {
  background: #FAD672;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 12px rgba(250, 214, 114, 0.3);
  animation: float 5s ease-in-out infinite;
}

.step .icon img {
  width: 45px;
  height: 45px;
}

.step h3 {
  color: #210B04;
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
}

.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* wave layout */
.step1, .step4 { margin-top: 0; }
.step2, .step3 { margin-top: 60px; }

/* hover */
.step:hover .icon {
  background: #ffde85;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(250, 214, 114, 0.4);
}

/* animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes lineGlow {
  0% { opacity: 0.4; filter: drop-shadow(0 0 3px #FAD672); }
  100% { opacity: 1; filter: drop-shadow(0 0 10px #FAD672); }
}

/* responsive */
@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .process-steps::before {
    display: none;
  }

  .step {
    width: 80%;
    margin-top: 0 !important;
  }

  .step .icon {
    width: 70px;
    height: 70px;
  }
}




/* Ratings & Feedback */
.ratings-feedback {
  background: #fafafa;
  text-align: center;
  padding: 70px 20px;
  border-radius: 20px;
  margin: 80px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.ratings-feedback h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #210B04;
  letter-spacing: 0.5px;
}

.ratings-feedback .small {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.ratings-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
}

/* Site Reviews Plugin Styling */
.site-review {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 25px 20px;
  width: 260px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.site-review .glsr-star-rating {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 10px;
}

.site-review blockquote {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 10px;
}

.site-review cite {
  display: block;
  font-weight: bold;
  color: #210B04;
  font-size: 13px;
  margin-top: 5px;
}

/* Button */
.rating-btn-container {
  text-align: center;
  margin-top: 10px;
}

.rating-btn {
  background: #FAD672;
  color: #210B04;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.rating-btn:hover {
  background: #ffde85;
  transform: translateY(-2px);
}

/* Small Animation on Scroll */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}




/* ===== Digital Agency ===== */

/* ===== GLOBAL TYPOGRAPHY ===== */
body {
  font-family: "Lucida Sans", Arial, sans-serif;
  color: #210B04;
  background-color: #FAF8F5;
}

h1, h2, h3, h4 {
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
}

/* ===== HERO ===== */
.hero-agency {
  background: linear-gradient(135deg, #FAD672 0%, #fceaa3 100%);
  color: #210B04;
  text-align: center;
  padding: 180px 20px 160px;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.hero-agency::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: glowMove 8s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease;
}

.hero-agency h1 {
  font-size: 55px;
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-weight: 700;
}

.hero-agency p {
  font-size: 18px;
  max-width: 600px;
  margin-top:30px;
  margin-bottom:40px;
  line-height: 1.6;
  color: #3a2a1a;
}

.cta-btn {
  background: #210B04;
  color: #FAD672;
  font-weight: 500;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #3a2a1a;
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* The rest (services + réalisations) remains the same */


/* ===== SERVICES ===== */
.services-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 20px;
  gap: 60px;
  flex-wrap: wrap;
}

.services-content {
  flex: 1 1 400px;
}

.services-image {
  flex: 1 1 400px;
  text-align: right;
}

.services-image img {
  max-width: 90%;
  animation: float 5s ease-in-out infinite;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #210B04;
  position: relative;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #FAD672;
  display: block;
  margin-top: 12px;
  border-radius: 2px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.services-list li:hover {
  transform: translateX(8px);
}

.services-list h3 {
  font-size: 20px;
  color: #210B04;
  margin-bottom: 8px;
}

.services-list p {
  font-size: 15px;
  color: #4b3b2a;
}







/* ===== RÉALISATIONS ===== */
.realisations-section {
  background: #fffdf7;
  padding: 120px 40px;
  font-family: "Lucida Sans", Arial, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

.section-subtitle {
  color: #7a6a4f;
  font-size: 16px;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* GRID */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-content: center;
}

/* ITEM */
.realisation-item {
  position: relative;
  height: 260px;
  background: #d9c38b;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.realisation-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #e9b94c 0%, #c79d35 100%);
  opacity: 0.05;
  transition: all 0.5s ease;
}

.realisation-item:hover::before {
  opacity: 0.15;
}

/* Overlay info */
.realisation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 11, 4, 0.8);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
}

.realisation-item:hover .realisation-overlay {
  opacity: 1;
}

.realisation-overlay h3 {
  font-family: "Century751-SemiBd", "Lucida Sans", Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fad672;
  letter-spacing: 0.5px;
}

.realisation-overlay p {
  font-size: 0.95rem;
  color: #f5f2ec;
  max-width: 280px;
  line-height: 1.5;
}

/* Hover motion */
.realisation-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Scroll reveal */
[data-scroll] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}
















/* =====  visuelle identity ===== */


/* ===== HERO ===== */
.hero-identity {
  background: linear-gradient(135deg, #1C1A17 0%, #3D3A33 100%);
  color: #F5E9C7;
  text-align: center;
  padding: 180px 20px 160px;
  position: relative;
  overflow: hidden;
}

.hero-identity::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: identityGlow 10s linear infinite;
}

.identity-hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease;
}

.hero-identity h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-identity p {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 40px;
  color: #e9d9b8;
  line-height: 1.6;
}

.identity-cta-btn {
  background: #F5E9C7;
  color: #1C1A17;
  font-weight: 500;
  padding: 14px 38px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.identity-cta-btn:hover {
  background: #fff6d6;
  transform: translateY(-2px);
}

/* ===== VISUAL IDENTITY SHOWCASE ===== */
/* ===== VISUAL IDENTITY SECTION ===== */
.identity-services {
  width: 100%;
  color: #210B04;
  text-align: center;
  padding-top: 120px;
  overflow: hidden;
}

.identity-header {
  margin-bottom: 80px;
  padding: 0 20px;
}

.identity-title {
  font-size: 36px;
  color: #210B04;
  margin-bottom: 50px;
  font-family: "Georgia", serif;
}

.identity-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #E4C56C;
  display: block;
  margin: 14px auto 0;
  border-radius: 3px;
}

.identity-subtitle {
  color: #210B04;
  font-size: 16px;
  max-width: 600px;
  margin: 20px auto 0;
}

/* ===== SERVICES ZONE (Two-Line Version) ===== */
.services-zone {
  background-color: #210B04;
  padding: 100px 0 140px 0; /* Added bottom padding to give space for tooltips */
  overflow: hidden;
  position: relative;
}

/* Base setup for smooth scrolling width calculation */
.services-slider {
  display: flex;
  gap: 60px;
  width: max-content; /* Critical: tells the browser exact pixel size of the text line */
  white-space: nowrap;
  position: relative;
  margin-bottom: 50px;
}

/* Continuous Marquee Animations */
.services-slider.line1 {
  animation: slide-left 35s linear infinite;
}

.services-slider.line2 {
  animation: slide-right 35s linear infinite;
}

/* Pause animations on hover so users can easily read/interact with an item */
.services-zone:hover .services-slider {
  animation-play-state: paused;
}

/* Service Item Styling */
.service {
  position: relative;
  flex: 0 0 auto;
  font-size: 19px;
  color: #f7f4ef;
  letter-spacing: 0.5px;
  padding: 14px 10px;
  border-bottom: 2px solid rgba(228, 197, 108, 0.3);
  text-transform: capitalize;
  opacity: 0.75;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: #E4C56C;
  border-bottom-color: #E4C56C;
}

/* Premium Tooltip Styling */
.service::after {
  content: attr(data-desc);
  position: absolute;
  top: 100%; /* Spawns directly beneath the text border */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #E4C56C; /* Changed to accent color for readability on dark backgrounds */
  padding: 6px 14px;
  border-radius: 6px;
  color: #210B04;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(18px); /* Clean popup bounce animation */
}

/* Animations: Exactly 50% translation matches the duplicated set seamlessly */
@keyframes slide-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes slide-right {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Quick fix for mobile touch viewports */
@media (max-width: 768px) {
  .services-zone { padding: 60px 0 100px 0; }
  .service { font-size: 16px; }
  .services-slider { margin-bottom: 30px; gap: 40px; }
}




/* ===== WORK / PORTFOLIO ===== */
.identity-work {
  background: #fdfaf4;
  padding: 120px 40px;
  text-align: center;
}

.identity-subtitle {
  color: #7a6a4f;
  font-size: 16px;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.identity-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  background: #d6c496; /* optional placeholder */
}

.identity-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #f0d78b 0%, #c8b066 100%);
  opacity: 0.05;
  transition: all 0.5s ease;
}

.identity-item:hover::before {
  opacity: 0.15;
}

.identity-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.85);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: all 0.4s ease;
}

.identity-item:hover .identity-overlay {
  opacity: 1;
}

.identity-overlay h3 {
  color: #E4C56C;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.identity-overlay p {
  color: #f9f5ec;
  font-size: 0.95rem;
  max-width: 280px;
  line-height: 1.5;
}

.identity-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== FIXED IMAGE STYLING ===== */
.identity-item img {
  width: 100%;
  height: auto;          /* keeps full image visible */
  display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes identityGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

[data-scroll] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.filter-btn:hover,
.filter-btn.active {
  background: #FAD672;
  color: #111;
  transform: scale(1.05);
}

/* Portfolio Images */
.identity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* full image, no cut */
  display: block;
  transition: all 0.3s ease;
}

.identity-item {
  transition: all 0.3s ease;
}


[data-scroll] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}