/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
  color: #111;
}

/* Header Navigation */
.main-header {
  background-color: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
}

nav {
  position: relative;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #fff;
  text-shadow: 0 0 5px #ffd700;
}

.menu-icon {
  display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 3.5rem;
    right: 0;
    width: 200px;
    padding: 1rem;
    display: none;
    z-index: 999;
  }

  nav ul.active {
    display: flex;
  }

  .menu-icon {
    display: block;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
  }
}

/* Navbar Styles */
.navbar {
  background-color: #000000; /* Black header */
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff; /* "Powered by" white */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span {
  color: #ffd700; /* Yellow for SocialConnect */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9); /* Black shadow */
}

/* Navbar Links */
.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.nav-links a::before {
  content: "⚡";
  position: absolute;
  left: -1.2rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #ffd700; /* Yellow thunderbolt */
}

.nav-links a:hover {
  color: #ffd700;
  text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700;
}

.nav-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: #111;
  color: #fff;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 500px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  color: #111;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  background-color: #ffd700;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.cta-btn:hover {
  background-color: #ffc400;
}

/* Right-side image */
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Shadow Box (like UI card) */
.shadow-box {
  background-color: #ffffff;
  color: #111;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  .hero-services {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
  }

  .hero-services li {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #222;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
  }
}

/* ============================
   👤 About SocialConnect Section
============================ */
.about-socialconnect {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.about-sc-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-sc-text {
  flex: 1 1 500px;
}

.about-sc-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-sc-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.about-sc-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-sc-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about-sc-container {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }

  .about-sc-text h2 {
    font-size: 2rem;
  }

  .about-sc-text p {
    font-size: 1rem;
  }
}

/* Default (desktop) */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ffd700;
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000;
    flex-direction: column;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/* Default state: show nav on desktop */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

/* Hidden on mobile by default */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    background: #000;
    width: 200px;
    padding: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex; /* ✅ Shown when 'active' is added */
  }

  .menu-icon {
    display: block;
    font-size: 1.8rem;
    color: #ffd700;
    cursor: pointer;
  }
}

/* ✅ Mobile Fix: Stack Image Under Text */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    width: 100%;
    max-width: 100%;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  .about-text h2,
  .about-text p {
    text-align: center;
  }
}

/* ✅ Responsive Mobile Layout */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    padding: 1rem;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    object-fit: cover;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-text {
    padding: 1.5rem;
  }
}

/* Services Section */
.services {
  background-color: #000;
  padding: 5rem 0;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffd700;
  font-family: "Fira Sans", sans-serif;
}

/* Grid layout */
.services-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.service-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.why-choose-us {
  background-color: #ffffff;
  padding: 6rem 0;
  text-align: center;
}

.why-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* ✅ this ensures everything stays centered */
  align-items: center;
  text-align: center; /* ✅ ensure text is centered */
}

.why-text {
  flex: 1 1 600px;
  max-width: 700px;
  margin: 0 auto; /* ✅ center the box inside the flex container */
}

.shadow-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
  height: 100%;
  width: 100%;
}

.why-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
  text-align: center;
}

.why-text p {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: center;
}

.why-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.why-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive fix */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    text-align: center;
  }

  .why-text,
  .why-image {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-text,
  .why-image {
    flex: 1 1 100%;
  }

  .why-text h2,
  .why-text p {
    text-align: center;
  }

  .why-image img {
    max-width: 100%;
    height: auto;
  }
}

/* === Featured Project Section === */
/* === Featured Projects (Dark Theme) === */
.featured-projects.dark-theme {
  background-color: #000;
  color: #fff;
  padding: 4rem 0;
}

.project-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%; /* Changed from auto */
  object-fit: cover; /* Added to ensure image covers the area */
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}

.project-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.project-overlay p {
  margin-top: 0.3rem;
  font-size: 1rem;
}

/* More Work CTA */
.more-work-link {
  text-align: center;
  margin-top: 2.5rem;
}

.more-work-link a {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.more-work-link a:hover {
  color: #fff;
  border-color: #ffd700;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-text {
    padding: 1rem;
  }
}

/* Pricing Section */
.pricing-section {
  background-color: #cfcfcf; /* You had #ffffff before, changed to your update */
  padding: 4rem 0;
  text-align: center;
  color: #111;
}

/* Shadow Card Header for "Our Packages" */
.pricing-header {
  max-width: 400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.pricing-header h2 {
  font-size: 2rem;
  font-family: "Fira Sans", sans-serif;
  color: #111;
  margin: 0;
}

.pricing-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}

.pricing-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
  color: #111;
  font-size: 0.95rem;
}

.price-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #111;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.price-btn:hover {
  background-color: #ffd700;
  color: #000;
}

.badge {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

/* ============================= */
/* 🌟 Testimonials - Index Page Only */
/* ============================= */
.testimonials-home {
  background-color: #000000;
  padding: 4rem 0;
  text-align: center;
  color: #ffffff;
}

.testimonials-home .section-title {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.testimonials-home .testimonials-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

.testimonials-home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonials-home .testimonial-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
  position: relative;
}

.testimonials-home .testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.15);
}

.testimonials-home .profile-pic {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonials-home .testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 1rem;
}

.testimonials-home .testimonial-card h4 {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffd700;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 1.5rem;
  background-color: #ffd700;
  color: #000;
  border: none;
  border-radius: 50%;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#scrollTopBtn:hover {
  transform: scale(1.15);
  opacity: 0.95;
}

/* ======================
   🟡 About Page Hero
   ====================== */
.hero-about {
  background-color: #111;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero-about-content {
  max-width: 800px;
  margin: auto;
}

.hero-about h1 {
  font-size: 2.8rem;
  color: #ffd700;
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 1rem;
}

.hero-about p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #bbb;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.5rem;
}

.footer-socials a {
  color: #ffd700;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials a:hover {
  transform: scale(1.2);
  opacity: 0.9;
}

/* ======================
   🧠 About – Who We Are
====================== */
.about-block {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 900px;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center; /* 🟡 Center everything inside */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-container h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
}

.about-container p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
  text-align: justify; /* 🧠 Keeps paragraphs tidy */
}

/* ======================
   ⭐ Why Choose Us Section (Dark Theme)
====================== */
.why-choose-us.dark-theme {
  background-color: #000;
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
}

.why-choose-us.dark-theme h2 {
  color: #ffd700;
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  text-align: center; /* Already present */
  width: 100%; /* ✅ Force it to full width */
  display: block; /* ✅ Ensure block-level behavior */
  justify-content: center; /* Optional for flex containers */
  align-items: center; /* Optional for flex containers */
  margin-left: auto; /* ✅ Center horizontally */
  margin-right: auto;
}

/* ✅ Container */
.why-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ✅ Grid layout */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center cards horizontally */
  gap: 2rem;
}

/* ✅ Card styling */
.why-card {
  background-color: #fff;
  color: #000;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 320px; /* Keep consistent sizing */
  flex: 1 1 300px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.why-card h3 {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ======================
   🏁 Services Hero Section
   ====================== */
.services-hero {
  background-color: #111;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.services-hero-content {
  max-width: 800px;
  margin: auto;
}

.services-hero h1 {
  font-size: 2.8rem;
  color: #ffd700;
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* ======================
   📦 Services Grid Section
   ====================== */
.services-grid-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.services-grid-container {
  max-width: 1200px;
  margin: auto;
}

.services-grid-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #111;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #000;
}

.service-card p {
  font-size: 1rem;
  color: #444;
}

/* ============================
   🧱 Create Section Styles
============================ */
.create-section {
  background-color: #fff;
  padding: 4rem 0;
  font-family: "Fira Sans", sans-serif;
}

.create-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.create-left {
  flex: 1 1 300px;
}

.create-left h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
}

.create-left p {
  margin: 1rem 0 2rem;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.create-overview-link {
  color: #111;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.create-overview-link:hover {
  color: #ffd700;
}

.create-right {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.create-tile {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.create-tile:hover .tile-arrow {
  color: #ffd700;
  transform: translateX(5px);
}

.tile-icon svg {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.tile-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #000;
}

.tile-content p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

.tile-arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: #000;
  transition: all 0.3s ease;
}

/* ============================
   🤝 Why Choose Us (Light Theme) Services Page
   ============================ */
.light-theme-section {
  background-color: #fff;
  color: #111;
  padding: 4rem 2rem;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #111;
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.why-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #000;
}

.why-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ================================
   📱 Responsive for Create Section
================================ */
@media (max-width: 768px) {
  .create-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .create-left {
    text-align: center;
  }

  .create-left h2 {
    font-size: 2.5rem;
  }

  .create-overview-link {
    justify-content: center;
  }

  .create-tile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tile-icon {
    margin-bottom: 0.8rem;
  }

  .tile-arrow {
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* ===============================
   🛍️ E-Commerce Hero Section - Dark
================================== */
.ecom-hero-dark {
  background-color: #11141f;
  color: #fff;
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.ecom-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ecom-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
  margin-bottom: 1rem;
}

.ecom-hero-dark h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.ecom-description {
  font-size: 1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.ecom-link {
  display: inline-block;
  color: #7ebaff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.ecom-link:hover {
  color: #ffd700;
}

/* ==========================
   🛒 Platform Logos Section
========================== */
.platform-logos {
  background-color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.platform-logos-container img {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.platform-logos-container img {
  max-height: 50px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.platform-logos-container img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ================================
   🧰 Ecommerce Feature Section
================================ */
.ecom-feature-section {
  background-color: #f9f9f9; /* Soft background to contrast the white card */
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.ecom-feature-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 4rem 2.5rem;
  max-width: 1200px;
  width: 100%;
}

.ecom-feature-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Text Section */
.ecom-feature-text {
  flex: 1 1 500px;
}

.ecom-feature-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.ecom-feature-text ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.ecom-feature-text ul li {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* CTA Button */
.ecom-cta-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.ecom-cta-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

/* Image Column */
.ecom-feature-image {
  flex: 1 1 500px;
  text-align: center;
}

.ecom-feature-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 🔄 Responsive */
@media (max-width: 768px) {
  .ecom-feature-container {
    flex-direction: column;
    gap: 3rem;
  }

  .ecom-feature-text,
  .ecom-feature-image {
    text-align: left;
  }
}

/* ===============================
   🛍️ Bespoke Ecommerce Design Section
================================== */
.bespoke-ecommerce {
  background-color: #fff;
  padding: 6rem 2rem;
}

.bespoke-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.bespoke-text {
  flex: 1 1 500px;
}

.bespoke-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.bespoke-text p {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bespoke-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.bespoke-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.bespoke-image {
  flex: 1 1 500px;
  text-align: center;
}

.bespoke-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* 🔳 Shadow Wrapper for Bespoke Section */
.bespoke-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 4rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================
   🧩 Ecommerce Feature Highlights
================================== */
.feature-highlight-section {
  background-color: #f0fdf6; /* soft mint background */
  padding: 6rem 2rem;
}

.feature-highlight-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.feature-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* ============================
   🧠 Web Design Hero Section
============================= */
.web-hero-section {
  background-color: #1e212c;
  color: #fff;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.web-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.web-hero-section .breadcrumb {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 1rem;
}

.web-hero-section .subheading {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.web-hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.web-hero-section .hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}

.web-hero-section .hero-description a {
  color: #58a6ff;
  text-decoration: none;
  font-weight: 500;
}

.web-hero-section .hero-description a:hover {
  text-decoration: underline;
}

/* =============================
   🎨 Creative Web Design Section (Shadow Box)
============================= */
.creative-web-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.creative-shadow-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.creative-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.creative-text {
  flex: 1 1 500px;
}

.creative-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.creative-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.creative-link {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.creative-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.creative-images {
  flex: 1 1 600px;
  position: relative;
  text-align: center;
}

.creative-images img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-tablet {
  width: 350px;
  z-index: 3;
  position: relative;
}

.img-laptop {
  width: 400px;
  position: absolute;
  top: -40px;
  left: 60px;
  z-index: 1;
}

.img-mobile {
  width: 120px;
  position: absolute;
  top: -20px;
  right: -10px;
  z-index: 2;
}

/* ===============================
   👨‍💻 Web Development Section
================================ */
.dev-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.dev-shadow-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.dev-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.dev-text {
  flex: 1 1 500px;
}

.dev-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.dev-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.dev-link {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.dev-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

/* Logo Grid */
.dev-logos {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: repeat(3, 80px);
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.dev-logos img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.dev-logos img:hover {
  transform: scale(1.1);
}

/* ===============================
   🔌 Integrations Section
================================ */
.integrations-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.integrations-box {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.integrations-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.integration-graphic {
  flex: 1 1 500px;
  text-align: center;
}

.integration-graphic img {
  max-width: 100%;
  border-radius: 12px;
}

.integration-text {
  flex: 1 1 500px;
}

.integration-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.integration-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.integration-link {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.integration-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

/* ===============================
   🎨 Brand Strategy Section
================================ */
.brand-strategy-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.brand-box {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.brand-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.brand-text {
  flex: 1 1 500px;
}

.brand-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.brand-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.brand-link {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.brand-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.brand-image {
  flex: 1 1 500px;
  text-align: center;
}

.brand-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   🗣️ Tone of Voice Section
================================ */
.tone-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.tone-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.tone-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.tone-image {
  flex: 1 1 500px;
  text-align: center;
}

.tone-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tone-text {
  flex: 1 1 500px;
}

.tone-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.tone-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.tone-link {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.tone-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

/* ===============================
   🎨 Online Persona & Brand Voice
================================ */
.artwork-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.artwork-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.artwork-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.artwork-text {
  flex: 1 1 500px;
}

.artwork-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.artwork-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.artwork-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.artwork-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.artwork-image {
  flex: 1 1 500px;
  text-align: center;
}

.artwork-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   🧠 UI Design Creatives Section
================================ */
.ui-design-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.ui-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.ui-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.ui-text {
  flex: 1 1 500px;
}

.ui-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.ui-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ui-text ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.ui-text ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  margin-bottom: 0.5rem;
}

.ui-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.ui-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.ui-image {
  flex: 1 1 500px;
  text-align: center;
}

.ui-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ===============================
   🧩 Managing Web Content Section
================================== */
.web-content-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.web-content-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.web-content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.web-content-image {
  flex: 1 1 500px;
  text-align: center;
}

.web-content-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.web-content-text {
  flex: 1 1 500px;
}

.web-content-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.web-content-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.web-content-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.web-content-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

/* ================================
   🌐 User-Friendly Design Section
================================== */
.user-friendly-section {
  background-color: #fff;
  padding: 6rem 2rem;
}

.user-friendly-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.07);
}

.user-friendly-text {
  flex: 1 1 500px;
}

.user-friendly-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.user-friendly-text p {
  font-size: 1rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.user-friendly-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.user-friendly-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.user-friendly-image {
  flex: 1 1 500px;
  text-align: center;
}

.user-friendly-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================================
   <!-- What is UX/UI Design Section -->
================================= */
.ux-process-section {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.ux-process-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.ux-process-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ux-process-text {
  flex: 1 1 500px;
}

.ux-process-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.ux-process-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

.ux-process-text ul {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.ux-process-text ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}

.ux-process-link {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid #111;
  color: #111;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.ux-process-link:hover {
  color: #ffd700;
  border-color: #ffd700;
}

.ux-process-image {
  flex: 1 1 500px;
  text-align: center;
}

.ux-process-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ======================
   ✅ Why Choose Us (Light Theme) - Services Page Fix
   ====================== */
.why-choose-us.light-theme-section {
  background-color: #fff;
  padding: 4rem 2rem;
  color: #000;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-title {
  color: #000;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  text-align: center;
  width: 100%;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.why-card {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ------------------------------- */
/* 🟡 Portfolio Intro (One Card) */
/* ------------------------------- */

.portfolio-intro {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.intro-card {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  align-items: center;
}

.intro-text {
  flex: 1 1 60%;
}

.intro-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.intro-image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ------------------------------ */
/* 🏷️ Screenshots Section Header */
/* ------------------------------ */

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000001; /* ← Change this to whatever color you want */
}

/* ============================= */
/* 🖤 Screenshots Gallery (Dark) */
/* ============================= */
.screenshots-gallery.dark-theme {
  background-color: #111;
  color: #fff;
  padding: 4rem 3rem;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000000; /* Optional accent */
}

/* 💠 Grid layout */
.project-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media screen and (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(4, 1fr); /* 🔥 4 per row on desktop */
  }
}

/* 💼 Individual project card */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
  height: 250px; /* ✅ Fixed height for uniformity */
}

/* Keep image cropped nicely inside card */
.project-card img {
  width: 100%;
  height: 100%; /* Changed from auto */
  object-fit: cover; /* Added to ensure image covers the area */
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* 💫 Hover zoom effect */
.project-card:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}

.project-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}

.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-overlay h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffd700;
}

.project-overlay p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #ddd;
}

.project-link {
  display: block; /* Make the anchor a block-level element */
  height: 100%; /* Make the anchor fill the height of the card */
  position: relative;
  z-index: 1; /* Adjusted z-index */
}

/* Make sure cards with links have proper cursor */
.project-card.no-lightbox {
  cursor: pointer;
}

/* Ensure all images inside links have proper behavior */
.project-card.no-lightbox img {
  width: 100%;
  height: 100%; /* Ensure this is also 100% */
  object-fit: cover; /* Ensure this is also cover */
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Adjust project-overlay to be above the image link */
.project-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2; /* Ensure overlay is above the image/link */
}

/* ============================= */
/* 🎬 Videos Section (Isolated) */
/* ============================= */
.videos-section {
  background-color: #f9f9f9;
  color: #333;
  padding: 4rem 3rem;
}

.videos-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

/* Grid Layout Just for Videos */
.video-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media screen and (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual Video Card */
.video-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Video Player Styling */
.video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
  border-radius: 12px 12px 0 0;
}

/* Video Overlay Text */
.video-overlay {
  padding: 1rem;
  text-align: center;
}

.video-overlay h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.video-overlay p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #666;
}

/* Contact Form Container */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  max-width: 1000px;
  margin: 60px auto;
  overflow: hidden;
  font-family: "Segoe UI", sans-serif;
}

.contact-image {
  flex: 1 1 40%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.contact-form-wrapper {
  flex: 1 1 60%;
  padding: 30px;
  box-sizing: border-box;
  font-size: 14px;
}

#contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 6px;
  color: #2c3e50;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #4285f4;
  outline: none;
}

#contact-form button[type="submit"] {
  margin-top: 25px;
  background-color: #facc15;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact-form button[type="submit"]:hover {
  background-color: #fbbf24;
}

@media screen and (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-image {
    min-height: 200px;
  }
}

/* ================================
   📱 Mobile Fix: About Section
================================ */
@media (max-width: 768px) {
  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
    gap: 2rem;
  }

  .about-text {
    width: 100%;
    max-width: 600px;
  }

  .about-image {
    width: 100%;
    max-width: 600px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
  }
}

/* ✅ Responsive Fix: About Section Image Position */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-image {
    order: 2; /* 👈 makes sure the image goes after the text */
  }

  .about-text {
    order: 1;
    padding: 0 1rem;
  }

  .about-text h2,
  .about-text p {
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/* Desktop default: show the nav normally */
@media (min-width: 769px) {
  #navLinks {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
  }

  .nav-links {
    flex-direction: row;
    gap: 1.5rem;
  }

  .menu-icon {
    display: none;
  }
}

/* Default: Desktop view (horizontal layout) */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .logo {
    flex: 1 1 auto;
    margin-bottom: 0;
  }

  #navLinks {
    display: none;
    flex: 1 1 100%;
    margin-top: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
    gap: 0.5rem;
  }

  #navLinks.active {
    display: flex;
    margin-top: 0;
  }

  #navLinks.active .nav-links {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    color: #fff;
    background: #111;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    display: block;
  }

  .cta-btn {
    margin: 0 auto;
  }
}

@media (max-width: 425px) {
  /* About */
  .hero-about {
    padding: 6rem 0rem;
  }

  .hero-about-content {
    width: 90%;
    margin: 0 auto;
  }

  .hero-about h1 {
    font-size: 2.5rem;
  }

  .about-block {
    padding: 4rem 0;
    width: 90%;
    margin: 0 auto;
  }
  .why-choose-us.dark-theme {
    padding: 4rem 0;
  }
  .why-card {
    width: 100%;
  }

  /* Services */
  .services-grid-section {
    padding: 4rem 0;
  }

  /* Portfolio */
  .screenshots-gallery.dark-theme {
    padding: 4rem 0;
  }

  .videos-section {
    padding: 4rem 0;
  }

  .video-grid {
    width: 90%;
    margin: 0 auto;
  }

  /* Branding */

  .brand-strategy-section {
    padding: 4rem 0;
    width: 90%;
    margin: 0 auto;
  }

  .brand-box {
    padding: 2rem;
  }

  .tone-section {
    padding: 4rem 0;
    width: 90%;
    margin: 0 auto;
  }

  .tone-box {
    padding: 2rem;
  }

  .artwork-section {
    padding: 4rem 0;
    width: 90%;
    margin: 0 auto;
  }

  .artwork-box {
    padding: 2rem;
  }

  /* Web Design */
  .dev-logos {
    grid-template-columns: repeat(2, 80px);
  }
}

.project-card.coming-soon img {
  object-fit: contain;
}
