
/* ---------- General ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ---------- Header ---------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 80px;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, padding 0.4s ease;
}

/* Logo */
.logo-img {
  width: 120px;
  transition: 0.3s ease;
}

/* Nav Links */
.header-center a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin: 0 22px;
  transition: 0.3s;
}

.header-center a:hover,
.header-center a.active {
  opacity: 0.7;
}

/* Contact Button */
.contact-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #fff;
  color: #981E13;
}

/* Scroll Effect */
.main-header.scrolled {
  background: #981E13; /* Same Red as index page */
  padding: 15px 80px;
}

/* Responsive base handled by responsive.css */

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;

  /* Stronger gradient colors + blend */
  background: linear-gradient(115deg, #d7263d, #981E13, #2b2bcb, #ff006a);
  background-size: 400% 400%;
  animation: neonShift 6s ease infinite;
}

/* Faster and smoother gradient movement */
@keyframes neonShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}


.about-content h1 {
  font-size: 62px;
  font-weight: 200; /* THIN FONT */
  color: #ffffff;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 15px;

  opacity: 0; 
  transform: translateY(30px);
  animation: fadeUp 1.6s ease forwards 0.4s;
}


/* Active nav link highlight */
.nav a.active {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}

/* MAIN CONTENT SECTION */
.about-main {
  width: 100%;
  padding: 120px 11vw;
  background: #fff;
}

/* Big Heading Like Digitas */
.big-title {
  font-size: 8vw;
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: -1px;

  /* Gradient Text */
  background: linear-gradient(120deg, #d7263d, #ff006a, #2b2bcb, #ff8800);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientMove 6s ease infinite;

  /* Fade Up Animation */
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.4s ease forwards 0.3s, textGradientMove 6s ease infinite;
}

/* Animated Gradient Movement */
@keyframes textGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Paragraph Text */
.about-text p {
  font-size: 18px;
  color: #222;
  line-height: 1.7;
  max-width: 850px;
  margin-bottom: 25px;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.4s ease forwards 0.6s;
}

/* Reuse Fade Animation Already Added */



.mission-vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 8%;
  gap: 40px;
  align-items: start;
}

/* Empty left side just to align */
.mv-left {}

/* Right side content */
.mv-right {
  text-align: left;
}

/* Gradient Heading (same as big-title style) */
.mv-heading {
 font-size: 8vw;
  font-weight: 200;
  margin-bottom: 40px;

  background: linear-gradient(120deg, #d7263d, #ff006a, #2b2bcb, #ff8800);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradientMove 6s ease infinite, fadeUp 1.4s ease forwards 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

/* Sub-blocks */
.mv-block h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.mv-block p {
  line-height: 1.6;
  font-size: 16px;
  color: #111;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.6s;
}

/* Fade animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient Section */
.contact-section {
  background: linear-gradient(135deg, #ff00d4, #00e1ff, #7b00ff);
  padding: 120px 40px;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: white;
  padding: 60px 40px;
  width: 85%;
  max-width: 1200px;
  border-radius: 6px;
}

.contact-box h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-col h3 {
  font-size: 22px;
  margin: 8px 0 4px;
}

.contact-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  border: 1.5px solid black;
  border-radius: 40px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}


/* Connect Form */
.connect-form {
  background: #e9e9e9;
  padding: 60px 20px;
  text-align: center;
}

.connect-form input {
  width: 260px;
  padding: 14px;
  border: none;
  border-bottom: 1.5px solid black;
  background: transparent;
  margin-right: 12px;
  outline: none;
}

.submit-btn {
  padding: 12px 30px;
  border-radius: 40px;
  border: 1.5px solid black;
  background: none;
  cursor: pointer;
  transition: .3s;
}
.submit-btn:hover{transform:scale(1.05);}

/* Footer */
footer {
  background: #000;
  color: white;
  padding: 80px 40px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  width: 60px;
  margin-bottom: 20px;
}

.social-links li {
  list-style: none;
  margin: 4px 0;
}

.social-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  opacity: 0.8;
}

.footer-right ul li {
  margin: 6px 0;
}

.footer-right ul li a {
  color: white;
  opacity: 0.9;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media(max-width:768px){
  .contact-box { width: 100%; }
  .contact-grid { flex-direction: column; text-align: center; gap: 40px; }
  .footer-content { flex-direction: column; text-align: center; gap: 40px; }
}

