/* The Midas Touch - Modern Business Coaching Website */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables for consistent theming */
:root {
  /* Color Palette - Rich Golden Midas Touch Theme */
  --primary-color: #1a1a1a;
  --secondary-color: #2d2d2d;
  --accent-color: #d4af37;
  --accent-light: #f4e4a6;
  --accent-dark: #b8860b;
  --accent-golden: #d4af37;
  --accent-golden-light: #f4e4a6;
  --accent-golden-dark: #b8860b;
  --accent-golden-bright: #ffd700;
  --accent-golden-warm: #daa520;
  --accent-golden-rich: #b8860b;
  --accent-golden-soft: #f5deb3;
  --text-primary: #ffffff;
  --text-secondary: #f0f0f0;
  --text-muted: #cccccc;
  --text-golden: #d4af37;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --error-color: #e74c3c;
  
  /* Glassmorphism Colors with Rich Golden Tint */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px; /* Fixed header height */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.8vw, 1.25rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-golden);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-golden), var(--accent-golden-warm));
  color: var(--primary-color);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--accent-golden-warm), var(--accent-golden));
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-golden);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: left 0.3s ease;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: var(--accent-golden);
  color: var(--primary-color);
  border-color: var(--accent-golden-warm);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--accent-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
  transition: var(--transition-medium);
  height: 80px;
  box-shadow: 0 2px 20px rgba(212, 175, 55, 0.08);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid var(--accent-golden);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 100%;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  margin-right: 2rem;
}

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

.logo img {
  height: 70px;
  width: auto;
  transition: var(--transition-fast);
  background: white;
  padding: 2px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1000;
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
}

/* Creative shape background for logo */
.logo img::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 28px;
  z-index: -1;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  transform: rotate(-2deg);
  transition: var(--transition-medium);
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
}

.logo:hover img::before {
  transform: rotate(2deg) scale(1.05);
}

/* Creative corner accent - top right */
.logo::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-bottom: 20px solid var(--accent-color);
  opacity: 0.9;
  z-index: 1001;
  animation: pulse 2s infinite;
}

/* Creative corner accent - bottom left */
.logo::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 0;
  height: 0;
  border-right: 16px solid transparent;
  border-top: 16px solid var(--accent-light);
  opacity: 0.7;
  z-index: 1001;
  animation: pulse 2s infinite 0.5s;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.logo-text .company-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  transition: var(--transition-fast);
}

.logo-text .founder-name {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  transition: var(--transition-fast);
}

.logo:hover .company-name {
  color: var(--accent-light);
}

.logo:hover .founder-name {
  color: var(--text-primary);
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  margin-left: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-golden), var(--accent-golden-warm));
  transition: var(--transition-fast);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-golden);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1rem 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-medium);
  box-shadow: var(--glass-shadow);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(244, 162, 97, 0.1);
  color: var(--accent-color);
  transform: translateX(5px);
}

.dropdown-header {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(244, 162, 97, 0.1);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* Hero Section with Video Background */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-golden), var(--accent-golden-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInFromTop 1.2s ease-out;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
  animation: slideInFromBottom 1.4s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease-out;
}

/* Sections */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-golden), var(--accent-golden-warm));
  border-radius: 2px;
  animation: expandWidth 1s ease-out;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-golden), var(--accent-golden-warm));
  transform: scaleX(0);
  transition: var(--transition-medium);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-golden);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-golden), var(--accent-golden-warm));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-medium);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.card:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(233, 196, 106, 0.1));
  opacity: 0;
  transition: var(--transition-medium);
}

.team-member:hover::before {
  opacity: 1;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-golden);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--accent-golden);
  object-fit: cover;
  transition: var(--transition-medium);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.team-member:hover .team-photo {
  transform: scale(1.1) rotate(5deg);
}

.team-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-golden);
  color: var(--primary-color);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Social Links - Fixed horizontal layout */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  margin-top: 3rem;
}

.testimonial {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--accent-golden);
  font-family: var(--font-display);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-color);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-medium);
  animation: fadeInUp 0.8s ease-out;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  line-height: 1.6;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  display: block;
  padding: 0.25rem 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--accent-color);
  width: 16px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  flex: 1;
  text-align: left;
}

.footer-copyright p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.footer-credit {
  flex: 1;
  text-align: center;
}

.footer-credit p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

.footer-credit a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--accent-light);
}

.footer-legal {
  flex: 1;
  text-align: right;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent-color);
}

.footer-legal .separator {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo-text h3 {
  color: var(--accent-color);
  margin: 0;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.footer-logo-text p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.8rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Journey Timeline */
.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  padding-right: 50%;
}

.timeline-item:nth-child(even) {
  padding-left: 50%;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: var(--transition-medium);
  box-shadow: var(--glass-shadow);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(244, 162, 97, 0.5);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -60px;
}

.timeline-content:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.timeline-icon {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Services Page Fixes */
.why-choose-section {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(233, 196, 106, 0.1));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f4a261" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e9c46a" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23f4a261" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
}

.why-choose-content {
  position: relative;
  z-index: 2;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.1), transparent);
  transition: var(--transition-medium);
}

.why-choose-card:hover::before {
  left: 100%;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.3);
  transition: var(--transition-medium);
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.why-choose-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Video Section */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  transition: var(--transition-medium);
}

.video-thumbnail:hover {
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(244, 162, 97, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: var(--transition-medium);
  z-index: 2;
}

.play-button:hover {
  background: var(--accent-color);
  transform: translate(-50%, -50%) scale(1.1);
}

/* FAQ Section */
.faq-section {
  background: rgba(244, 162, 97, 0.05);
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(244, 162, 97, 0.1);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
  opacity: 1;
}

.faq-toggle {
  transition: var(--transition-fast);
  transform: rotate(0deg);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate 20s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-medium);
  }

  .nav-link:hover {
    background: rgba(244, 162, 97, 0.1);
    transform: translateX(10px);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(244, 162, 97, 0.05);
    border: 1px solid rgba(244, 162, 97, 0.1);
    border-radius: 10px;
    margin-top: 0.5rem;
    padding: 0.5rem;
    box-shadow: none;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    margin-bottom: 0.25rem;
    transition: var(--transition-fast);
  }

  .dropdown-item:hover {
    background: rgba(244, 162, 97, 0.1);
    transform: translateX(5px);
  }

  .dropdown-header {
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(244, 162, 97, 0.2);
    margin-bottom: 0.5rem;
  }

  .header-content {
    justify-content: space-between;
  }

  .logo {
    flex-shrink: 0;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  /* Timeline Mobile */
  .journey-timeline::before {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
    right: auto;
  }

  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    left: -20px;
    border-right-color: var(--glass-bg);
    border-left-color: transparent;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Footer Bottom Mobile */
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-copyright,
  .footer-credit,
  .footer-legal {
    flex: none;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
    margin: 0;
  }
  
  .header-content {
    gap: 0;
    padding: 0.5rem 0;
  }
  
  .logo {
    margin-right: 0;
    gap: 0.5rem;
  }
  
  .nav-menu {
    margin-left: 0;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-golden), var(--accent-golden-warm));
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Bootstrap-like Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-8 {
  padding: 0 15px;
  box-sizing: border-box;
}

.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }

/* Text Colors */
.text-accent { color: var(--accent-golden); }
.text-golden { color: var(--accent-golden); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-danger { color: var(--error-color); }
.text-info { color: #17a2b8; }

/* Responsive Grid */
@media (max-width: 768px) {
  .col-md-3, .col-md-4, .col-md-6, .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  .row {
    flex-direction: column;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; } 

/* Animated header menu */
.nav-menu .nav-link {
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

.nav-menu .nav-link i {
  margin-right: 0.5rem;
  font-size: 1.1em;
  transition: color 0.3s, transform 0.3s;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--accent-golden);
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.nav-menu .nav-link:hover i,
.nav-menu .nav-link.active i {
  color: var(--accent-golden);
  transform: rotate(-8deg) scale(1.2);
} 

/* Hero Slider */
.hero-slider {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}

.hero-slider .swiper-container {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 150px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  color: var(--accent-golden);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.25);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Swiper Navigation Buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--accent-golden);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition-medium);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(244, 162, 97, 0.4);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Swiper Pagination */
.hero-slider .swiper-pagination {
  bottom: 30px;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--accent-color);
  opacity: 1;
  transition: var(--transition-medium);
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(244, 162, 97, 0.5);
}

/* Improved Image Sizing */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition-medium);
}

.card:hover img {
    transform: scale(1.05);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    transition: var(--transition-medium);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition-medium);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

/* Video Container Improvements */
.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-medium);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.video-container:hover .video-thumbnail img {
    transform: scale(1.05);
}

/* Responsive Image Improvements */
@media (max-width: 768px) {
    .card img {
        height: 150px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .video-thumbnail img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .card img {
        height: 120px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .video-thumbnail img {
        height: 120px;
    }
} 

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-info {
    padding: 1.5rem;
    background: var(--glass-bg);
}

.lightbox-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.lightbox-info p {
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .header-content {
        padding: 0.5rem 0;
        gap: 0;
        justify-content: space-between;
    }
    
    .logo {
        margin-right: 0;
        gap: 0.5rem;
    }
    
    .nav-menu {
        margin-left: 0;
    }
    
    .logo img {
        height: 55px;
        padding: 2px;
        border-radius: 18px;
        clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
        z-index: 1000;
    }
    
    /* Adjust decorative elements for mobile */
    .logo::after {
        border-left: 16px solid transparent;
        border-bottom: 16px solid var(--accent-color);
        top: -6px;
        right: -6px;
        z-index: 1001;
    }
    
    .logo::before {
        border-right: 14px solid transparent;
        border-top: 14px solid var(--accent-light);
        bottom: -6px;
        left: -6px;
        z-index: 1001;
    }
    
    .logo-text .company-name {
        font-size: 1.3rem;
    }
    
    .logo-text .founder-name {
        font-size: 0.8rem;
    }
    
    /* Show mobile menu toggle on mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-item {
        padding: 0.5rem 2rem;
        font-size: 1rem;
    }
    
    .dropdown-header {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
        color: var(--accent-color);
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 0.5rem;
    }
    
    .hero-slider {
        height: calc(60vh - 70px);
        margin-top: -10px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        margin: 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .courses-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .course-card,
    .testimonial-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-info {
        padding: 1rem;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .service-card h3,
    .course-card h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 0.9rem;
    }
    
    .blog-card h3 {
        font-size: 1.1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-control {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
} 

/* Policy Pages */
.page-header {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: var(--transition-medium);
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.policy-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-section ul li {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.policy-section ul li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.policy-section .contact-info {
  background: rgba(244, 162, 97, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.policy-section .contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.policy-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(244, 162, 97, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(244, 162, 97, 0.1);
}

.policy-footer p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0;
  }
  
  .page-header-content h1 {
    font-size: 2rem;
  }
  
  .page-header-content p {
    font-size: 1rem;
  }
  
  .policy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .policy-section ul li {
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .page-header-content h1 {
    font-size: 1.5rem;
  }
  
  .policy-section {
    padding: 1rem;
  }
  
  .policy-section h2 {
    font-size: 1.3rem;
  }
} 

/* Services Page Styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.service-features li i {
  color: var(--accent-color);
  font-size: 0.9rem;
  width: 16px;
}

/* Process Steps Styles */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition-medium);
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(360deg);
}

.step-content h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
} 

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 