* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
nav {
  background-color: #FFA500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem; 
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
/* Container for both logos */
.logos-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Common logo style */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 15px;
  border-radius: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Individual background colors */
.logo-1 {
  background: rgba(0, 0, 0, 0.95);
}

.logo-2 {
  background: rgba(0, 0, 0, 0.95);
}

/* Logo image size */
.logo img {
  height: 40px;
}

/* Hover effects */
.logo-1:hover {
  background: rgba(60, 60, 60, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo-2:hover {
  background: rgba(60, 60, 60, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Nav container */
.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  background: #000000;
  border-radius: 5px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #272727;
  list-style: none;
  min-width: 180px;
}

.dropdown-menu li a {
  padding: 0.8rem 1rem;
  display: block;
}

/* Desktop hover */
@media (min-width: 981px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Button */
.contactus-btn {
  background-color: #000000;
  color: #E6E6E6;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.contactus-btn:hover {
  background-color: #E6E6E6;
  color:#000000;
}

/* Toggle */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 980px) {
  nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-container.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: #272727;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .contactus-btn {
    width: 100%;
    text-align: center;
  }
}

/* =======================
   HERO SECTION
======================= */
.hero {
  background: #f9f9f9;
  padding: 5rem 1.5rem;
  overflow: hidden;
  position: relative;
}

/* =======================
   BACKGROUND SHAPES
======================= */
/* Background shapes container */
.bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* Shape base style */
.bg-shapes .shape {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  border-radius: 50%; /* default circle */
  will-change: transform;
}

/* =======================
   HERO CONTAINER
======================= */
.hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1; /* above background shapes */
}

/* =======================
   TEXT CONTENT
======================= */
.hero-text {
  flex: 1.2;
}

.hero-text h4 {
  font-size: 1.35rem;
  color: #FFA500;
  margin-bottom: 0.6rem;
}

.hero-text h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: #000;
}

.hero-text h2 {
  font-size: 1.9rem;
  font-weight: 500;
  margin: 1.2rem 0;
  color: #555;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 550px;
}

/* =======================
   BUTTONS
======================= */
.hero-buttons {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.2rem;
}

.btn {
  padding: 0.95rem 1.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease;
}

.primary-btn {
  background: #FFA500;
  color: #000;
}

.primary-btn:hover {
  background: #000;
  color: #fff;
}

.secondary-btn {
  border: 2px solid #FFA500;
  color: #FFA500;
}

.secondary-btn:hover {
  background: #FFA500;
  color: #000;
}

/* =======================
   IMAGE SECTION
======================= */
.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 250px 250px 24px 24px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.18);
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating image */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* =======================
   TEXT ANIMATIONS
======================= */
.animate {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.fade-up {
  transform: translateY(24px);
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================
   TYPING EFFECT
======================= */
.typing {
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #FFA500;
  animation:
    typing 3s steps(30, end) forwards,
    blink 0.7s infinite;
}

@keyframes typing {
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem; /* smaller padding */
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    flex: unset;
  }

  .hero-text h4 {
    font-size: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem; /* reduced for small screens */
    line-height: 2.2rem;
  }

  .hero-text h2 {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin: 0.8rem 0;
  }

  .hero-text p {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-image img {
    max-width: 280px;
    border-radius: 150px 150px 24px 24px;
  }

  /* Optional: adjust background shapes scale */
  .bg-shapes .shape {
    transform: scale(0.7);
  }
}

/* =======================
   ABOUT ME SECTION
======================= */
/* About Me Section */
.about-me {
  background: #fff;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-me-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

/* Image */
.about-me-image {
  flex: 1;
  text-align: center;
}

.about-me-image img {
  max-width: 460px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  animation: floatImage 5s ease-in-out infinite;
}

.about-me-image img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  filter: grayscale(0%);
}

/* Floating animation */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Text */
.about-me-text {
  flex: 1.2;
}

.about-me-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-me-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-me-text p .highlight {
  color: #FFA500;
  font-weight: 700;
}

/* Skills */
.skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.skills li {
  background: #f0f0f0;
  color: #555;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease, transform 0.3s ease;
}

.skills li:hover {
  background: #FFA500;
  color: #fff;
  transform: translateY(-3px);
}

/* Button */
.about-me-text .btn {
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s ease, transform 0.3s ease;
}

.about-me-text .btn:hover {
  transform: translateY(-3px);
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .about-me-container {
    flex-direction: column;
    text-align: center;
  }

  .about-me-text h2 {
    font-size: 2.4rem;
  }

  .about-me-image img {
    max-width: 340px;
    margin-bottom: 2rem;
  }

  .about-me-text p {
    font-size: 1rem;
  }

  .skills {
    justify-content: center;
  }
}

/* ------------------------------ */
/* Services Section */
/* ------------------------------ */
.services {
  background: #fdfdfd;
  padding: 6rem 1.5rem;
  text-align: center;
}

.services-container {
  max-width: 1400px; /* Set max width */
  margin: 0 auto;     /* Center container */
}

.services h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.services p {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 4 columns */
  gap: 1.2rem; /* reduced gap */
  justify-items: center;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 1rem; /* smaller gap for tablet */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 0.8rem; /* smaller gap for mobile */
  }
}

/* Service Card */
.service-card {
  width: 260px;  /* slightly wider for 1200px container */
  height: 280px;
  perspective: 1000px;
  position: relative;
  color: #818181;
}

.service-card .card-front,
.service-card .card-back {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background: #fff;
}

.service-card .card-front img {
  width: 120px;
  margin-bottom: 1rem;
}

.service-card .card-back {
  transform: rotateY(180deg);
  background: #FFA500;
  color: #fff;
  font-weight: 500;
  padding: 1.5rem;
  text-align: center;
}

.service-card:hover .card-front {
  transform: rotateY(180deg);
}

.service-card:hover .card-back {
  transform: rotateY(0deg);
}

/* Responsive */
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 1rem;
  }

  .service-card {
    width: 350px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 0.8rem;
  }

  .service-card {
    width: 100%; /* Full width */
    max-width: 300px;
    height: 240px;
    margin: 0 auto 20px auto;
  }

  .service-card .card-front img {
    width: 100px;
  }

  .services p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
  }
}

/* Footer Styles */
.site-footer {
  background-color: #111; /* Dark background */
  color: #fff;
}

/* Footer Content (Head) */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

/* Columns */
.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 1rem 0;
}

/* Column 1: Logo + Contact */
.footer-logo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 100px;
  height: 70px;
  margin-bottom: 1.5rem;
}

.contact-btn {
  display: inline-block;
  padding: 0.7rem 2.5rem;
  background-color: #FFA500;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

/* Column 2: Contact Info */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #2a2a2a;
  border-radius: 12px;
  color: #fff;
  font-size: 26px;
  transition: all 0.3s;
}

.contact-item .icon:hover {
  background-color: #000;
  color: #ffcc00;
  transform: translateY(-3px);
}

/* Add margin between icon and text */
.contact-item .text {
  margin-left: 15px;
  font-size: 18px;
}

/* Column 3: Social Media */
.footer-socials {
  display: grid;
  grid-template-columns: repeat(3, 50px);
  grid-template-rows: repeat(2, 50px);
  gap: 0.7rem;
}

.footer-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  background: #2a2a2a;
  border-radius: 12px;
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: #ffcc00;
  background: #000;
  transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  background-color: #222;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-column {
    align-items: center;
  }

  .contact-item .text {
    margin-left: 10px; /* Slightly smaller margin on mobile */
  }

  .footer-socials {
    grid-template-columns: repeat(4, 50px);
    grid-template-rows: 2;
  }
}

/* Testimonial Section */
/* ===============================
   TESTIMONIAL SECTION – PREMIUM
================================ */

.testimonial-section {
  padding: 50px 20px 50px 0px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  text-align: center;
  overflow: hidden;
}

.testimonial-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Headings */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.section-description {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
  margin: 30px;
}

/* Slider Wrapper */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  padding: 50px;
}

.testimonial-slider:active {
  cursor: grabbing;
}

/* Track */
.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 0 0 calc(33.333% - 30px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Quote accent */
.testimonial-card::before {
  content: "“";
  font-size: 5rem;
  color: rgba(255, 159, 28, 0.15);
  position: absolute;
  top: 15px;
  left: 20px;
  font-family: serif;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Image */
.testimonial-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid #ff9f1c;
}

/* Name */
.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

/* Text */
.testimonial-card p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  max-height: 220px;
  overflow: auto;
  padding-right: 5px;
}

/* Subtle scrollbar for long text */
.testimonial-card p::-webkit-scrollbar {
  width: 4px;
}

.testimonial-card p::-webkit-scrollbar-thumb {
  background: #ff9f1c;
  border-radius: 10px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
    padding: 35px 25px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-description {
    font-size: 1.05rem;
  }
}


/* ===============================
   LATEST PROJECTS SECTION
================================ */

.projects-section {
  padding: 10px 20px 120px;
  background: #ffffff;
  text-align: center;
}

.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.section-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* ===============================
   GRID
================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* ===============================
   CARD
================================ */

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  background: #000;
}

/* Image (Black & White Default) */
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 
    transform 0.6s ease,
    filter 0.6s ease,
    brightness 0.6s ease,
    contrast 0.6s ease;
}

/* ===============================
   OVERLAY
================================ */

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-overlay span {
  color: #ff9f1c;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===============================
   HOVER EFFECTS
================================ */

.project-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.3rem;
  }
}

/* Global scroll animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* About Section */
.background-section {
  position: relative;
  height: 40vh; /* responsive height */
  min-height: 300px;
  background: linear-gradient(135deg, #d5d5d5, #b0b0b0);
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 0 2rem;
}

/* H1 Styling */
.background-text {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s forwards;
  animation-delay: 0.3s;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

/* Text fade up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------- */
/* About Me */
/* -------------------------------------- */
/* About Me Intro Section */
.about-me-intro {
  padding: 80px 20px;
  background: #ffffff; /* white background */
  overflow: hidden;
}

.about-me-intro .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.intro-text {
  flex: 1 1 500px;
}

/* Animated heading */
.intro-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: #111;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards;
}

.intro-text h1 span.hola {
  color: #ffa500; /* orange for 'Hola' */
  font-weight: bold;
}

/* Animated paragraph */
.intro-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.5s forwards;
}

/* Contact Info with styled icons */
/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

/* Each contact row */
.contact-info div {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: #333;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.8s forwards;
}

/* Staggered animation delays */
.contact-info div:nth-child(1) { animation-delay: 0.5s; }
.contact-info div:nth-child(2) { animation-delay: 0.7s; }
.contact-info div:nth-child(3) { animation-delay: 0.9s; }

/* Icon styles */
.contact-info div i {
  background-color: #ffa500; /* Orange square */
  color: #fff;
  padding: 12px;
  font-size: 1.2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Icon hover effect */
.contact-info div i:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}

/* Paragraph inside contact info (if you wrap text in <p>) */
.contact-info div p {
  margin: 0;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Animation Keyframes */
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Image */
.intro-image {
  flex: 1 1 400px;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  height: 70vh;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.intro-image img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-me-intro .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .intro-text {
    margin-top: 20px;
  }

  .contact-info {
    align-items: center;
  }
}
/* Sneak Peek Section */
/* Section */
.sneak-peek {
  padding: 100px 20px;
  background: #fafafa;
}

/* Container */
.sneak-peek .container {
  max-width: 1200px; /* REQUIRED */
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* Video Wrapper */
.sneak-video {
  position: relative;
  width: 450px;
  height: 650px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s forwards;
}

/* Video */
.sneak-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* Play Button – TRUE CENTER */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 165, 0, 0.95);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.5);
}

/* Hide button when playing */
.sneak-video.playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Text */
.sneak-text {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.3s forwards;
}

.sneak-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
}

.sneak-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .sneak-peek .container {
    flex-direction: column;
    text-align: center;
  }

  .sneak-video {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .sneak-video video {
    height: auto;
  }
}


/* ------------------------------ */
/* Education Section */
/* ------------------------------- */
.education-section {
  padding: 3rem 1.5rem;
  background: #ffffff;
  text-align: center;
  padding-bottom: 100px;
}

/* Title */
.edu-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* Subtitle – longer, elegant text */
.edu-section-subtitle {
  max-width: 1200px;
  margin: 0 auto 4rem;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Grid */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: auto;
}

/* Card */
.edu-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  height: 450px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  cursor: pointer;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.edu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Icon perfectly centered */
.edu-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Front text */
.edu-card strong {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 0.3rem;
}

.edu-card em {
  color: #777;
  font-size: 0.9rem;
}

/* Overlay */
.edu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-card:hover .edu-overlay {
  opacity: 1;
}

/* Overlay text */
.edu-text {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.9;
  padding: 2rem;
  text-align: center;
  max-width: 90%;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .edu-card {
    height: 360px;
  }
}

/* ----------------------------- */
/* Skill section */
/* ----------------------------- */
.skills-section {
  padding: 6rem 2rem;
  background: #111; /* dark black background */
  color: #fff;
  text-align: center;
}

.skill-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.skill-section-subtitle {
  color: #ccc;
  max-width: 1200px;
  margin: 0 auto 4rem;
  font-size: 1.15rem;
  line-height: 1.9;
}

/* Grid layout */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1700px;
  margin: auto;
}

/* Card */
.skills-card {
  background: #1a1a1a; /* dark grey card */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skills-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* Card Header */
.card-header {
  background: #FFA500;/* orange header */
  color: #000;          /* black text */
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  text-align: center;
}

/* Card Body */
.card-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Skill Pills */
.card-body span {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 1.0rem;
  font-weight: 400;
  background: #333;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: default;
}

.card-body span:hover {
  background: #FFA500;
  transform: scale(1.1);
}


/* ------------------------------------- */
/* Work Experience Section */
/* ------------------------------------- */
.work-experience {
  padding: 6rem 2rem;
  background: #fff; /* White background */
  color: #111;
  text-align: center;
}

.work-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.work-section-subtitle {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* Grid layout */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: auto;
}

/* Card */
.experience-card {
  height: 350px;
  background: #dbdbdb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Container */
.work-container {
  position: relative;
  height: 100%;
}

/* Icon + Role Text */
.work-icon-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 1rem 1rem;
}

.role-icon {
  width: 100px; /* enlarged icon */
  height: 100px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.role {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  text-align: center;
  padding: 0 0.5rem;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:  #FFA500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
  border-radius: 20px;
  font-size: 1.15rem;
  line-height: 1.9;
}

.work-container:hover .overlay {
  opacity: 1;
}

.text {
  font-size: 1.15rem;
  line-height: 1.9;
}

/* ---------------------------------- */
/* Award Section */
/* ---------------------------------- */
.awards-section {
  padding: 6rem 2rem;
  background: #fff; /* white background */
  color: #111;
  text-align: center;
}

.award-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.award-section-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color : #666;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* Awards Grid */
.awards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

/* Individual Award Card */
.award-card {
  background: #ffffff; /* dark background for cards */
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 500px; /* fixed height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Award Image */
.award-image {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%); /* black and white */
  transition: filter 0.4s ease, transform 0.4s ease;
}

.award-card:hover .award-image img {
  filter: grayscale(0%); /* color on hover */
  transform: scale(1.05); /* subtle zoom */
}

/* Award Text */
.award-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffa500;
  text-align: center;
}

.award-card p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  text-align: center;
}

/* -------------------------------------- */
/* Contact Section */
/* -------------------------------------- */
.contact-section {
  background-color: #ffffff; /* black background */
  color: #ffffff; /* white text for contrast */
  padding-top: 4rem;
  text-align: center;
}

.contact-section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.contact-card {
  background: #1a1a1a; /* dark card background for contrast */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  padding: 2rem 1.5rem;
  width: 400px;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card .icon {
  font-size: 2rem;
  color: #FFA500;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.5;
}


/* ---------------------------------------- */
/* Form */
/* ---------------------------------------- */
.contact-form-section {
  max-width: 800px;
  margin: auto;
  padding: 4rem 1.5rem;
}

.contact-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FFA500;
}

.contact-form-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  
}

input,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 2px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Error & Success States */
input.error,
textarea.error {
  border-color: #e74c3c;
}

input.success,
textarea.success {
  border-color: #2ecc71;
}

.error-text {
  font-size: 0.8rem;
  color: #e74c3c;
  display: none;
  margin-top: 0.3rem;
}

.form-group.error .error-text {
  display: block;
}

/* Button */
button {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #FFA500;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e59400;
}

#formMessage {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}


/* ---------------------------------- */
/* Gallery Section */
/* ---------------------------------- */
.gallery-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.gallery-title {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* Buttons */
#galleryBtnContainer {
  margin-bottom: 3rem;
}

.gallery-btn {
  border: 1px solid #111;
  background: transparent;
  color: #111;
  padding: 10px 22px;
  margin: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.gallery-btn:hover,
.gallery-btn.active {
  background: #111;
  color: #fff;
}

/* Gallery Grid */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: auto;
}

/* Gallery Item */
.gallery-item {
  display: none;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.gallery-item img:hover {
  transform: scale(1.08);
}

/* Show filtered items */
.show {
  display: block;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 85%;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}


/* =========================
   ABOUT US SECTION
========================= */

.about-us-section {
  background: #ffffff;
  padding: 6rem 1.5rem;
}

.about-us-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Text */
.about-us-text {
  flex: 1.2;
}

.about-us-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-us-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-us-text strong {
  color: #000;
}

/* Image */
.about-us-image {
  flex: 1;
  text-align: center;
}

.about-us-image img {
  width: 100%;
  max-width: 600px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-us-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-text h2 {
    font-size: 2.4rem;
  }

  .about-us-text p {
    font-size: 1.05rem;
  }

  .about-us-image img {
    max-width: 360px;
    margin-top: 2rem;
  }
}

/* =========================
   MISSION & VISION SECTION
========================= */

.mission-vision-section {
  padding: 6rem 1.5rem;
  background: #ffffff;
  text-align: center;
}

.mission-vision-container {
  max-width: 1200px;
  margin: auto;
}

/* Section Title */
.mv-title {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* Cards Wrapper */
.mv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* Card */
.mv-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.18);
}

/* Icon */
.mv-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

/* Card Title */
.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

/* Card Text */
.mv-card p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .mv-cards {
    grid-template-columns: 1fr;
  }

  .mv-title {
    font-size: 2.4rem;
  }

  .mv-card {
    padding: 2.5rem 1.5rem;
  }
}



/* ============================
   DESIGN SECTIONS (HUGE)
============================ */

.design-sections {
  width: 100%;
  background: #ffffff;
}

/* Each row */
.design-row {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Reverse layout */
.design-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.design-image {
  flex: 1;
}

.design-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

.design-image img:hover {
  transform: scale(1.05);
}

/* Text */
.design-text {
  flex: 1;
}

.design-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.design-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

/* Button */
.design-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #FFA500;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.design-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 980px) {
  .design-row,
  .design-row.reverse {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 6rem 1.5rem;
  }

  .design-text p {
    margin: auto auto 2.5rem;
  }

  .design-text h2 {
    font-size: 2.6rem;
  }
}

/* ----------------------------------- */
/* Breadcrumb */
/* ----------------------------------- */
/* Breadcrumb Section */
.breadcrumb-section {
  background: #f9f9f9; /* Light background */
  padding: 1rem 2rem;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #555;
  padding-left: 10rem; /* Adjusted left padding */
  flex-wrap: wrap;
}

/* Breadcrumb Links */
.breadcrumb-container a {
  color: #FFA500; /* Match your primary color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.breadcrumb-container a:hover {
  color: #ff8c00;
}

/* Separator */
.breadcrumb-container .separator {
  color: #999;
}

/* Current Page */
.breadcrumb-container .current {
  font-weight: 700;
  color: #111;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .breadcrumb-container {
    padding-left: 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .breadcrumb-container {
    padding-left: 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-container {
    padding-left: 1rem;
    font-size: 0.85rem;
  }
}
/* ----------------------------------- */
/* Book Design */
/* ----------------------------------- */
.masonry-section {
  padding: 60px 10%;
  background: #fff;
  margin: 0 auto;  
}

.masonry-section-title {
max-width: 1800px;
text-align: center;
}

.masonry-section-title h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.masonry-section-title p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Masonry Layout */
.masonry-gallery {
  column-count: 4;
  column-gap: 40px;
}

.masonry-gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.masonry-gallery img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 1024px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.lightbox .close:hover {
  color: #FFA500;
}


/* -------------------------------- */
/* Brochure Design */
/* -------------------------------- */
.brochure-section {
  max-width: 1600px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Limit heading and paragraph width to 1200px and center */
.brochure-intro {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.brochure-intro h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.brochure-intro p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Layout: thumbnails left, big image right */
.brochure-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Thumbnails */
.brochure-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 220px;
}

.brochure-gallery img {
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  opacity: 0.85;
  transition: 0.3s;
}

.brochure-gallery img:hover {
  opacity: 1;
}

/* Expanded image */
.expanded-container {
  flex: 1;
  text-align: center;
}

.expanded-container img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.expanded-container img:hover {
  transform: scale(1.02);
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .brochure-layout {
    flex-direction: column;
    align-items: center;
  }

  .brochure-gallery {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .brochure-gallery img {
    width: 150px;
  }

  .expanded-container img {
    max-width: 90%;
  }
}


/* -------------------------------- */
/* Post Card Design */
/* -------------------------------- */
.postcard-section {
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 20px;
}

.postcard-intro {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.postcard-intro h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.postcard-intro p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Slider layout */
.postcard-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.postcard-slot {
  width: calc(50% - 10px); /* two per row */
  text-align: center;
}

.postcard-slot img {
  max-width: 600px;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.postcard-slot img:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .postcard-slot {
    width: 100%;
  }
}


/* ----------------------------- */
/* Logo Design */
/* ----------------------------- */
/* Section intro */
.logo-section {
  max-width: 1600px;
  margin: 50px auto;
  padding: 0 20px;
}

.logo-intro {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.logo-intro h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.logo-intro p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Container and boxes */
.logo-container {
  display: flex;
  width: 100%;
  padding: 2%;
  box-sizing: border-box;
  gap: 10px;
}

.logo-box {
  flex: 1;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  text-align: center;
  cursor: pointer; 
}

.logo-box img {
  width: 200%;
  height: 50vh;
  object-fit: cover;
  transition: 0.5s;
  cursor: pointer; 
}

.logo-box span {
  display: block;
  font-size: 2rem;
  margin-top: 10px;
  color: #333;
}

/* Hover effect */
.logo-box:hover {
  flex: 2 1 33%; /* expand width on hover */
}

.logo-box:hover img {
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
  .logo-container {
    flex-wrap: wrap;
  }
  .logo-box {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .logo-box {
    flex: 1 1 100%;
  }
}

/* ----------------------------- */
/* Poster images */
/* ----------------------------- */
/* Section Intro */
.poster-section {
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 20px;
}

.poster-intro {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.poster-intro h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.poster-intro p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
}

/* Masonry gallery */
.poster-gallery {
  column-count: 3;
  column-gap: 25px;
}

.poster-gallery img {
  width: 100%;
  margin-bottom: 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.poster-gallery img:hover {
  transform: scale(1.05);
}

/* Responsive Masonry */
@media (max-width: 1200px) {
  .poster-gallery {
    column-count: 3;
  }
}
@media (max-width: 900px) {
  .poster-gallery {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .poster-gallery {
    column-count: 1;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.modal-content:hover {
  transform: scale(1.05);
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#caption {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}


/* -------------------------------- */
/* Photography Section */
/* -------------------------------- */

.photography-section {
  max-width: 1600px;
  margin: 80px auto;
  padding: 0 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 400px;
  gap: 25px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 12px;
}

.photo-card.big {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 165, 0, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: 0.4s ease;
  padding: 20px;
  border-radius: 12px;
  
}

.overlay h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.overlay p {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 280px;
}

.read-more-btn {
  padding: 10px 22px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #fff;
  color: #FFA500;
}

/* Hover effects */
.photo-card:hover img {
  transform: scale(1.1);
}

.photo-card:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .photo-card.big {
    grid-row: span 1;
  }
}


/* ---------------------------------- */
/* image phot slider  */
/* ---------------------------------- */
.auto-slider-section {
  max-width: 1600px;
  margin: 100px auto;
  padding: 0 30px;
  text-align: center;
}

.auto-slider-section h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.auto-slider-section p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

.slider-track img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.slider-track img:hover {
  transform: scale(1.06);
}

/* Buttons */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFA500;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.prev { left: 10px; }
.next { right: 10px; }

.nav:hover {
  background: #ff8c00;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track img {
    width: 260px;
    height: 340px;
  }
}

.video-sections {
  width: 100%;
  background: #ffffff;
}

/* Row */
.video-row {
  display: flex;
  align-items: center;
  gap: 6rem;
  max-width: 1400px;
  margin: auto;
  padding: 70px 2rem;
}

.video-row.reverse {
  flex-direction: row-reverse;
}

/* Video box (LANDSCAPE) */
.video-box {
  position: relative;
  width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button centered */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(255,165,0,0.95);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-box.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

/* Text */
.video-text {
  flex: 1;
}

.video-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
}

.video-text p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.9;
  max-width: 550px;
  margin-bottom: 2rem;
}

/* Fullscreen button in TEXT */
.fullscreen-text-btn {
  padding: 1rem 2.8rem;
  background: #FFA500;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fullscreen-text-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 980px) {
  .video-row,
  .video-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .video-box {
    width: 100%;
  }
}


/* ---------------------------------- */
/* Product section */
.product-section {
  padding: 100px 20px;
  background: #fafafa;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* Big Image */
.product-preview {
  width: 100%;
}

.product-preview img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: opacity 0.3s ease;
}

/* Text */
.product-text h2 {
  font-size: 3rem;        /* larger heading */
  font-weight: 900;
  color: #FFA500;
  margin-bottom: 1.5rem;
}

.product-text p {
  font-size: 1.15rem;     /* slightly larger paragraph */
  color: #666;
  line-height: 1.9;
  max-width: 550px;
  margin-bottom: 2rem;
}

/* Thumbnails */
.product-thumbnails {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.product-thumbnails img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.product-thumbnails img:hover {
  opacity: 1;
  transform: scale(1.03);
}

.product-thumbnails img.active {
  opacity: 1;
  box-shadow: 0 10px 30px rgba(255,165,0,0.5);
  border: 2px solid #ffa500;
}

/* Responsive */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-text h2::after {
    margin: 12px auto 0;
  }

  .product-preview img {
    height: 320px;
  }
}
