
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease; 
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #22242b, #1a1c23);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  animation: fadeIn 1s ease-in-out;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-fallback {
  font-size: 2rem;
  display: inline-block;
  animation: logoFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

/* Fallback animations for hover effects */
.about-card, .faq-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.star {
  transition: transform 0.3s ease, color 0.3s ease;
}

.modal-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-section .container {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: containerSlideUp 3s ease-out 1s both;
}

@keyframes containerSlideUp {
  0% { 
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.social-bar{
  background: linear-gradient(135deg, var(--bg-grad-a), var(--bg-grad-b));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
}
.social-links{
  max-width:1200px; margin:0 auto; padding:14px 16px;
  display:flex; gap:28px; justify-content:center; align-items:center; flex-wrap:wrap;
}
.social-link{
  display:grid; place-items:center; text-align:center; text-decoration:none; color:#fff;
  transition: transform .28s var(--timing), filter .28s var(--timing);
}
.social-link img{
  width:44px; height:44px; display:block; margin-bottom:6px; filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
  transition: transform .28s var(--timing);
}
.social-link:hover{ transform: translateY(-2px) }
.social-link:hover img{ transform: scale(1.12) rotate(3deg) }

.header {
  background: rgba(34, 36, 43, 0.95);
  padding: 3.5rem 0 4.5rem 0; 
  border-bottom: 2px solid #000000;
  text-align: center;
  position: static;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
  margin-bottom: 1.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  animation: slideInDown 0.5s ease-out;
  padding: 0 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@keyframes slideInDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.logo {
  height: 86px;
  width: 86px; 
  border-radius: 50%; 
  object-fit: cover; 
  object-position: center; 
  border: 4px solid rgba(255, 255, 255, 0.35); 
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.5),
    0 0 0 6px rgba(255, 255, 255, 0.06);
  margin: 0.6rem; 
}

.company-name {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  left: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.company-name .name {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #f8fafc;
  opacity: 0.95;
  font-style: italic;
  text-transform: none;
}

.company-name .brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}



.company-name:hover {
  color: #ddd; 
}


.navbar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: static;
  animation: navSlideIn 0.8s ease-out;
  margin-top: 0.5rem;
}

@keyframes navSlideIn {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 1rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 300;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hamburger-line {
  width: 30px;
  height: 4px;
  background: #ffffff;
  margin: 4px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 3px;
  transform-origin: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.2rem 0;
  list-style: none;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 0.8rem;
}

.nav-link:hover::before,
.nav-link:focus::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover::after,
.nav-link:focus::after {
  opacity: 1;
}

.nav-link:hover,
.nav-link:focus {
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.nav-link:active {
  transform: translateY(-1px) scale(1.02);
}


.section {
  padding: 5rem 0; 
  text-align: center;
}

.section-title {
  font-size: 2.8rem; 
  color: #2661c0;
  margin-bottom: 1rem; 
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); 
  animation: fadeInUp 1s ease-out;
}

.section-subtitle {
  font-size: 1.4rem; 
  margin-bottom: 2.5rem; 
  opacity: 0.85;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeInUp {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: overlayPulse 4s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  0% { background: rgba(0, 0, 0, 0.3); }
  100% { background: rgba(0, 0, 0, 0.5); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 3;
  animation: 
    titleSlideIn 2s ease-out,
    titleFloat 8s ease-in-out infinite 2s,
    titleGlow 4s ease-in-out infinite 2s;
}

@keyframes titleSlideIn {
  0% { 
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
  }
  100% { 
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes titleGlow {
  0%, 100% { 
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.3);
  }
  50% { 
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 255, 255, 0.6);
  }
}

.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  background-clip: text;
  -webkit-background-clip: text;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes heroScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 3rem;
  color: #e2e8f0;
  position: relative;
  z-index: 3;
  animation: 
    subtitleSlideIn 2.5s ease-out 0.5s both,
    subtitleFloat 6s ease-in-out infinite 3s,
    subtitlePulse 3s ease-in-out infinite 3s;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

@keyframes subtitleSlideIn {
  0% { 
    opacity: 0;
    transform: translateX(-100px) rotateY(45deg);
  }
  100% { 
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@keyframes subtitleFloat {
  0%, 100% { transform: translateX(0); }
  33% { transform: translateX(-5px); }
  66% { transform: translateX(5px); }
}

@keyframes subtitlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes subtitleSlide {
  0% { 
    transform: translateY(30px);
    opacity: 0;
  }
  100% { 
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes subtitleGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(226, 232, 240, 0.3); }
  50% { text-shadow: 0 0 20px rgba(226, 232, 240, 0.6); }
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  animation: videoZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes videoReveal {
  0% { 
    transform: scale(0.8) rotateY(15deg);
    opacity: 0;
  }
  100% { 
    transform: scale(1) rotateY(0);
    opacity: 1;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem;
  background: rgba(34, 36, 43, 0.95);
  width: 100%;
  margin: 0 auto 5rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.about-section .container {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: 
    titlePulse 6s ease-in-out infinite,
    titleFloat 8s ease-in-out infinite;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #666666;
  border-radius: 2px;
  animation: underlineExpand 2s ease-out;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes titlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes underlineExpand {
  0% { width: 0; }
  100% { width: 100px; }
}

.about-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 800px;
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  background-clip: padding-box;
  margin-bottom: 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  animation: cardSlideUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.about-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #666, #999, #666);
  background-size: 300% 300%;
  border-radius: 2rem;
  z-index: -2;
  opacity: 0;
  animation: borderGlow 3s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.about-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(59, 130, 246, 0.3),
    0 0 50px rgba(139, 92, 246, 0.2);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover::after {
  opacity: 1;
}

@keyframes cardSlideUp {
  0% { 
    transform: translateY(80px) rotateX(15deg);
    opacity: 0;
  }
  100% { 
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}

.profile-img {
  width: 280px;
  height: 350px;
  border-radius: 2rem;
  margin: 0 2rem 2rem 0;
  float: left;
  object-fit: cover;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  animation: imageReveal 1.5s ease-out;
}

.profile-img::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #10b981);
  background-size: 300% 300%;
  border-radius: 2rem;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.profile-img:hover::before {
  opacity: 1;
}

@keyframes borderRotate {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.profile-img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 
    0 25px 50px rgba(59, 130, 246, 0.4),
    0 0 60px rgba(139, 92, 246, 0.3);
}

@keyframes imageReveal {
  0% { 
    clip-path: circle(0% at 50% 50%);
    transform: scale(0.8);
  }
  100% { 
    clip-path: circle(100% at 50% 50%);
    transform: scale(1);
  }
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: textGlow 3s ease-in-out infinite;
}

.about-text h4 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  color: #cccccc;
  position: relative;
  padding-left: 20px;
}

.about-text h4::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #888888;
  animation: pointBlink 2s infinite;
}

@keyframes pointBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.about-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  animation: textFadeIn 1s ease-out;
  transition: color 0.3s ease;
}

.about-card p:hover {
  color: #f1f5f9;
}

@keyframes textFadeIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
  50% { text-shadow: 0 0 30px rgba(139, 92, 246, 0.7); }
}

@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .nav-list {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }
}

@media (max-width: 768px) {
 
  .header {
    padding: 2.5rem 0 3.5rem 0; 
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.8rem;
    justify-content: center;
  }

  .company-name {
    position: relative;
    left: auto;
    transform: none;
    gap: 1rem;
  }

  .company-name .name {
    font-size: 1.3rem;
    letter-spacing: 0.3px;
  }

  .company-name .brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .logo {
    height: 65px;
    width: 65px; 
    margin: 0.3rem; 
  }

  .nav-toggle {
    display: flex;
    animation: toggleFadeIn 0.6s ease-out;
    padding: 0.6rem;
  }

  @keyframes toggleFadeIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
  }

  .hamburger-line {
    width: 22px;
    height: 3px;
    margin: 3px 0;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 10rem 0.8rem 2rem;
    transform: translateX(-100%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 250;
    overflow-y: auto;
  }

  .nav-list.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .nav-list li {
    animation: navItemSlide 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
    transform: translateY(40px) rotateX(15deg);
    width: 100%;
    max-width: 250px;
  }

  .nav-list.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-list.active li:nth-child(2) { animation-delay: 0.2s; }
  .nav-list.active li:nth-child(3) { animation-delay: 0.3s; }
  .nav-list.active li:nth-child(4) { animation-delay: 0.4s; }
  .nav-list.active li:nth-child(5) { animation-delay: 0.5s; }

  @keyframes navItemSlide {
    to {
      opacity: 1;
      transform: translateY(0) rotateX(0);
    }
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.2px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transform: translateY(0) scale(1);
  }

  .nav-link::before {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
  }

  .nav-link:hover,
  .nav-link:focus {
    transform: scale(1.03) translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  .nav-link:active {
    transform: scale(1.01) translateY(-1px);
    transition: all 0.1s ease;
  }

  .social-links-container {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
  }

  .social-link img {
    width: 40px;
    height: 40px;
  }

  .social-link p {
    font-size: 0.7rem;
  }

  .hero-section .container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .about-section {
    padding: 3rem 0.5rem;
  }

  .section-title {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 2rem;
  }

  .section-title::after {
    width: 80px;
  }

  .about-card {
    padding: 2rem 1.5rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .profile-img {
    width: 100%;
    max-width: 280px;
    height: 300px;
    float: none;
    margin: 0 auto 1.5rem auto;
    display: block;
  }

  .about-text {
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    padding-left: 0;
    text-align: center;
  }

  .about-text h4::before {
    position: relative;
    left: 0;
    margin-right: 8px;
  }

  .about-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .faq-list {
    gap: 1.5rem;
    margin: 0 1rem;
  }

  .faq-item {
    padding: 2rem 1.5rem;
  }

  .faq-item h3 {
    font-size: 1.4rem;
    text-align: center;
    padding-left: 0;
  }

  .faq-item h3::before {
    position: relative;
    left: 0;
    margin-right: 8px;
  }

  .faq-item p {
    font-size: 1.1rem;
    text-align: center;
  }

  .footer {
    padding: 1.5rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .container {
    width: 98%;
  }

  .header {
    padding: 2rem 0 3rem 0;
  }

  .company-name {
    font-size: 1.6rem;
  }

  .logo {
    height: 55px;
    width: 55px; 
  }

  .nav-list {
    padding: 1rem 0;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  .social-link img {
    width: 35px;
    height: 35px;
  }

  .social-link p {
    font-size: 0.6rem;
  }

  .hero-section .container {
    padding: 1rem;
    margin: 0.5rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 4vw, 1rem);
  }

  .about-section {
    padding: 2rem 0.25rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .about-card {
    padding: 1.5rem 1rem;
  }

  .profile-img {
    max-width: 240px;
    height: 260px;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text h4 {
    font-size: 1.1rem;
  }

  .about-card p {
    font-size: 1rem;
  }

  .faq-list {
    margin: 0 0.5rem;
  }

  .faq-item {
    padding: 1rem 0.8rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {

  .hero-title {
    font-size: clamp(1.3rem, 10vw, 1.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.7rem, 5vw, 0.9rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 1.8rem);
  }

  .about-card {
    padding: 1rem 0.8rem;
  }

  .profile-img {
    max-width: 200px;
    height: 220px;
  }

  .faq-item {
    padding: 1rem 0.8rem;
  }
}




.coachings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2.5rem; 
  margin-top: 2.5rem; 
  text-align: left;
  animation: fadeInUp 1s ease-out;
}

.coaching-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 2.2rem; 
  border-radius: 1.2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 25px rgb(52, 141, 223, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coaching-card:hover {
  transform: translateY(-12px); 
  box-shadow: 0 0 40px #054599;
}

.coaching-card h3 {
  color: #0b5bda;
  margin-bottom: 0.8rem;
  font-size: 1.6rem; 
}

.coaching-card p {
  flex-grow: 1;
  margin-bottom: 1.2rem;
  font-size: 1.1rem; 
}

.price {
  font-weight: 800; 
  font-size: 1.7rem; 
  color: #1379e7;
  margin-bottom: 1.2rem;
}

.coaching-card ul {
  list-style: none;
  margin-bottom: 1.8rem; 
}

.coaching-card ul li {
  margin-bottom: 0.6rem;
  font-size: 1.1rem; 
}

.btn {
  background: #666666;
  color: #ffffff;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.btn:hover,
.btn:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  background: #555555;
}

.btn:active {
  transform: translateY(-1px) scale(1.02);
}

@keyframes buttonGlow {
  0%, 100% { 
    box-shadow: 
      0 8px 20px rgba(59, 130, 246, 0.3),
      0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% { 
    box-shadow: 
      0 12px 30px rgba(59, 130, 246, 0.5),
      0 0 0 4px rgba(59, 130, 246, 0.2);
  }
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: faqSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes faqSlideIn {
  0% { 
    transform: translateX(100%) rotateY(15deg);
    opacity: 0;
  }
  100% { 
    transform: translateX(0) rotateY(0);
    opacity: 1;
  }
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 3rem;
  border-radius: 2rem;
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: faqItemReveal 0.8s ease-out;
  animation-fill-mode: both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes faqItemReveal {
  0% { 
    transform: translateY(50px) scale(0.9);
    opacity: 0;
  }
  100% { 
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.faq-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #666, #999, #666);
  background-size: 300% 300%;
  border-radius: 2rem;
  z-index: -2;
  opacity: 0;
  animation: faqBorderFlow 4s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

@keyframes faqBorderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.faq-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(59, 130, 246, 0.3),
    0 0 60px rgba(139, 92, 246, 0.2);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover::after {
  opacity: 1;
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  animation: faqTitleShine 3s ease-in-out infinite;
  position: relative;
}

.faq-item h3::before {
  content: '💡';
  position: absolute;
  left: -40px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes faqTitleShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(10deg); }
}

.faq-item p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e2e8f0;
  animation: textReveal 0.8s ease-out;
  transition: color 0.3s ease;
}

.faq-item:hover p {
  color: #f1f5f9;
}

@keyframes textReveal {
  0% { 
    opacity: 0;
    transform: translateX(-20px);
  }
  100% { 
    opacity: 1;
    transform: translateX(0);
  }
}

.footer {
  background: rgba(15, 23, 42, 0.95);
  text-align: center;
  padding: 1.2rem 0; 
  font-size: 1rem; 
  color: #94a3b8;
  border-top: 2px solid #000000;
}

@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
  }
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-card {
    max-width: 100%;
  }
  .nav-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
    .nav-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 1rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
  }
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.payment-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.payment-box h3 {
  margin-bottom: 1rem;
  color: #222;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #2d97fb;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 0.3rem 0;
}

.buy-btn {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(90deg, #1f69e0, #2659f2);
  color: black;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: linear-gradient(90deg, #094bb3, #406df2);
}