/* ===== GLOBAL ===== */
body {
  font-family: 'Hubot Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #E8402A;
  color: #FFFFFF;
  font-size: 14px;
  padding: 8px 0;
}

.top-right a {
  color: #FFFFFF;
  margin-left: 12px;
  opacity: 0.85;
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: #F7F6EC;
  padding: 18px 0;
}

.navbar-brand img {
  height: 48px;
}

.navbar-brand strong {
  font-size: 20px;
  letter-spacing: 1px;
}

.navbar-brand small {
  font-size: 12px;
  letter-spacing: 2px;
  color: #000000;
}

.nav-link {
  font-weight: 500;
  color: #000000;
}

.nav-link.active {
  border-bottom: 2px solid #E8402A;
}

.btn-apply {
  background: #E8402A;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 30px;
}

/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  min-height: 75vh;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247,246,236,0.65),
    rgba(247,246,236,0.80)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 1s ease-out;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #000000;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-hero .hero-intro {
  font-size: 19px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.about-hero .hero-description {
  font-size: 17px;
  color: #000000;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-badge {
  display: inline-block;
  background: #F7F6EC;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 28px;
  animation: fadeIn 1.2s ease-out 0.2s both;
}

.about-hero p {
  font-size: 18px;
  color: #000000;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #000000, #000000);
  color: #FFFFFF;
  padding: 40px 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-legal a {
  color: #FFFFFF;
  margin-left: 20px;
  text-decoration: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* ===== STORY SECTION ===== */
.story-section {
  padding: 110px 0;
  background: #F7F6EC;
}

/* EYEBROW */
.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 18px;
}

/* TITLE */
.story-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* TEXT */
.story-text {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 18px;
}

/* HIGHLIGHT LINE */
.story-highlight {
  font-size: 16px;
  font-weight: 600;
  color: #E8402A;
  margin-top: 22px;
}

/* IMAGE */
.story-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  padding-left: 40px;
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
}

/* BADGE */
.story-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: #E8402A;
  color: #ffffff;
  padding: 26px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.story-badge h3 {
  font-size: 34px;
  font-weight: 800;
  margin: 0;
}

.story-badge span {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  opacity: 0.85;
  text-transform: uppercase;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .story-title {
    font-size: 30px;
  }
  
  .story-image-wrapper {
    padding-left: 20px;
  }

  .story-badge {
    left: 0;
    bottom: 16px;
    padding: 20px 22px;
  }

  .story-badge h3 {
    font-size: 26px;
  }
}
/* ===== VALUES SECTION ===== */
.values-section {
  padding: 100px 0;
  background: #FFFFFF;
}

/* VISION / MISSION CARDS */
.vm-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 2px solid #F7F6EC;
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(232,64,42,0.15);
  border-color: #E8402A;
}

.vm-image-wrapper {
  position: relative;
  height: 321px;
  overflow: hidden;
}

.vm-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vm-card:hover .vm-image-wrapper img {
  transform: scale(1.1);
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(232,64,42,0.3), rgba(167,0,0,0.5));
}

.vm-content {
  padding: 40px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vm-icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8402A, #F08C1C);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(232,64,42,0.25);
}

.vm-icon-badge i {
  font-size: 32px;
  color: #FFFFFF;
}

.vm-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000000;
}

.vm-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}

.vm-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-content ul li {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vm-content ul li i {
  color: #E8402A;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* PRINCIPLES HEADER */
.principles-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.principles-header p {
  font-size: 15px;
  color: #000000;
}

/* PRINCIPLE CARDS */
.principle-card {
  background: #F7F6EC;
  border: 1px solid #F7F6EC;
  border-radius: 22px;
  padding: 30px;
  height: 100%;
}

.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #FAEBD7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 18px;
}

.principle-card h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.principle-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

/* MOBILE */
@media (max-width: 768px) {
  .principles-header h2 {
    font-size: 28px;
  }
}
/* ===== VIJETHA 2.0 SECTION ===== */
.vijetha2-section {
  padding: 110px 0;
  background: radial-gradient(
    circle at top,
    #000000,
    #000000 70%
  );
  color: #ffffff;
}

/* TITLE */
.v2-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* SUBTITLE */
.v2-subtitle {
  font-size: 16px;
  color: #FFFFFF;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* CARD */
.v2-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  height: 100%;
}

/* ICON */
.v2-card i {
  font-size: 18px;
  color: #ffffff;
}

/* TEXT */
.v2-card span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .v2-title {
    font-size: 30px;
  }

  .v2-card {
    padding: 18px 20px;
  }
}
/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: #F7F6EC;
}

.final-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 16px;
  color: #000000;
  max-width: 680px;
  margin: 0 auto 34px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-dark-cta {
  background: #E8402A;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-light-cta {
  background: #FAEBD7;
  color: #E8402A;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-light-cta:hover {
  background: #F08C1C;
  color: #ffffff;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #000000, #000000);
  color: #FFFFFF;
  padding: 90px 0 40px;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 42px;
}

.footer-brand span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

/* TEXT */
.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
}

/* TITLES */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
}

/* CONTACT */
.footer-contact {
  font-size: 14px;
  margin-bottom: 12px;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 30px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: #FFFFFF;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
