/* ==================== ROOT THEME ==================== */
:root {
    --bg-black: #0b0f14;
    --bg-navy: #0e1a24;
    --gold-main: #d4af37;
    --gold-light: #f5d77a;
    --gold-dark: #b8962e;
    --white-main: #ffffff;
    --gray-soft: #b3b3b3;
}

/* ==================== RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--white-main);
    font-family: 'Poppins', sans-serif;
}

/* ==================== HEADER ==================== */
/* ================= HEADER BASE ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 95px;
  background: linear-gradient(90deg, #000, var(--bg-navy), #000);
}

.header-container {
  max-width: 1200px;
  height: 95px;
  margin: 0 auto;
  padding: 0 30px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Logo */
.logo-box img {
  height: 60px;
}

/* ================= DESKTOP ================= */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  justify-content: center;
}

.header-cta {
  display: block;
}

.menu-toggle {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .header-container {
    grid-template-columns: auto auto;
  }

  /* Hamburger */
  .menu-toggle {
    display: block;
    justify-self: end;
    width: 30px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    background: var(--gold-main);
    margin-bottom: 6px;
    border-radius: 2px;
  }

  /* Hide desktop CTA */
  .header-cta {
    display: none;
  }

  /* Mobile menu */
  .main-nav {
    display: none;
    position: absolute;
    top: 95px;          /* BELOW HEADER */
    left: 0;
    width: 100%;
    background: #000;
    padding: 25px 0;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .main-nav ul li a {
    font-size: 18px;
  }

  /* Mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 15px;
  }

  .mobile-cta .btn-gold {
    width: 140px;
    height: 36px;
    line-height: 36px;
    padding: 0;
    font-size: 14px;
    text-align: center;
  }
}

/* Desktop hides mobile CTA */
@media (min-width: 901px) {
  .mobile-cta {
    display: none;
  }
}
/* NAV LINKS – FIX COLORS */
.main-nav ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* GOLD UNDERLINE */
.main-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #f5d77a;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #f5d77a;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}
.btn-gold {
  background-color: #f5d77a;
  border: 2px solid #f5d77a;
  color: #000;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-gold:hover {
  background-color: #f5d77a;
  color: #000;
  box-shadow: 0 0 18px rgba(245, 215, 122, 0.6);
  transform: translateY(-1px);
}
.floating-logo {
  animation: logoFloat 1s ease-in-out infinite;
}

@keyframes logoFloat {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px); /* moves right */
    }
    100% {
        transform: translateX(0px); /* back to original */
    }
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #000;
    border: 1px solid #f5d77a;
    border-radius: 14px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 0 25px rgba(245, 215, 122, 0.25);
}

/* Active */
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Links */
.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: #f5d77a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(245, 215, 122, 0.1);
    padding-left: 26px;
}

/* ==================== CINEMA STRIP ==================== */
.cinema-strip {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #f5d77a; /* GOLD BACKGROUND */
    overflow: hidden;
}

/* ==================== MARQUEE ==================== */
.marquee {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-content {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #000000; /* BLACK TEXT */
    padding-left: 100%;
    animation: marqueeMove 18s linear infinite;
}

/* Marquee animation */
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==================== BLACK SPOTLIGHT EFFECT ==================== */
.spotlight {
    position: absolute;
    top: -35px;
    width: 320px;
    height: 120px;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.3),
        transparent 70%
    );
    filter: blur(28px);
    pointer-events: none;
}

/* Left spotlight animation */
.spotlight-left {
    left: -320px;
    animation: spotlightLeft 8s ease-in-out infinite;
}

/* Right spotlight animation */
.spotlight-right {
    right: -320px;
    animation: spotlightRight 10s ease-in-out infinite;
}

/* Spotlight keyframes */
@keyframes spotlightLeft {
    0% { left: -320px; opacity: 0; }
    30% { opacity: 1; }
    50% { left: 30%; }
    80% { opacity: 0.8; }
    100% { left: 110%; opacity: 0; }
}

@keyframes spotlightRight {
    0% { right: -320px; opacity: 0; }
    30% { opacity: 1; }
    50% { right: 30%; }
    80% { opacity: 0.8; }
    100% { right: 110%; opacity: 0; }
}



/* ==================== HERO SECTION ==================== */
.hero-section {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slides */
.hero-slide {
    position: absolute;
  background: #fff;
    width: 100%;
    height: 440px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* Overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f5d77a;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 22px;
    color: #ffffff;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f5d77a;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
}

/* ==================== ARROWS ==================== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #f5d77a;
    background: rgba(0, 0, 0, 0.6);
    color: #f5d77a;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

/* ==================== DOTS ==================== */
.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 80px;        
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(245, 215, 122, 0.4);
    cursor: pointer;
}

.dot.active {
    background-color: #f5d77a;
}


/* ==================== ABOUT SECTION ==================== */
.about-section {
    width: 100%;
    padding: 70px 0;
    background-color: #0b0f14;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.about-content {
    width: 55%;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f5d77a;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 520px;
}

.about-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 28px;
    background-color: #f5d77a;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.about-btn:hover {
    background-color: #e6c85f;
}

/* Right Visual */
.about-visual {
    width: 45%;
    display: flex;
    justify-content: center;
}

.film-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border: 2px solid #f5d77a;
    padding: 12px;
}

.film-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
/* ==================== MOBILE: TEXT FIRST, IMAGE BELOW ==================== */
@media (max-width: 768px) {

    .about-section {
        padding: 50px 0;
    }

    .about-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        padding: 0 20px;
    }

    /* TEXT BLOCK – FULL WIDTH */
    .about-content {
        width: 100%;
        text-align: left;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
        margin-bottom: 14px;
    }

    .about-btn {
        display: inline-block;
        margin-top: 18px;
        padding: 12px 26px;
        font-size: 13px;
    }

    /* IMAGE BLOCK – BELOW CONTENT */
    .about-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .film-frame {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }

    .film-frame img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
}

/* SMALL PHONES */
@media (max-width: 480px) {

    .about-content h2 {
        font-size: 24px;
    }

    .film-frame img {
        height: 200px;
    }
}
/* ==================== services card ==================== */

.services-section {
    background-color: #000000;
    padding: 80px 100px;
}

.services-title {
    text-align: center;
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.service-card {
    background-color: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

/* Image */
.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Title */
.service-card h3 {
    color: #000;
  background: #f5d77a;
    font-size: 22px;
    padding: 20px 0;
    letter-spacing: 1px;
}

/* Hover Glow Effect */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    border-color: #d4af37;
}
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* ==================== FORCE MOBILE FIX – SERVICES ==================== */
@media screen and (max-width: 768px) {

    .services-section {
        padding: 40px 20px !important;
    }

    .services-title {
        font-size: 26px !important;
        margin-bottom: 30px !important;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .service-card {
        width: 100% !important;
    }

    .service-card img {
        height: 190px !important;
    }

    .service-card h3 {
        font-size: 18px !important;
        padding: 14px 0 !important;
    }

    /* Disable hover movement on mobile */
    .service-card:hover {
        transform: none !important;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
    }
}
/* ==================== WHY CHOOSE US ==================== */
.why-section {
    width: 100%;
    padding: 80px 0;
    background-color: #000000;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #f5d77a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 50px;
}

/* Cards */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: #0b0f14;
    padding: 35px 25px;
    border: 3px solid rgba(245, 215, 122, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(245, 215, 122, 0.25);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.why-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 22px;
}

/* Responsive */
@media (max-width: 900px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}


/* ==================== FEATURED TALENT ==================== */
.talent-section {
    width: 100%;
    padding: 80px 0;
    background-color: #0b0f14;
}

.talent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* Cards Grid */
.talent-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Single Card */
.talent-card {
    background-color: #000000;
    border: 1px solid rgba(245, 215, 122, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.talent-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(245, 215, 122, 0.25);
}

/* Image */
.talent-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Info */
.talent-info {
    padding: 18px;
}

.talent-info h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
}

.talent-info p {
    font-size: 13px;
    color: #f5d77a;
}

/* CTA */
.talent-cta {
    margin-top: 45px;
}

.talent-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #f5d77a;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
}

/* Responsive */
@media (max-width: 1000px) {
    .talent-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .talent-cards {
        grid-template-columns: 1fr;
    }
}


/* ==================== FOOTER ==================== */
.main-footer {
    background-color: #f5d77a; /* GOLD BACKGROUND */
    border-top: 2px solid #000000;
    padding-top: 60px;
}

/* Footer Grid */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 50px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 16px;
    color: #000000; /* BLACK */
    margin-bottom: 18px;
    font-weight: 700;
}

/* Text */
.footer-col p {
    font-size: 14px;
    line-height: 24px;
    color: #000000; /* BLACK */
}

/* Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

/* Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #000000;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000000;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 0.7;
}

/* ==================== FOOTER SOCIAL ICONS ==================== */
.footer-social {
    margin-top: 18px;
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #000000; /* BLACK CIRCLE */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

.footer-social img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ==================== FOOTER BOTTOM ==================== */
.footer-bottom {
    background-color: #f5d77a; 
    text-align: center;       
    padding: 18px 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: #000; 
    line-height: 22px;
}

/* ACP LINK */
.acp-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.acp-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.acp-link:hover::after {
    width: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ACP IT ZONE Highlight */
.acp-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.acp-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #f5d77a;
    transition: width 0.3s ease;
}

.acp-link:hover::after {
    width: 100%;
}




