/* General Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Merriweather", serif;
}

body {
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  color: white;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.98) 0%,
    rgba(30, 35, 70, 0.95) 100%
  );
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar .logo {
  font-size: 32px;
  font-weight: bold;
  color: #64d5ff;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar .logo:hover {
  text-shadow: 0 0 20px rgba(100, 213, 255, 0.6);
  transform: scale(1.05);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #64d5ff, #0099ff);
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: #64d5ff;
}

.navbar a:hover::before {
  width: 100%;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(
      135deg,
      rgba(10, 14, 39, 0.5) 0%,
      rgba(30, 35, 70, 0.7) 100%
    ),
    linear-gradient(135deg, #0a0e27, #1a1f3a);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  border-bottom: 1px solid rgba(100, 213, 255, 0.1);
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(100, 213, 255, 0.1) 0%,
    transparent 50%
  );
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

.about-hero-content {
  z-index: 2;
  animation: slideUp 0.8s ease-out;
  max-width: 800px;
}

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

.about-hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #64d5ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero p {
  font-size: 18px;
  color: #d0d0d0;
  line-height: 1.8;
}

/* Main Content */
main {
  padding-bottom: 0;
}

/* Section Title */
.section-title {
  text-align: center;
  margin: 80px 0 60px;
  animation: fadeIn 0.8s ease-out;
}

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

.section-title h2 {
  font-size: 48px;
  color: #64d5ff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title p {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 600px;
  margin: 0 auto;
}

/* About Sections */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

.about-section:nth-child(even) {
  flex-direction: row-reverse;
}

.about-section:nth-child(odd) {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.05) 0%,
    rgba(0, 150, 255, 0.05) 100%
  );
}

.text-content,
.image-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #64d5ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text-content h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #64d5ff;
}

.text-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(100, 213, 255, 0.2);
  transition: all 0.4s ease;
  border: 2px solid rgba(100, 213, 255, 0.1);
}

.image-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(100, 213, 255, 0.4);
  border-color: rgba(100, 213, 255, 0.3);
}

/* Skills Section */
.skills-section {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.05) 0%,
    rgba(0, 150, 255, 0.05) 100%
  );
  padding: 100px 10%;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
  border-bottom: 1px solid rgba(100, 213, 255, 0.1);
}

.skills-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.skill-card {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.8) 0%,
    rgba(10, 20, 50, 0.8) 100%
  );
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(100, 213, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(100, 213, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.skill-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(100, 213, 255, 0.3);
  border-color: rgba(100, 213, 255, 0.4);
}

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

.skill-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.skill-card h3 {
  font-size: 22px;
  color: #64d5ff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.skill-card p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Achievement Stats */
.achievements-section {
  padding: 80px 10%;
  max-width: 1200px;
  margin: 0 auto;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.achievement-item {
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.achievement-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.achievement-number {
  font-size: 36px;
  font-weight: 900;
  color: #64d5ff;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(100, 213, 255, 0.3);
}

.achievement-label {
  font-size: 16px;
  color: #d0d0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(
    135deg,
    rgba(100, 150, 255, 0.05) 0%,
    rgba(0, 150, 255, 0.05) 100%
  );
  padding: 100px 10%;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(20, 30, 60, 0.8) 0%,
    rgba(10, 20, 50, 0.8) 100%
  );
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(100, 213, 255, 0.15);
  transition: all 0.4s ease;
  animation: fadeIn 0.8s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(100, 213, 255, 0.3);
  border-color: rgba(100, 213, 255, 0.4);
}

.testimonial-stars {
  color: #64d5ff;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  color: #64d5ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Video Gallery */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 100px 10%;
  max-width: 1400px;
  margin: 0 auto;
}

.video-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
  border: 1px solid rgba(100, 213, 255, 0.1);
  animation: fadeIn 0.8s ease-out;
}

.video-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(100, 213, 255, 0.3);
}

video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, #64d5ff, #0099ff);
  padding: 80px 10%;
  text-align: center;
  margin: 0;
}

.about-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #0a0e27;
}

.about-cta p {
  font-size: 18px;
  color: #0a0e27;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: #0a0e27;
  color: #64d5ff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background: rgba(0, 0, 0, 0.3);
  color: white;
  transform: scale(1.05);
}

/* Footer */
/* Footer */
footer {
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.95) 0%,
    rgba(20, 25, 60, 0.9) 100%
  );
  border-top: 2px solid rgba(100, 213, 255, 0.2);
  padding: 80px 10%;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

.footer-section h3 {
  color: #64d5ff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
}

.footer-section p {
  color: #b0d0e0;
  line-height: 1.8;
  font-size: 15px;
}

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

.footer-section ul li {
  margin-bottom: 15px;
}

.footer-section a {
  color: #b0d0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-section a:hover {
  color: #64d5ff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(100, 213, 255, 0.1);
  color: #888;
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom p:first-child {
  color: #b0d0e0;
  font-weight: 500;
}

.footer-bottom p:last-child {
  color: #666;
  font-size: 12px;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  .navbar ul {
    gap: 25px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .about-section {
    padding: 60px 5%;
    gap: 40px;
  }

  .text-content h2 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .navbar .logo {
    font-size: 24px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }

  .about-hero {
    min-height: 50vh;
    padding-top: 80px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .section-title {
    margin: 60px 0 40px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }

  .about-section {
    flex-direction: column;
    padding: 50px 5%;
    gap: 30px;
  }

  .about-section:nth-child(even) {
    flex-direction: column;
  }

  .text-content h2 {
    font-size: 28px;
  }

  .text-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .skills-section {
    padding: 60px 5%;
  }

  .skills-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .achievement-item {
    background: linear-gradient(
      135deg,
      rgba(20, 30, 60, 0.6) 0%,
      rgba(10, 20, 50, 0.6) 100%
    );
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(100, 213, 255, 0.15);
    text-align: center;
    transition: all 0.3s ease;
  }

  .achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(100, 213, 255, 0.2);
    border-color: rgba(100, 213, 255, 0.3);
  }

  .achievement-icon {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .achievement-number {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .achievement-label {
    font-size: 13px;
  }

  .achievements-section {
    padding: 60px 5%;
  }

  .testimonials-section {
    padding: 60px 5%;
  }

  .testimonials-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 5%;
    gap: 20px;
  }

  .about-cta {
    padding: 60px 5%;
  }

  .about-cta h2 {
    font-size: 32px;
  }

  .about-cta p {
    font-size: 15px;
  }

  .footer-content {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar .logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .navbar ul {
    gap: 8px;
  }

  .navbar a {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .about-hero {
    min-height: 40vh;
    padding-top: 60px;
  }

  .about-hero h1 {
    font-size: 24px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .section-title {
    margin: 60px 0 40px;
  }

  .section-title h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section-title p {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-section {
    padding: 40px 4%;
    gap: 20px;
    margin: 0;
  }

  .text-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .text-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .image-content {
    margin-top: 10px;
  }

  .skills-section {
    padding: 40px 4%;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .skill-card {
    padding: 25px 20px;
  }

  .skill-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .skill-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .achievements-section {
    padding: 40px 4%;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .achievement-item {
    background: linear-gradient(
      135deg,
      rgba(20, 30, 60, 0.6) 0%,
      rgba(10, 20, 50, 0.6) 100%
    );
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(100, 213, 255, 0.15);
    transition: all 0.3s ease;
  }

  .achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(100, 213, 255, 0.2);
    border-color: rgba(100, 213, 255, 0.3);
  }

  .achievement-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .achievement-number {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .achievement-label {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .testimonials-section {
    padding: 40px 4%;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-card h3 {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .testimonial-author {
    font-size: 12px;
  }

  .video-gallery {
    grid-template-columns: 1fr;
    padding: 40px 4%;
    gap: 15px;
  }

  .video-item {
    border-radius: 12px;
  }

  .about-cta {
    padding: 50px 4%;
  }

  .about-cta h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-cta p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 220px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }

  .footer-section p {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-section a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom p:first-child {
    font-size: 12px;
  }

  .footer-bottom p:last-child {
    font-size: 11px;
  }
}
