/* === PREMIUM LIGHT THEME: VOID MONK STUDIO === */
/* Clean, Modern, Creative Agency Style */



:root {
  /* Light Theme Palette */
  --primary: #1b055c;
  --primary-light: 02b2c2;
  --primary-dark: #02b2c2;
  --secondary: #1a1a1a;
  --accent: #00b8d4;
  --text: #2d2d2d;
  --text-light: #555555;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #ff7e5f, #feb47b, #86A8E7, #91EAE4);
  --gradient-soft: linear-gradient(45deg, #fff8f0, #f0f8ff);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(0, 184, 212, 0.08) 0%, transparent 20%),
    var(--gradient-soft);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.8rem;
  color: var(--secondary);
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary);
}

p {
  color: var(--text-light);
  font-weight: 400;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  animation: slideDown 1s ease-out;
  /* Hide hamburger menu in desktop */


}

/* Hide hamburger in desktop */
.mobile-menu-icon {
  display: none;
}


.navbar.scrolled {
  padding: 0.8rem 5%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
}

.logo i {
  font-size: 1.8rem;
  color: var(--primary);
  animation: gentlePulse 2.5s infinite;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: 300px;
   
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease;
 
  
  }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* lets collaborate */

/* ===== Modal Overlay ===== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark background */
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 1rem;
  animation: fadeIn 0.5s ease-in-out;
 
}

/* ===== Modal Box ===== */
.modal-content {
  background: #efecec;
  border-radius: 12px;
  max-width: 500px; /* Smaller size */
  width: 100%;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: modalPop 0.5s ease-in-out;
  position: relative;
  margin: auto;
}

/* ===== Close Button ===== */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #555;
  transition: 0.3s;
}
.close-btn:hover {
  color: #1b055c;
}

/* ===== Contact Section ===== */
.contact-section {
  text-align: center;
  margin-top: 100px;
}
.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* ===== Form Layout ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
    
}

.form-row {
  
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Prevent overlap */
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 200px; /* ensures inputs don’t shrink too much */
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #001eff;
  outline: none;
}

/* ===== Button ===== */
.submit-btn {
  background: #467ff0;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #1b055c;
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}





.logo-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white; /* Optional for contrast */
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-circle {
  animation: softGlow 3s ease-in-out infinite alternate;
}

@keyframes softGlow {
  from { box-shadow: 0 0 10px rgba(255, 102, 0, 0.3); }
  to { box-shadow: 0 0 25px rgba(255, 102, 0, 0.6); }
}


/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.hero-content {
  max-width: 900px;
  animation: slideInLeft 1.2s ease-out;
  margin-top: 30px;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
  font-size: 5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1.5rem 0 2.5rem;
  max-width: 600px;
  color: var(--text-light);
  animation: fadeIn 1.5s ease-in;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: bounceIn 1.5s ease-out;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: var(--primary-light);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Features Grid */

.services-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-right: 200px;
}

.service-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.service-circle i {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3a1cff;   /* customize color */
}

.service-circle p {
    font-size: 14px;
    font-weight: 200;
    margin: 0;
}

.service-circle:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}



.hero-image {
  display: flex;
  flex-direction: column; /* ✅ ensures text goes ABOVE image */
  align-items: center;
  text-align: center;
  margin-top: 20px;
  animation: slideInRight 1.2s ease-out;
  margin-left: 100px;
}

.image-caption {
  margin-bottom: 15px; /* space between text and image */
  max-width: 500px;
}

.image-caption h3 {
  font-size: 1.8rem;
  color: #07055f;
  font-weight: 700;
  margin-bottom: 8px;
}

.image-caption p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  text-align: justify;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Layout */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    justify-content: center;
    margin-top: 2rem;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  width: 100%;
  padding: 80px 0;
  animation: fadeIn 1.5s ease-in-out;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: slideIn 1.2s ease-out;
}

.about-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper {
  width: 500px;
  height: 600px;
  border-radius: 20px; /* Make it stylish */
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
 
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right {
  flex: 1.3;
  animation: fadeInUp 1.2s ease-out;
  padding-right: 80px;
}

.who-we-are {
  font-size: 18px;
  letter-spacing: 2px;
  color: #00114f;
}

.studio-title {
  font-size: 48px;
  color: #0077a4;
  margin: 10px 0 20px;
  font-weight: 700;
}

.about-right p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .video-wrapper {
    width: 500px;
    height: 500px;
  }
}


/* Floating Animation */

.clients-section {
  background: linear-gradient(135deg, #0e84b6, #056383, #5ec6f3);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: white;
  animation: fadeIn 1.5s ease-in-out;
}

.section-title {
  text-decoration: white;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  animation: slideIn 1.2s ease-out;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(250px * 30); /* 15 logos × 2 sets */
  animation: scroll 40s linear infinite;
}

.logo-track img {
  width: 120px;
  height: 120px;
  margin: 0 30px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-track img:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: reverse scroll direction */
.logo-slider.reverse .logo-track {
  animation: scroll-reverse 40s linear infinite;
}

@keyframes scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 80px;
    height: 80px;
    margin: 0 15px;
  }
}


/* ===== VISION MISION SECTION ===== */
.mv-section {
  width: 100%;
  padding: 80px 0;
  background: #f9fbff;
  animation: fadeIn 1.5s ease-in-out;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
  animation: slideIn 1.2s ease-out;
}

.mv-card {
  flex: 1;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  animation: fadeInUp 1s ease-out;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mv-title {
  font-size: 32px;
  color: #0077a8;
  margin-bottom: 20px;
  font-weight: 700;
  border-left: 5px solid #0077a8;
  padding-left: 12px;
}

.mv-card p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .mv-container {
    flex-direction: column;
  }

  .mv-card {
    padding: 30px;
  }

  .mv-title {
    font-size: 28px;
  }
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUpSection {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== PREMIUM ANIMATIONS ===== */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Reset state before animation */
.mv-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease;
}

/* Active animation when visible */
.mv-card.show-top {
  animation: slideFromTop 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.mv-card.show-bottom {
  animation: slideFromBottom 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
















.services-section {
  padding: 60px 20px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #0d1b3e;
  animation: slideIn 1.2s ease-out;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

/*service*/
.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 260px;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

.know-more-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #ffffff;
  color: #0072ff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.know-more-btn:hover {
  background: #0072ff;
  color: #ffffff;
}


/* Front side */
/* Intentionally left empty: front-side styles are handled by .flip-front's children or inherited rules */

/* Back side */
.flip-back {
 background: linear-gradient(135deg,#8fe3ff, #35b8ff, #1a90ff);

  color: white;
  transform: rotateY(180deg);
}

.flip-back h3 {
  margin-bottom: 10px;
}

.flip-back ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  text-align: left;
}

.flip-back li {
  margin: 6px 0;
  font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
/* container */
.contact-section {
  padding: 60px 0;
  background: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.contact-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start; /* keep top aligned so labels line up */
  padding: 0 20px;
}

/* ===== left form ===== */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* each field wrapper keeps label aligned with input */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* labels left-aligned and bold */
.field label {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  text-align: left;          /* ensure left alignment */
}

/* inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
}

/* textarea taller */
.contact-form textarea {
  height: 200px;
  resize: vertical;
}

/* send button: full width */
.send-btn {
  margin-top: 6px;
  background: linear-gradient(90deg, #5e45ff, #1b055c);
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

/* ===== right info ===== */
.contact-info {
  width: 45%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;    /* make all right-column text left-aligned */
}

.contact-info h2 {
  font-size: 36px;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.contact-info .intro {
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* info rows */
.info-block {
  display: flex;
  gap: 18px;
  align-items: flex-start; /* aligns the icon with the top of the text block */
  margin-top: 8px;
}

/* icon block */
.info-block .icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(180deg,#3f3c81,#16478b);
  border-radius: 10px;
  flex-shrink: 0;
}

/* text next to icon */
.info-block .info-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.info-block .info-text p {
  margin: 4px 0 0 0;
  color: #444;
  line-height: 1.5;
}

/* small screen: stack columns */
@media (max-width: 880px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info {
    width: 100%;
  }
}


/* ===== FOOTER SECTION ===== */

.footer-section {
  background: #f8f9fa;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.5s ease-in-out;
}

/* Glow gradient background overlay */
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,102,0,0.08), transparent 70%),
              radial-gradient(circle at bottom right, rgba(0,0,0,0.05), transparent 70%);
  z-index: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  animation: slideIn 1.2s ease-out;
}

.footer-col h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

/* Logo Circle */
.footer-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.25);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  animation: softGlow 3s ease-in-out infinite alternate;
}

.footer-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes softGlow {
  from { box-shadow: 0 0 15px rgba(255, 102, 0, 0.3); }
  to { box-shadow: 0 0 35px rgba(57, 119, 242, 0.6); }
}

.footer-brand p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-socials a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  background: white;
  color: var(--secondary);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.brand {
  color: var(--primary);
  font-weight: 600;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px; height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  animation: bounce 1s infinite;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

@keyframes modalPop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}



/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(3, 1fr); }
  .about-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 3.5rem; }
  .hero-content h1 span { font-size: 4rem; }
  .nav-links { display: none; }
  .features { grid-template-columns: 1fr; }
  .animated-heading { font-size: 2.2rem; flex-direction: column; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
}




/* ===========================
   PREMIUM MOBILE RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {

  /* --- Navbar --- */
  .navbar {
    padding: 1rem 5%;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    gap: 25px;
    transition: 0.4s ease;
    padding-left: 20px;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-menu-icon {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: #1b055c;
  }

  .nav-links a {
    font-size: 18px;
    padding: 10px 0;
  }

  /* Hide desktop button */
  .navbar .btn-primary {
    display: none;
  }

  /* --- Hero Section --- */
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .services-row {
    padding-right: 0;
    flex-wrap: wrap;
    gap: 15px;
  }

  .service-circle {
    width: 70px;
    height: 70px;
  }

  .hero-image {
    margin-left: 0;
    margin-top: 25px;
  }

  .hero-image img {
    max-width: 90%;
  }

  /* --- About Section --- */
  .about-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .video-wrapper {
    width: 100%;
    height: 330px;
  }

  .about-right {
    padding-right: 0;
  }

  .studio-title {
    font-size: 32px;
  }

  /* --- Vision/Mission --- */
  .mv-container {
    flex-direction: column;
  }

  .mv-card {
    margin-bottom: 20px;
  }

  /* --- Clients Section --- */
  .logo-track img {
    width: 70px;
    height: 70px;
    margin: 0 15px;
  }

  /* --- Services Grid --- */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .flip-inner {
    height: 230px;
  }

  /* --- Contact Section --- */
  .contact-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .contact-info {
    width: 100%;
  }

  /* --- Footer --- */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-circle {
    margin: auto;
  }

  .footer-socials {
    justify-content: center;
  }
}
