* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: flex-end; /* navbar në anën e djathtë */
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

/* Container për pozicionim */
.container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* Nav links (desktop view) */
.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #bf0000; /* ngjyra e re */
}

/* Hamburger button (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  margin-left: 20px;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* background-color: #000; */
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.85)
  );
  z-index: -1;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(45%) contrast(110%);
}

.hero-content {
  perspective: 800px;
}

.hero-logo {
  width: 620px; 
  height: auto;
  animation: float3D 6s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(191, 0, 0, 0.5));
  transform-style: preserve-3d;
}


@keyframes float3D {
  0% {
    transform: rotateY(-8deg) rotateX(6deg) translateY(0);
  }
  25% {
    transform: rotateY(8deg) rotateX(-4deg) translateY(-10px);
  }
  50% {
    transform: rotateY(-6deg) rotateX(8deg) translateY(5px);
  }
  75% {
    transform: rotateY(10deg) rotateX(-6deg) translateY(-5px);
  }
  100% {
    transform: rotateY(-8deg) rotateX(6deg) translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background-color:#bf0000;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive */

@media (max-width: 1200px) {
  .hero-logo {
    width: 480px;
  }
}

/* ✅ Tablets */
@media (max-width: 900px) {
  .hero {
    height: 90vh;
  }

  .hero-logo {
    width: 380px;
  }

  .bg-video {
    filter: brightness(50%) contrast(105%);
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .hero {
    height: 85vh;
  }

  .hero-content {
    padding: 0 10%;
  }

  .hero-logo {
    width: 280px;
    filter: drop-shadow(0 0 18px rgba(191, 0, 0, 0.4));
  }

  .overlay {
    background: linear-gradient(
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.95)
    );
  }
}


@media (max-width: 400px) {
  .hero-logo {
    width: 220px;
  }
}

/* About Section */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 140px 10%;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.about-info {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1.3s ease forwards;
}

.about-info h2 {
  font-size: 2.4rem;
  color: #bf0000;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.about-info p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 30px;
}

.highlight {
  color: #bf0000;
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #bf0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
} 

/* Photo Side */
.about-photo {
  flex: 1;
  min-width: 320px;
  animation: slideInRight 1.3s ease forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(191, 0, 0, 0.3);
  transition: 0.4s ease;
}

.about-photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(191, 0, 0, 0.6);
}

/* Animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ✅ Medium screens (laptops/tablets) */
@media (max-width: 1100px) {
  .about-info h2 {
    font-size: 2rem;
  }

  .about-info p {
    font-size: 1rem;
  }

  .about-photo img {
    max-width: 90%;
  }
}

/* ✅ Tablets */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .about-photo {
    order: -1; /* e vendos foton para tekstit */
  }

  .about-info p {
    margin: 0 auto 30px auto;
  }

  .about-photo img {
    width: 80%;
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .about-section {
    padding: 100px 8%;
  }

  .about-info h2 {
    font-size: 1.8rem;
  }

  .about-info p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .about-photo img {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 400px) {
  .about-section {
    padding: 80px 5%;
  }

  .about-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-info {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .about-info h2 {
    font-size: 1.6rem;
  }

  .about-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto 25px auto;
  }

  .about-photo {
    order: -1; /* fotoja nalt */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .about-photo img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .btn-primary {
    padding: 10px 22px;
    font-size: 0.9rem;
    border-radius: 25px;
  }
}

/* Stat Sections */

.stats-section {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 120px 10%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stats-box {
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.stats-box.visible {
  transform: translateY(0);
  opacity: 1;
}

.count {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  /* text-shadow: 0 0 25px rgba(191, 0, 0, 0.5); */
}

.stats-box p {
  color: #aaa;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
    gap: 60px;
    padding: 100px 8%;
  }

  .count {
    font-size: 3.5rem;
  }
}

@media (max-width: 500px) {
  .stats-section {
    padding: 80px 6%;
    gap: 40px;
  }

  .count {
    font-size: 2.8rem;
  }

  .stats-box p {
    font-size: 0.9rem;
  }
}


/* Services Section */
.services {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 140px 10%;
  overflow: hidden;
}

.services h2 {
  font-size: 2.4rem;
  color: #bf0000;
  margin-bottom: 70px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

/* Card Style */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 60px 35px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(191, 0, 0, 0.6);
  box-shadow: 0 0 30px rgba(191, 0, 0, 0.45);
  animation: pulseGlow 1.8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 25px rgba(191, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 45px rgba(191, 0, 0, 0.7);
  }
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* Butoni për Graphic Design */
.btn-service {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #bf0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-service:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ✅ Medium screens (laptops/tablets) */
@media (max-width: 1100px) {
  .services {
    padding: 100px 8%;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
  }

  .service-card {
    padding: 50px 30px;
    max-width: 450px;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }
}

/* ✅ Tablets */
@media (max-width: 900px) {
  .services {
    padding: 100px 7%;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .service-card {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .services {
    padding: 90px 6%;
  }

  .services h2 {
    font-size: 1.9rem;
    margin-bottom: 50px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .service-card {
    max-width: 350px;
    padding: 45px 25px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .btn-service {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* ✅ Very small phones */
@media (max-width: 400px) {
  .services {
    padding: 80px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .service-card {
    max-width: 300px;
    padding: 40px 22px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}


/* Showcase */
.projects {
  padding: 100px 10%;
  color: #fff;
  text-align: left;
}

.projects h2 {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #bf0000; 
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* GRID */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 15px;
}

.project {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.project.large {
  grid-column: 1 / 3;
  height: 600px;
}

.project.small {
  height: 480px;
}

.project:hover img {
  transform: scale(1.05);
}

.project:hover {
  box-shadow: 0 0 15px rgba(191, 0, 0, 0.5);
}

.project-info {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 2;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project.large {
    grid-column: 1;
  }
}

/* CTA Section */
.cta {
  background: radial-gradient(circle at center, #0d0d0d 0%, #000 100%);
  text-align: center;
  color: #fff;
  padding: 120px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #bf0000;
  color: #fff;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(191, 0, 0, 0.5);
}

/* Small animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta {
  animation: fadeUp 1.5s ease forwards;
}


/* Portfolio Page */
.portfolio-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('../images/hero-portfolio.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 10%;
}

.portfolio-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #bf0000;
}

.portfolio-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Portfolio Grid */
.portfolio {
  background-color: #000;
  color: #fff;
  padding: 120px 10%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 40px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
  filter: brightness(55%);
}

/* --- FIXED OVERLAY --- */
.overlay {
  position: absolute;
  inset: 0; /* zëvendëson top:0;left:0;width:100%;height:100%; */
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 2; /* ✅ kjo është thelbësore */
  transition: all 0.4s ease;
  border-radius: 16px;
}

.portfolio-item:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  transform: translateY(25px);
  transition: all 0.4s ease;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.portfolio-item:hover .overlay h3 {
  transform: translateY(0);
}


 /* responsiv  */

/* TABLET (max 992px) */
@media (max-width: 992px) {
  .portfolio {
    padding: 60px 5% 80px 5%;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .navbar .nav-links a {
    font-size: 0.95rem;
    margin: 0 12px;
  }
}

/* MOBILE (max 768px) */
@media (max-width: 768px) {
  .portfolio h2 {
    font-size: 1.8rem;
  }

  .portfolio p {
    font-size: 0.9rem;
    margin-bottom: 35px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .portfolio-item {
    border-radius: 12px;
  }

  .portfolio-item img {
    border-radius: 12px;
  }

  .overlay h3 {
    font-size: 1.2rem;
  }

  /* Navbar adjustments */
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 20px;
    z-index: 100;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #000;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* Show nav when toggled */
  .nav-active {
    display: flex !important;
  }
}

/* VERY SMALL PHONES (max 480px) */
@media (max-width: 480px) {
  .portfolio {
    padding: 50px 6%;
  }

  .overlay h3 {
    font-size: 1rem;
  }

  .portfolio-item img {
    height: auto;
  }

  .btn-service {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* About */

.about-body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Hero section */
.about-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 40px;
}

.about-hero .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: -2;
}

.about-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
  z-index: -1;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease;
}

.hero-title span {
  color: #bf0000;
}

.hero-sub {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 10px;
  animation: fadeInUp 1.4s ease;
}

/* Main section */
.about-main {
  background-color: #000;
  color: #fff;
  padding: 160px 10%;
  text-align: center;
  overflow: hidden;
  margin-top: -40px; 
  padding-top: 80px;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1; /* sa me pak, aq më ‘cinematic’ */
  z-index: -3;
  filter: brightness(50%) contrast(110%) blur(2px);
}

/* Intro */
.about-intro {
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.about-intro h2 {
  font-size: 2.8rem;
  color: #bf0000;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-intro p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Process Grid */
.process-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 50px 30px;
  width: 320px;
  text-align: left;
  position: relative;
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(191, 0, 0, 0.6);
  box-shadow: 0 0 25px rgba(191, 0, 0, 0.4);
}

.step-number {
  font-size: 1.1rem;
  color: #bf0000;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.process-step h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-step p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Button */
.about-cta {
  margin-top: 100px;
}

.btn-about {
  display: inline-block;
  padding: 14px 36px;
  background: #bf0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-about:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .process-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .about-intro h2 {
    font-size: 2.2rem;
  }

  .about-intro p {
    font-size: 1rem;
  }

  .process-step {
    width: 90%;
    text-align: center;
  }

  .process-step h3 {
    font-size: 1.2rem;
  }

  .btn-about {
    padding: 12px 30px;
  }
}

@media (max-width: 400px) {
  .about-main {
    padding: 120px 5%;
  }

  .about-intro h2 {
    font-size: 1.8rem;
  }

  .process-step {
    width: 100%;
    padding: 40px 20px;
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .about-main {
    flex-direction: column;
    padding: 80px 6%;
    gap: 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
  }

  .about-image img {
    width: 85%;
  }
}



/* Contact Hero */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('../images/contact-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 180px 10%;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #bf0000;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Contact Section */
.contact {
  background-color: #000;
  color: #fff;
  padding: 120px 10%;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  color: #bf0000;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-info p {
  color: #ccc;
  line-height: 1.7;
}

.info-item {
  margin-top: 25px;
}

.info-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}

.info-item a {
  color: #bf0000;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-form h2 {
  color: #bf0000;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #bf0000;
}

.btn-send {
  background: #bf0000;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-send:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Tablets & mid screens */
@media (max-width: 1100px) {
  .contact-container {
    gap: 50px;
  }

  .contact-hero {
    padding: 160px 8%;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 45%;
  }
}

/* Tablets smaller (900px) */
@media (max-width: 900px) {
  .contact {
    padding: 100px 8%;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    max-width: 600px;
    width: 100%;
  }

  .contact-info h2,
  .contact-form h2 {
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }
}

/* Mobile phones (600px) */
@media (max-width: 600px) {
  .contact-hero {
    padding: 140px 6%;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact {
    padding: 90px 6%;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .btn-send {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Small mobile (400px) */
@media (max-width: 400px) {
  .contact-hero {
    padding: 120px 5%;
  }

  .contact-hero h1 {
    font-size: 1.7rem;
  }

  .contact-hero p {
    font-size: 0.9rem;
  }

  .contact {
    padding: 80px 5%;
  }

  .contact-container {
    gap: 40px;
  }

  .contact-info,
  .contact-form {
    max-width: 350px;
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 12px;
  }

  .btn-send {
    width: 100%;
    padding: 12px 0;
    font-size: 0.9rem;
  }
}
/* Details Project */
body.project-page{
  background: #000;
      color: #fff;
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
    }

    .project-header {
      text-align: center;
      padding: 140px 10% 60px;
    }

    .project-header h1 {
      font-size: 3rem;
      color: #bf0000;
      margin-bottom: 10px;
      letter-spacing: 2px;
    }

    .project-header p {
      color: #ccc;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Gallery */
    .project-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 25px;
      padding: 60px 10%;
    }

    .project-gallery img {
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }

    .project-gallery img:hover {
      transform: scale(1.04);
      box-shadow: 0 0 25px rgba(191, 0, 0, 0.5);
    }

    /* Back button */
    .back-btn {
      display: inline-block;
      margin: 60px auto;
      padding: 12px 32px;
      background: #bf0000;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .back-btn:hover {
      background: #fff;
      color: #000;
      transform: scale(1.05);
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 9999;
    }

    .lightbox.active {
      visibility: visible;
      opacity: 1;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .project-header h1 {
        font-size: 2rem;
      }

      .project-header p {
        font-size: 1rem;
      }
      .project-gallery {
    grid-template-columns: 1fr;       /* ✅ vetëm 1 kolonë */
    gap: 20px;                        /* pak hapësirë mes fotove */
    padding: 40px 5%;                 /* pak padding anash për t’u futur mirë në ekran */
  }

  .project-gallery img {
    width: 100%;                      /* ✅ mbulon gjerësinë e plotë */
    max-height: 400px;                /* kufizon lartësinë që mos t’jenë tepër të gjata */
    object-fit: cover;                /* mban përmasat e sakta */
    border-radius: 12px;
  }

  .project-header {
    padding: 100px 8% 40px;
  }

  .project-header h1 {
    font-size: 1.8rem;
  }

  .project-header p {
    font-size: 0.95rem;
  }

  .back-btn {
    margin: 40px auto;
    padding: 10px 25px;
    font-size: 0.9rem;
  }
    }

 /* projekti Silent Beauty */
 .project-silent-beauty .project-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px; /* pa hapësira mes fotove */
  padding: 0;
}
.project-silent-beauty .project-gallery img {
  width: 100%;
  max-width: 380px;
  margin: 0;
  display: block;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.9rem;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
