*{
    margin: 0;
    padding: 0;
}
nav ul{
    list-style: none;
}

/* Sophisticated navbar styles */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #232526 0%, #414345 100%);
    padding: 0 2rem;
    height: 64px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
    order: 1;
}

.navbar .logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 1px 2px #0002;
    order: 2;
}

.navbar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: right 0.3s cubic-bezier(.4,2,.6,1);
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    position: relative;
    /* Add underline effect base */
    overflow: hidden;
}

.navbar .mobile-toggle-theme {
  order: 3;
}

.navbar .menu-toggle {
  order: 4;
}

.navbar ul li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #fff 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(.4,2,.6,1);
    pointer-events: none;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    transform: scaleX(1);
}

/* --- Sidebars --- */
.side-bar {
  position: fixed;
  top: 80px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  background: rgba(24,24,24,0.92);
  border-radius: 18px;
  padding: 18px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  transition: opacity 0.3s ease;
}

.side-bar.fade-out {
  opacity: 0;
}

.left-bar {
  left: 24px;
}
.right-bar {
  right: 24px;
}
.brand-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.brand-initial {
  font-size: 2.1rem;
  font-weight: bold;
  color: #FFD600;
  letter-spacing: 2px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.brand-divider {
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, #FFD600 0%, #fff 100%);
  border-radius: 2px;
  margin: 2px 0;
}
.toggle-theme {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.theme-label {
  color: #b0b0b0;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.theme-switch {
  background: #FFD600;
  color: #181818;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px #ffd60044;
  cursor: pointer;
  transition: background 0.2s;
}
.theme-switch:hover {
  background: #fff;
  color: #FFD600;
}

.social-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.social-icon {
  color: #FFD600;
  background: #222;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: #FFD600;
  color: #181818;
  transform: scale(1.13);
}
.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 10px;
  font-weight: bold;
  background: linear-gradient(180deg, #FFD600 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 900px) {
  .side-bar {
    display: none;
  }
}
/* --- Portfolio Hero Section --- */
.portfolio-hero {
  width: 100%;
  background: linear-gradient(120deg, #181818 80%, #FFD600 100%);
  padding: 70px 0 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.portfolio-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  position: relative;
}
.portfolio-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.portfolio-hero .highlight {
  color: #FFD600;
  text-shadow: 0 2px 8px #18181844;
}
.portfolio-hero p {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .portfolio-hero {
    padding: 40px 0 24px 0;
  }
  .portfolio-hero h1 {
    font-size: 2.1rem;
  }
  .portfolio-hero p {
    font-size: 1rem;
  }
}

/* === Services Hero === */
.services-hero {
  background: linear-gradient(120deg, #181818 80%, #FFD600 100%);
  padding: 100px 20px 70px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-overlay {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  margin-bottom: 20px;
}

.hero-inner .highlight {
  color: #FFD600;
  text-shadow: 0 2px 6px rgba(255, 214, 0, 0.3);
}

.hero-inner p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Light mode hero overrides */
body.light-mode .services-hero {
  background: linear-gradient(120deg, #ffffff 80%, #FFD600 100%) !important;
}

body.light-mode .hero-inner h1,
body.light-mode .hero-inner p {
  color: #181818 !important;
}

body.light-mode .hero-inner .highlight {
  color: #FFD600;
}


/* --- Masonry fix for last image alignment --- */
.masonry::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  break-after: column;
}

/* --- Responsive Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 20;
}
.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}
/* toggle theme */
.toggle-theme {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.theme-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #222;
  color: #FFD600;
  border: 2px solid #FFD600;
  border-radius: 20px;
  padding: 4px 12px; /* smaller padding */
  font-size: 0.95rem; /* smaller font */
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
  height: 32px; /* set a fixed height */
  min-width: 70px;
}
.theme-btn .fas {
  font-size: 1rem;
}

.theme-btn.active,
.theme-btn:hover {
  background: #FFD600;
  color: #181818;
  border: 2px solid #181818;
}

.theme-label {
  font-size: 1rem;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .toggle-theme {
    flex-direction: row;
    justify-content: center;
    margin: 18px 0 0 0;
    gap: 10px;
  }
}

/* images section */

.masonry-gallery {
  width: 100vw;
  background: #181818;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.masonry {
  column-count: 4;
  column-gap: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}
.masonry-item {
  width: 100%;
  display: block;
  margin: 0 0 0 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s, box-shadow 0.4s, opacity 1s;
  opacity: 0;
  will-change: transform, opacity;
  break-inside: avoid;
  background: #222;
}
.masonry-item.loaded {
  opacity: 1;
}
.masonry-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 2;
}
.masonry::after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  break-after: column;
}
@media (max-width: 1200px) {
  .masonry { column-count: 3; }
}
@media (max-width: 900px) {
  .masonry { column-count: 2; }
}
@media (max-width: 600px) {
  .masonry { column-count: 1; }
}
/* end of image section */

.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* footer section */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.footer {
  background: #181818;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  border-top: 2px solid #FFD600;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 20px 20px;
}
.footer-logo h2 {
  margin: 0 0 10px 0;
  font-size: 2.2rem;
  letter-spacing: 2px;
  font-weight: bold;
}
.footer-logo .highlight {
  color: #FFD600;
}
.footer-logo p {
  margin: 0;
  font-size: 1.05rem;
  color: #b0b0b0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.08rem;
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  display: inline-block;
}
.footer-links a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD600 0%, #fff 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
}

.footer-links a:hover::after,
.footer-links a.active::after {
  transform: scaleX(1);
}
.footer-social {
  display: flex;
  gap: 18px;
  font-size: 1.7rem;
}
.footer-social a {
  color: #b0b0b0;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: #FFD600;
  transform: scale(1.15);
}
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  color: #b0b0b0;
  font-size: 1rem;
  border-top: 1px solid #222;
  padding-top: 12px;
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    display: flex;
  }
  .footer-links {
    flex-direction: row;
    margin: 15px 0;
  }
}

@media (max-width: 900px) {
    .navbar {
      flex-direction: row;
    }
    .navbar .logo { order: 1; }
    .navbar ul {
        position: absolute;
        top: 64px;
        right: -100vw;
        order: 2;
        background: #232526;
        flex-direction: column;
        width: 220px;
        height: calc(100vh - 64px);
        padding: 2rem 1rem;
        gap: 1.5rem;
        box-shadow: -2px 0 8px #0002;
        align-items: flex-start;
    }
    .navbar .mobile-toggle-theme { 
        display: flex !important; 
        flex-direction: row; 
        margin-right: 4px;
        gap: 4px; 
        justify-content: center; 
        margin: 0 8px 0 0;
        order: 3;
    }
    .navbar ul.active {
        right: 0;
    }
    .navbar .menu-toggle { 
        order: 4; 
        margin-left: 4px;
    }
    .menu-toggle {
        display: flex;
    }
    .desktop-toggle-theme { display: none !important; }
}

body.light-mode,
.light-mode .portfolio-hero,
.light-mode .footer,
.light-mode .masonry-gallery {
  background: #fff !important;
  color: #181818 !important;
}
.light-mode .contact-section {
  background: #f9f9f9 !important;
  color: #181818 !important;
}

.light-mode .contact-section input,
.light-mode .contact-section textarea {
  background: #fff !important;
  color: #181818 !important;
  border: 1px solid #ccc !important;
}

.light-mode .contact-section h3 {
  color: #181818 !important;
}
.light-mode .contact-section a {
  color: #181818 !important;
}

.light-mode .portfolio-hero {
  background: linear-gradient(120deg, #fff 80%, #FFD600 100%) !important;
}

.light-mode .portfolio-hero h1,
.light-mode .footer h2,
.light-mode .footer {
  color: #181818 !important;
}

.light-mode .portfolio-hero .highlight {
  color: #FFD600 !important;
}

.light-mode .footer {
  border-top: 2px solid #FFD600;
  background: #f5f5f5 !important;
  color: #181818 !important;
}

.light-mode .footer-links a {
  color: #181818 !important;
}

.light-mode .footer-links a:hover {
  color: #FFD600 !important;
}

.light-mode .side-bar {
  background: rgba(255,255,255,0.92) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.light-mode .brand-initial {
  color: #FFD600 !important;
}

.light-mode .social-icon {
  background: #FFD600 !important;
  color: #181818 !important;
}

.light-mode .social-icon:hover {
  background: #181818 !important;
  color: #FFD600 !important;
}

/* mobile toggle theme */

.mobile-toggle-theme { display: none; }
.desktop-toggle-theme { display: flex; }

@media (max-width: 900px) {
  .desktop-toggle-theme { display: none !important; }
  .mobile-toggle-theme { display: flex !important; flex-direction: row; gap: 8px; justify-content: center; margin: 0 auto; }
}

.mobile-toggle-theme .theme-btn {
  padding: 2px 6px;
  min-width: 0;
  font-size: 0.95rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  justify-content: center;
}

.mobile-toggle-theme .theme-label {
  display: none;
}

/* === Services Section === */
.services-section {
  padding: 60px 20px;
  background: #181818;
  color: #fff;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.service-card {
  background: #222;
  border: 1px solid transparent;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #FFD600;
  box-shadow: #181818 0 12px 8px;
}

.service-icon {
  font-size: 2.5rem;
  color: #FFD600;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Light mode override */
body.light-mode .services-section {
  background: #fff;
  color: #181818;
}

body.light-mode .service-card {
  background: #f5f5f5;
  color: #181818;
  border: 1px solid #eee;
}

body.light-mode .service-card:hover {
  border-color: #FFD600;
}

body.light-mode .service-card h3 {
  color: #181818;
}

body.light-mode .service-card p {
  color: #444;
}

body.light-mode .service-icon {
  color: #FFD600;
}

/* === Service Card Drop-in Animation === */
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.service-card.animate {
  animation: dropIn 0.8s ease forwards;
}

/* === Contact Section Animation === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-animate {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  animation: fadeInUp 0.8s ease forwards;
}

/* === Footer Fade-In Animation === */
/* Required animation setup */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {

  transform: translateY(30px);
  will-change: opacity, transform;
}
.animate-on-scroll.animate-in {
  animation: fadeInUp 1s ease forwards;
}



/* About Us  */
/* Director Section Styles */
.director-section {
    padding: 60px 20px;
    background: #181818;
    color: #fff;
}

.director-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.director-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid #FFD600;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.director-info {
    flex: 1;
    min-width: 300px;
}

.director-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
}

.director-title {
    color: #FFD600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.director-info p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Light mode overrides for director section */
body.light-mode .director-section {
    background: #fff;
    color: #ffffff;
}

body.light-mode .director-info h3 {
    color: #181818;
}

body.light-mode .director-info p {
    color: #444;
}

body.light-mode .director-title {
    color: #FFD600;
}

body.light-mode .director-image img {
    border-color: #FFD600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

body.light-mode .director-image img:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .director-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .director-image img {
        width: 250px;
        height: 250px;
    }
}

/* Additional styles for director-card */
.director-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

body.light-mode .director-card {
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

body.light-mode .director-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


/* About Hero Section Styles */
.about-hero-section {
    background: linear-gradient(120deg, #181818 80%, #FFD600 100%);
    padding: 100px 20px 70px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 40px; 
}



.about-hero-section .hero-overlay {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-hero-section .hero-inner h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    margin-bottom: 20px;
}

.about-hero-section .hero-inner .highlight {
    color: #FFD600;
    text-shadow: 0 2px 6px rgba(255, 214, 0, 0.3);
}

.about-hero-section .hero-inner p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #FFD600;
    color: #181818;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #fff;
    color: #181818;
    transform: translateY(-4px);
}

/* Light mode overrides for about hero section */
body.light-mode .about-hero-section {
    background: linear-gradient(120deg, #fff 80%, #FFD600 100%);
}

body.light-mode .about-hero-section .hero-inner h1 {
    color: #181818;
}

body.light-mode .about-hero-section .hero-inner p {
    color: #444;
}

body.light-mode .about-hero-section .hero-inner .highlight {
    color: #FFD600;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .about-hero-section {
        padding: 60px 20px 40px;
    }
    .about-hero-section .hero-inner h1 {
        font-size: 2.2rem;
    }
    .about-hero-section .hero-inner p {
        font-size: 1rem;
    }
}


/* Index Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
    margin-bottom: -28px;
}

.hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: -28px;
    width: 100%;
    height: 100%;
    background: url('images/img\ \(1\).jpg') no-repeat center center/cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(24, 24, 24, 0.6) 0%, rgba(255, 214, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section .hero-content h1 {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-section .hero-content p {
    font-size: 1.5rem;
    color: #ccc;
    margin: 20px 0;
    animation: fadeInUp 1.2s ease;
}

.hero-section .cta-button {
    padding: 14px 28px;
    background: #FFD600;
    color: #181818;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
    animation: fadeInUp 1.4s ease;
}

.hero-section .cta-button:hover {
    background: #fff;
    transform: translateY(-4px);
}

/* Subtle fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Section */
.testimonial-section {
    padding: 0 20px 80px;
    background: #181818;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #FFD600;
    margin-top: -28px; /* Adjust to close gap with hero */
    visibility: visible; /* Ensure section is always visible */
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: url('images/img\ \(13\).jpg') no-repeat center center/cover;
    opacity: 0.1;
    transform: translateX(-50%) translateY(20px);
    transition: transform 0.5s ease;
    z-index: 0;
}

.testimonial-section:hover::before {
    transform: translateX(-50%) translateY(0);
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    height: 250px;
    margin-top: 80px; /* Offset for initial padding */
}

.testimonial-item {
    flex: 0 0 100%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-card {
    background: #222;
    border-radius: 12px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border-left: 4px solid #FFD600;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #FFD600;
    font-weight: 500;
}

.testimonial-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #FFD600;
}

/* Light Mode */
body.light-mode .hero-section .hero-overlay {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 214, 0, 0.1) 100%);
}

body.light-mode .hero-section .hero-content h1 {
    color: #181818;
}

body.light-mode .hero-section .hero-content p {
    color: #fff3f3;
}

body.light-mode .hero-section .hero-background {
    background: url('images/img\ \(1\).jpg') no-repeat center center/cover;
}

body.light-mode .testimonial-section {
    background: #fff;
    color: #181818;
}

body.light-mode .testimonial-section::before {
    opacity: 0.05;
}

body.light-mode .testimonial-card {
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

body.light-mode .testimonial-card p {
    color: #444;
}

body.light-mode .testimonial-nav .nav-dot {
    background: #999;
}

body.light-mode .testimonial-nav .nav-dot.active {
    background: #FFD600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 700px) {
    .hero-section .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-section .hero-content p {
        font-size: 1.2rem;
    }
    .testimonial-section {
        padding: 0 20px 60px;
    }
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
    .testimonial-slider {
        height: 200px;
    }
}

/* === Homepage Hero Section === */
.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero-background {
  background: url('images/hero.jpg') center/cover no-repeat;
  filter: brightness(0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  transition: filter 0.3s;
}
body.light-mode .hero-background {
  filter: brightness(0.9);
}
.hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}
body.light-mode .hero-content {
  color: #181818;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content .highlight {
  color: #FFD600;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cta-button {
  display: inline-block;
  background: #FFD600;
  color: #181818;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.cta-button:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* === Services Preview === */
.services-preview {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-section, #181818);
  color: #fff;
  border-top: 2px solid #FFD600;
}
body.light-mode .services-preview {
  background: #f5f5f5;
  color: #181818;
}
.services-preview .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 2rem;
}
.service-card {
  background: #222;
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
body.light-mode .service-card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.service-icon {
  font-size: 2.5rem;
  color: #FFD600;
  margin-bottom: 1rem;
}
.service-card h3 {
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* === Call-to-Action Banner === */
.cta-banner {
  background: linear-gradient(120deg, #181818 0%, #232526 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #FFD600;
}
body.light-mode .cta-banner {
  background: linear-gradient(120deg, #fff 0%, #f5f5f5 100%);
  color: #181818;
}
.cta-banner .banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-banner .cta-button {
  background: #FFD600;
}


  /* === Featured Work Carousel === */

.carousel-section {
  background: #181818;
  color: #fff;
  padding: 40px 0 60px;
  border-top: 2px solid #FFD600;
  text-align: center;
}
body.light-mode .carousel-section {
  background: #fff;
  color: #181818;
}
.carousel-container {
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: transparent; /* Remove black background */
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 0; /* Remove any padding */
}
.carousel-wrapper {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  width: 100%;
}
.carousel-item {
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.carousel-item img {
  width: 100vw;
  max-width: 100vw;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border: 3px solid #FFD600;
  background: #fff;
  display: block;
  margin: 0;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.carousel-dot {
  width: 14px;
  height: 14px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-dot.active {
  background: #FFD600;
}
body.light-mode .carousel-item img {
  background: #f5f5f5;
}
body.light-mode .carousel-dot {
  background: #999;
}
body.light-mode .carousel-dot.active {
  background: #FFD600;
}

@media (max-width: 1100px) {
  .carousel-container { max-width: 100vw; }
  .carousel-item img { max-width: 100vw; }
}
@media (max-width: 700px) {
  .carousel-container { min-height: 200px; }
  .carousel-item img { height: 160px; }
}


/* why chose us section */

.why-choose-section {
  background: linear-gradient(120deg, #232526 0%, #181818 100%);
  color: #fff;
  padding: 80px 0 60px;
  border-top: 2px solid #FFD600;
  text-align: center;
}
body.light-mode .why-choose-section {
  background: linear-gradient(120deg, #fff 0%, #FFD600 100%);
  color: #181818;
}
.why-choose-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.why-card {
  background: #222;
  border-radius: 16px;
  padding: 36px 28px;
  max-width: 320px;
  min-width: 220px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  border-left: 4px solid #FFD600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.why-icon {
  font-size: 2.5rem;
  color: #FFD600;
  margin-bottom: 1rem;
}
.why-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.why-card p {
  font-size: 1rem;
  color: #ccc;
}
body.light-mode .why-card {
  background: #fff;
  color: #181818;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
body.light-mode .why-card p {
  color: #444;
}
@media (max-width: 900px) {
  .why-choose-grid { flex-direction: column; gap: 2rem; align-items: center; }
}


/* process section */

.process-section {
  background: linear-gradient(120deg, #181818 80%, #FFD600 100%);
  color: #fff;
  padding: 80px 0 60px;
  border-top: 2px solid #FFD600;
  text-align: center;
}
body.light-mode .process-section {
  background: linear-gradient(120deg, #fff 80%, #FFD600 100%);
  color: #181818;
}
.process-steps {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.process-step {
  background: #222;
  border-radius: 16px;
  padding: 36px 28px;
  max-width: 260px;
  min-width: 180px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  border-top: 4px solid #FFD600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.process-icon {
  font-size: 2.5rem;
  color: #FFD600;
  margin-bottom: 1rem;
}
.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.process-step p {
  font-size: 1rem;
  color: #ccc;
}
body.light-mode .process-step {
  background: #fff;
  color: #181818;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
body.light-mode .process-step p {
  color: #444;
}
@media (max-width: 900px) {
  .process-steps { flex-direction: column; gap: 2rem; align-items: center; }
}

#email a{
  color: #fff;
}
#email a::after{
  color: #fff;
}
.contact-container{
  margin-bottom: 10px;
}

/* Creative Video Gallery */
.video-gallery-section {
  background: linear-gradient(120deg, #181818 80%, #FFD600 100%);
  color: #fff;
  margin-top: -28px; /* Adjust to close gap with hero */
  border-top: 2px solid #FFD600;
  padding: 70px 0 50px;
  text-align: center;
}
body.light-mode .video-gallery-section {
  background: linear-gradient(120deg, #fff 80%, #FFD600 100%);
  color: #181818;
}
.video-gallery-section .section-title {
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: 1px;
}
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.video-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border: 3px solid #FFD600;
  background: #111;
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-gallery-item:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  z-index: 2;
}
.video-gallery-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: filter 0.3s;
  filter: brightness(0.85) grayscale(0.2);
  cursor: pointer;
}
.video-gallery-item:hover video {
  filter: brightness(1) grayscale(0);
}
/* Unmute icon styling */
.unmute-icon {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(24,24,24,0.7);
  color: #FFD600;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  cursor: pointer;
  border: 2px solid #FFD600;
}
.video-gallery-item:hover .unmute-icon {
  opacity: 1;
}

/* Modal styles */
.video-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-modal-content {
  position: relative;
  background: rgba(30,30,30,0.95);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-modal-content video {
  width: 70vw;
  max-width: 800px;
  height: 60vh;
  max-height: 60vh;
  border-radius: 12px;
  background: #000;
  outline: none;
}
.video-modal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 2rem;
  color: #FFD600;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.video-modal-close:hover {
  color: #fff;
}
@media (max-width: 700px) {
  .video-gallery-grid { gap: 1rem; }
  .video-gallery-item video { height: 120px; }
  .video-modal-content video { width: 96vw; height: 30vh; }
}

/* --- Gallery Hero Section --- */
.gallery-hero-section {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #181818 70%, #FFD600 100%);
  overflow: hidden;
}
.gallery-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(24,24,24,0.82) 60%, rgba(255,214,0,0.18) 100%);
  z-index: 1;
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.gallery-hero-content h1 {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, #FFD600 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(24,24,24,0.18);
}
.gallery-hero-content p {
  font-size: 1.22rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 8px rgba(24,24,24,0.22);
  letter-spacing: 0.01em;
}

/* Light mode for hero */
body.light-mode .gallery-hero-section {
  background: linear-gradient(120deg, #fff 70%, #FFD600 100%);
}
body.light-mode .gallery-hero-overlay {
  background: linear-gradient(120deg, rgba(255,255,255,0.82) 60%, rgba(255,214,0,0.18) 100%);
}
body.light-mode .gallery-hero-content h1 {
  background: linear-gradient(90deg, #FFD600 0%, #181818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #181818;
  text-shadow: 0 2px 8px rgba(255,255,255,0.12);
}
body.light-mode .gallery-hero-content p {
  color: #181818;
  text-shadow: 0 2px 8px rgba(255,255,255,0.12);
}

/* --- Gallery Section Title --- */
.gallery-section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  margin-top: 0;
  text-align: center;
  background: linear-gradient(90deg, #FFD600 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(24,24,24,0.18);
}
body.light-mode .gallery-section-title {
  background: linear-gradient(90deg, #FFD600 0%, #181818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #181818;
  text-shadow: 0 2px 8px rgba(255,255,255,0.12);
}

@media (max-width: 700px) {
  .gallery-hero-content h1 { font-size: 1.5rem; }
  .gallery-hero-content { padding: 1.2rem 0.5rem; }
  .gallery-section-title { font-size: 1.3rem; }
  .gallery-hero-overlay {align-items: center;}
}

.pricing-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pricing-section ul {
  padding-left: 1.2rem;
  line-height: 1.8;
}


/* Pricing Section */
.pricing-section {
  background: linear-gradient(120deg, #181818 80%, #FFD600 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid #FFD600;
}

.pricing-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  background: linear-gradient(90deg, #FFD600 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-section .section-subtitle {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 2.5rem;
}

.pricing-card {
  background: #222;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  border-left: 4px solid #FFD600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.pricing-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card h3 i {
  color: #FFD600;
  font-size: 1.3rem;
}

.pricing-card .pricing-items {
  padding: 0;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.8;
}

.pricing-card .pricing-item {
  margin-bottom: 8px;
  text-align: left;
}

.pricing-card .notes {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.95rem;
  color: #b0b0b0;
}

.pricing-card .notes .pricing-item {
  position: relative;
  padding-left: 20px;
}

.pricing-card .notes .pricing-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FFD600;
  font-size: 1.2rem;
}

/* Light mode overrides */


/* Light mode overrides */
body.light-mode .pricing-section {
  background: linear-gradient(120deg, #fff 80%, #FFD600 100%);
  color: #181818;
}

body.light-mode .pricing-section .section-title {
  background: linear-gradient(90deg, #FFD600 0%, #181818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(255,255,255,0.12);
}

body.light-mode .pricing-section .section-subtitle {
  color: #444;
}

body.light-mode .pricing-card {
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid #FFD600;
}

body.light-mode .pricing-card h3 {
  color: #181818;
  text-shadow: none;
}

body.light-mode .pricing-card .pricing-items {
  color: #444;
}

body.light-mode .pricing-card .notes {
  color: #444;
  border-top: 1px solid #ddd;
}

/* Animation for pricing cards */
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  opacity: 1;
  transform: translateY(40px);
  will-change: opacity, transform;
}

.pricing-card.animate {
  animation: dropIn 0.8s ease forwards;
}

.pricing-grid li{
  list-style: none;

}

/* Responsive adjustments */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .pricing-section {
    padding: 60px 20px;
  }
  .pricing-section .section-title {
    font-size: 2.2rem;
  }
  .pricing-section .section-subtitle {
    font-size: 1rem;
  }
  .pricing-card h3 {
    font-size: 1.2rem;
  }
}