@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap');

/* 1. Universal Reset and Base Styles */

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

html, body {
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 202px;
}


/* 2. Logo Styles */

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.logo img {
  height: 170px;
  width: 100;
  display: block;
}

.logo:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}


/* 3. Header & Navbar */

header {
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 11, 30, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

nav ul li a:hover {
  color: #f0d080;
  font-weight: bold;
}

nav ul li a.btn-link {
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

nav ul li a.btn-link:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
}


/* Hamburger Menu (Mobile) */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  position: fixed;
  top: 20px;
  right: 20px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}


/* 4. Main Content Styles */

main {
  flex: 1;
  max-width: 800px;
  margin: auto;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f5f0ff;
  margin-bottom: 1.25rem;
}

body.index .container h1 {
  opacity: 0;
  animation: fadeSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.container p {
  font-size: 1.1rem;
  color: rgba(210, 200, 240, 0.75);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

body.index .container p {
  opacity: 0;
  animation: fadeSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.main-btn, .main-btn2 {
  display: inline-block;
  margin-top: 1rem;
  padding: 13px 32px;
  font-size: 0.95em;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

body.index .main-btn,
body.index .main-btn2 {
  opacity: 0;
  animation: fadeSlideIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

/* Project Inquiry — solid gold gradient, dark text */
.main-btn {
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}
.main-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
}

/* About our Services — ghost/outline style */
.main-btn2 {
  background: transparent;
  color: #F5D78E;
  border: 1.5px solid rgba(201, 168, 76, 0.55);
}
.main-btn2:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #F5D78E;
  transform: translateY(-2px);
}

.main-btn3 {
  background: transparent;
  border: none;
  color: #F5D78E;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.main-btn3:hover {
  background: transparent;
  border: none;
  color: #fff;
}

/* AI Platform Section */
#ai-platform {
  padding: 5rem 2rem;
  position: relative;
}

.section-divider {
  max-width: 600px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.7), transparent);
}

#ai-platform,
#marketing-platform,
#music-platform {
  padding: 4rem 2rem;
}

#marketing-platform {
  padding: 5rem 2rem;
  position: relative;
}

/* Flip card to left, text to right on marketing section */
.marketing-flip {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .marketing-flip {
    flex-direction: column;
  }
}

.ai-platform-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.ai-platform-text {
  flex: 1;
  text-align: left;
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.ai-badge--blue {
  background: linear-gradient(135deg, #1a6fc4, #56a0f5);
  color: #ffffff;
}

.ai-badge--purple {
  background: linear-gradient(135deg, #6b21a8, #a855f7);
  color: #ffffff;
}

#music-platform {
  padding: 5rem 2rem;
  position: relative;
}

.ai-platform-text h2 {
  font-size: 1.9rem;
  color: #f5f0ff;
  margin: 0 0 1rem;
  font-weight: 700;
}

.ai-platform-text p {
  color: rgba(210, 200, 240, 0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ai-platform-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ai-platform-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-platform-card--link:hover {
  border-color: rgba(201, 168, 76, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.18);
}

.ai-card-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.ai-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ai-card-url {
  font-size: 0.7rem;
  color: rgba(210, 200, 240, 0.45);
  margin-left: auto;
  font-family: monospace;
  letter-spacing: 0.5px;
}

.ai-card-body {
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ai-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-card-stat:last-child {
  border-bottom: none;
}

.ai-stat-label {
  font-size: 0.85rem;
  color: rgba(210, 200, 240, 0.6);
}

.ai-stat-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: #C9A84C;
}

/* 5. Footer Styles */

footer {
  background: black;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem; /* Adjusted for mobile */
}

.linkedin-link {
  display: inline-block;
  margin: 10px;
  color: #0A66C2;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.linkedin-link:hover {
  color: #ffffff;
  transform: scale(1.15);
}


/* 6. Background per Page */

body.home {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(90, 60, 180, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(180, 130, 30, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(40, 20, 80, 0.5)   0%, transparent 70%),
    linear-gradient(160deg, #0d0b1e 0%, #1a1535 40%, #120e28 70%, #0f1a2e 100%);
  background-attachment: fixed;
}

body.services {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(180, 100, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(140, 60, 220, 0.28) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 85%, rgba(160, 80, 240, 0.22) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 40%, rgba(40, 20, 80,  0.45)  0%, transparent 45%),
    linear-gradient(105deg, #0d0b1e 0%, #150e28 35%, #2a1a4a 65%, #3a1a6a 100%);
  background-attachment: fixed;
}
body.about {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(100, 180, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(60, 140, 220, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 85%, rgba(80, 160, 240, 0.2)  0%, transparent 40%),
    radial-gradient(ellipse at 20% 40%, rgba(40, 20, 80,  0.45)  0%, transparent 45%),
    linear-gradient(105deg, #0d0b1e 0%, #111830 35%, #1a2a4a 65%, #1e3a6a 100%);
  background-attachment: fixed;
}
body.inquiry {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(201, 168, 76, 0.55)  0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(180, 140, 40, 0.32)  0%, transparent 45%),
    radial-gradient(ellipse at 80% 85%, rgba(220, 170, 50, 0.25)  0%, transparent 40%),
    radial-gradient(ellipse at 15% 45%, rgba(40, 20, 80,  0.45)   0%, transparent 45%),
    linear-gradient(105deg, #0d0b1e 0%, #1a1410 35%, #2e2008 65%, #3d2a00 100%);
  background-attachment: fixed;
}

body.inquiry label,
body.inquiry .hint {
  color: rgba(245, 235, 200, 0.9);
}
body.contact {
  background:
    radial-gradient(ellipse at 95% 50%, rgba(0, 210, 200, 0.45)  0%, transparent 55%),
    radial-gradient(ellipse at 75% 15%, rgba(0, 180, 170, 0.28)  0%, transparent 45%),
    radial-gradient(ellipse at 80% 85%, rgba(0, 200, 190, 0.22)  0%, transparent 40%),
    radial-gradient(ellipse at 15% 45%, rgba(40, 20, 80,  0.45)  0%, transparent 45%),
    linear-gradient(105deg, #0d0b1e 0%, #0d1e20 35%, #0d2e30 65%, #0d3d3a 100%);
  background-attachment: fixed;
}




/* 7. Cards / Services Grid */

.services-grid {
  display: grid;
  grid-template-columns: 1fr; /* 👈 Forces one column only */
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto; /* centers the column */
}

.card {
  background: linear-gradient(160deg, #1a1630 0%, #141028 60%, #0f1020 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 20px;
  cursor: pointer;
  min-height: 400px;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.3),
    0 0 20px rgba(201, 168, 76, 0.25),
    0 0 50px rgba(201, 168, 76, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  margin: 1rem 0 0.5rem;
  color: #f5f0ff;
}

.card > a:not(.btn-card) {
  text-decoration: none;
}

.card > a:not(.btn-card) h3 {
  transition: color 0.3s ease;
}

.card > a:not(.btn-card):hover h3 {
  color: #F5D78E;
}

.card p {
  padding: 0 1rem;
  color: rgba(210, 200, 240, 0.65);
}

.btn-card {
  display: inline-block;
  margin: 1rem 0;
  padding: 8px 20px;
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  font-weight: 500;
}

.btn-card:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}


/* 8. Form / Textarea Styles */

body.inquiry form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

body.inquiry .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.2rem;
}

body.inquiry input[type="text"],
body.inquiry input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  color: #f5f0e8;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

body.inquiry input[type="text"]:focus,
body.inquiry input[type="email"]:focus {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

body.inquiry input::placeholder {
  color: rgba(245, 235, 200, 0.35);
}

#project {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  color: #f5f0e8;
  resize: vertical;
  min-height: 160px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  font-family: inherit;
}

#project:focus {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

#project::placeholder {
  color: rgba(245, 235, 200, 0.35);
}

.hint { font-size: 13px; color: rgba(201, 168, 76, 0.6); margin-top: 4px; }

.mySubmit {
  margin-top: 1.2rem;
  width: 100%;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #C9A84C, #F5D78E);
  color: #0d0b1e;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.mySubmit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}


/* 9. Animations */

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 10. Highlight Active Link */

nav ul li a.link.active {
  color: #f0d080;
  font-weight: bold;
  border-bottom: 2px solid #c9a84c;
}


/* 11. Stats Section */

.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 50px 0;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.stats {
  background-color: #007BFF;
  color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.stats:hover {
  transform: scale(1.05);
}

.stats .counter {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Arial Black', Arial, sans-serif;
}

.stats p {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 12. Clients Section - Fixed and Responsive */

#clients {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

#clients h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f8f2f2;
}

.client-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}

.client-logos-inner {
  display: flex;
  gap: 120px;
  align-items: center;
  width: max-content;
}

.client-logos .client-icon {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.client-logos .client-icon:hover {
  transform: scale(1.1);
}


/* 13. Mobile Styles */

@media (max-width: 768px) {
  body {
    padding-top: 147px;
  }

  .logo {
    border-radius: 10px;
  }

  .ai-platform-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .ai-platform-text {
    text-align: center;
  }

  .ai-platform-card {
    width: 100%;
  }

  .logo img {
    height: 115px;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background-color: #0d0b1e;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    padding: 80px 20px;
    gap: 1rem;
    transition: right 0.3s ease;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li a {
    padding: 8px 0;
    font-size: 1rem;
  }

  main {
    padding: 3rem 1.5rem;
  }

  .container h1 {
    font-size: 2.4rem;
    letter-spacing: -0.02em;
  }

  footer {
    font-size: 0.9rem;
    padding: 1rem 0.5rem;
  }

  #clients {
    padding: 40px 15px;
  }

  #clients h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    margin-left: -580px; /* Adjust this value to move it further left */
  }

  .client-logos-inner {
    gap: 80px;
    /* Animation removed from CSS - will be applied by JavaScript */
  }

  .client-logos .client-icon {
    height: 60px;
  }

  .client-logos-inner {
    gap: 80px;
    /* Animation handled by JS */
  }

  .client-logos .client-icon {
    height: 60px;
  }
}


/* 14. WhatsApp Floating Icon */

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  fill: white;
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile-specific h2 */
.mobile-h2 {
  display: none; /* Hide by default */
}

/* 15. Service Images */

.service-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 16. Director Image */

.director-section h2, h3 {
  color: #f5f0ff;
}

/* Back Button (service sub-pages) */

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.8rem;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  color: #C9A84C;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.back-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #F5D78E;
  color: #F5D78E;
  transform: translateX(-3px);
}

/* 17. Contact Cards */

.contact-intro {
  color: rgba(210, 200, 240, 0.75);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: linear-gradient(160deg, #1a1630 0%, #141028 60%, #0f1020 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.25),
    0 0 24px rgba(201, 168, 76, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.3rem;
  color: #F5D78E;
}

.contact-card h3 {
  color: #f5f0ff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  letter-spacing: 0.5px;
}

.contact-card p {
  color: rgba(210, 200, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-card a {
  color: #C9A84C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #F5D78E;
}

.director-photo {
  width: 250px;
  height: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 15px;
}

@media (max-width: 480px) {
  .logo img {
    height: 130px;
  }
}
