@font-face {
  font-family: 'IntroRust';
  src: url('./fonts/introrust-base.otf') format('opentype');
}


/* Hero Section */
.why-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.8;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  filter: blur(50px);
  animation: floatAnimation 20s infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -250px;
  animation-delay: 0s;
}

.shape-2 {
  width: 600px;
  height: 600px;
  bottom: -300px;
  left: -300px;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 25%;
  animation-delay: -10s;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(104, 123, 77, 0.08) 0%, transparent 70%);
  z-index: 2;
}

.why-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  background: rgba(104, 123, 77, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.why-heading {
  font-family: 'IntroRust', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  margin: 1.5rem 0;
  color: var(--primary);
  text-transform: uppercase;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.why-heading .highlight {
  display: inline-block;
  position: relative;
  color: var(--primary);
}

.why-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 0.2em;
  background: rgba(104, 123, 77, 0.2);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 0.8s ease forwards 1s;
}

.why-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #555;
  margin: 2rem auto;
  max-width: 800px;
  font-weight: 300;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

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

@keyframes lineReveal {
  to {
    transform: scaleX(1);
  }
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(50px, -50px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(0, 100px) rotate(180deg) scale(1);
  }
  75% {
    transform: translate(-50px, 50px) rotate(270deg) scale(1.1);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .why-hero {
    padding: 6rem 1.5rem;
    min-height: 80vh;
  }

  .why-hero-content {
    padding: 0 1rem;
  }

  .section-tag {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .why-heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 1rem 0;
  }

  .why-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin: 1.5rem auto;
  }

  .shape {
    filter: blur(30px);
  }
}

/* Excellence Pillars Section */
.excellence-pillars {
  padding: 120px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto 0;
  position: relative;
}

.pillar-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

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

.pillar-content h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pillar-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  min-height: 80px;
}

.pillar-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  text-align: center;
  padding: 15px;
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

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

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #687b4d;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #687b4d 0%, #8fa677 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.pillar-visual {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(104, 123, 77, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 40px;
  height: 40px;
  color: #687b4d;
  transition: transform 0.3s ease;
}

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

.pillar-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature {
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(104, 123, 77, 0.1);
  border-radius: 20px;
  color: #687b4d;
  font-weight: 500;
}

/* Floating particles animation */
.pillar-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(104, 123, 77, 0.1) 0%, rgba(104, 123, 77, 0) 70%);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .excellence-pillars {
    padding: 80px 20px;
  }
  
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  
  .pillar-card {
    padding: 30px;
  }
  
  .pillar-content h3 {
    font-size: 24px;
  }
  
  .pillar-description {
    font-size: 15px;
    min-height: auto;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

/* Success Stories */
.success-stories {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  overflow: hidden;
}

.magical-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, var(--primary) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: particleFloat 20s infinite linear;
}

.gradient-sphere {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spherePulse 10s infinite ease-in-out;
}

.animated-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(104, 123, 77, 0.05) 10px,
    rgba(104, 123, 77, 0.05) 20px
  );
  animation: lineMove 15s infinite linear;
}

.success-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.story-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.story-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(104, 123, 77, 0.1);
  border: 1px solid rgba(104, 123, 77, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(104, 123, 77, 0.15);
  border-color: rgba(104, 123, 77, 0.2);
}

.story-image-wrapper {
  position: relative;
  overflow: hidden;
}

.story-image {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.story-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(104, 123, 77, 0.8) 100%);
}

.floating-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-family: 'IntroRust', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content {
  padding: 2.5rem;
  background: white;
}

.brand-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.brand-icon {
  color: var(--primary);
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin: 0 0 1rem;
  color: #687b4d !important;
}

.story-card h3 {
  font-family: 'IntroRust', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.story-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.achievement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(104, 123, 77, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(104, 123, 77, 0.1);
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.2rem;
}

.author-role {
  font-size: 0.9rem;
  color: #666;
}

.success-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.indicator {
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(104, 123, 77, 0.1);
  border: 1px solid rgba(104, 123, 77, 0.1);
  transition: all 0.3s ease;
}

.indicator:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(104, 123, 77, 0.15);
}

.indicator-number {
  display: block;
  font-family: 'IntroRust', sans-serif;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.indicator-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

@keyframes spherePulse {
  0%, 100% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

@media (max-width: 1200px) {
  .story-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .success-stories {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .floating-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1rem;
  }
  
  .success-indicators {
    grid-template-columns: 1fr;
  }
  
  .story-card h3 {
    font-size: 1.8rem;
  }
}

/* Awards Section */
.awards-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  overflow: hidden;
}

.magical-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, var(--primary) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, var(--primary) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--primary) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  animation: particleFloat 20s infinite linear;
}

.floating-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
}

.floating-rings::before,
.floating-rings::after {
  content: '';
  position: absolute;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: ringFloat 20s infinite ease-in-out;
  opacity: 0.1;
}

.floating-rings::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation-delay: -5s;
}

.floating-rings::after {
  top: 100px;
  left: 100px;
  right: 100px;
  bottom: 100px;
  animation-delay: -10s;
}

.awards-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.award-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(104, 123, 77, 0.1);
  box-shadow: 0 20px 40px rgba(104, 123, 77, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.award-card.featured {
  transform: translateY(-20px) scale(1.05);
}

.award-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(104, 123, 77, 0.15);
}

.award-card.featured:hover {
  transform: translateY(-30px) scale(1.05);
}

.award-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
              rgba(104, 123, 77, 0.1) 0%,
              transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.award-card:hover .award-glow {
  opacity: 1;
}

.award-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(104, 123, 77, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.award-card:hover .award-icon {
  transform: rotateY(180deg);
  background: var(--primary);
}

.award-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
  transition: fill 0.3s ease;
}

.award-card:hover .award-icon svg {
  fill: white;
}

.award-year {
  font-family: 'IntroRust', sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.award-card h3 {
  font-family: 'IntroRust', sans-serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.award-card p {
  color: #666;
  margin-bottom: 2rem;
}

.award-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-family: 'IntroRust', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat .label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.award-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.badge {
  padding: 0.5rem 1rem;
  background: rgba(104, 123, 77, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
}

.award-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: shine 5s infinite;
}

.awards-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(104, 123, 77, 0.1);
}

.total-awards {
  text-align: center;
}

.total-awards .number {
  display: block;
  font-family: 'IntroRust', sans-serif;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.total-awards .label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateX(10px);
  background: #5a6b43;
}

.arrow-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

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

@keyframes ringFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20%, 100% {
    transform: translateX(200%) rotate(45deg);
  }
}

@media (max-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .award-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .award-card.featured {
    grid-column: auto;
    transform: translateY(0) scale(1);
  }
  
  .award-card.featured:hover {
    transform: translateY(-15px) scale(1);
  }
  
  .awards-footer {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* Why Choose Section */
.why-choose-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  perspective: 1000px;
}

.interactive-sphere {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 800px;
}

.sphere-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.central-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary), rgba(255,255,255,0.2));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
  z-index: 10;
}

.sphere-text {
  color: white;
  font-family: "IntroRust", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.orbital-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 50%;
}

.path-1 { width: 300px; height: 300px; }
.path-2 { width: 500px; height: 500px; }
.path-3 { width: 700px; height: 700px; }
.path-4 { width: 900px; height: 900px; }

.feature-orbitals {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orbital-feature {
  position: absolute;
  transform-origin: center;
}

.of-1 { top: 15%; left: 15%; }
.of-2 { top: 15%; right: 15%; }
.of-3 { bottom: 15%; left: 15%; }
.of-4 { bottom: 15%; right: 15%; }

.feature-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.feature-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.orbital-feature:hover .feature-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.feature-content h3 {
  font-family: "IntroRust", sans-serif;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.feature-details p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.feature-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.feature-details li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.feature-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.feature-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 15px;
}

.metric-number {
  font-family: "IntroRust", sans-serif;
  font-size: 2rem;
  color: var(--primary);
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lines-svg {
  width: 100%;
  height: 100%;
}

.connection-path {
  stroke: rgba(var(--primary-rgb), 0.1);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5,5;
  animation: dash 20s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .interactive-sphere {
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .interactive-sphere {
    transform: scale(0.6);
  }
  
  .feature-content {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .interactive-sphere {
    transform: scale(0.4);
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 2rem;
  background: white;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 3rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-mark {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.author-name {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-role {
  color: #666;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, var(--primary), #8fa677);
  color: white;
  text-align: center;
}

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

.cta-heading {
  font-family: 'IntroRust', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillar-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  
  .pillar-card.featured {
    grid-column: auto;
    transform: translateY(0) scale(1);
  }
  
  .pillar-card.featured:hover {
    transform: translateY(-20px) scale(1);
  }
  
  .excellence-pillars {
    padding: 6rem 1.5rem;
  }
  
  .pillar-card {
    padding: 2.5rem 2rem;
  }

  .why-heading {
    font-size: 2.5rem;
  }

  .why-subtitle {
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 2rem;
  }
}

/* Animations */
[data-scroll="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

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

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 999;
  transition: all 0.4s ease;
  display: none;
  opacity: 0;
}

.mobile-menu.active {
  right: 0;
  display: block;
  opacity: 1;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  gap: 2rem;
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  color: var(--light);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Link Delays */
.mobile-menu .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu .nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu .nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu .nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu .nav-link:nth-child(5) { transition-delay: 0.5s; }

/* Media Queries */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  .mobile-menu .nav-link {
    font-size: 1.25rem;
    margin: 1rem 0;
  }
}

/* Navigation Styles */
.main-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}



/* Touch Interaction Styles */
.swiped-left {
  transform: translateX(-20px);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.swiped-right {
  transform: translateX(20px);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Image Loading */
img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[src] {
  opacity: 1;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  /* Card Hover States */
  .story-card:hover,
  .award-card:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Active States for Touch */
  .story-card:active,
  .award-card:active,
  .testimonial-card:active {
    transform: scale(0.98);
    transition: transform 0.2s ease;
  }

  /* Navigation */
  .mobile-menu {
    display: block;
  }

  .mobile-menu-content {
    padding: 2rem;
  }

  .mobile-menu .nav-link {
    font-size: 1.5rem;
    padding: 1rem;
    position: relative;
  }

  .mobile-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .mobile-menu .nav-link:hover::after {
    width: 100%;
  }

  /* Improved Touch Targets */
  .cta-button,
  .social-link,
  .nav-link {
    min-height: 44px;
    padding: 12px 20px;
  }

  /* Better Text Readability */
  .why-subtitle,
  .pillar-description,
  .story-description,
  .testimonial-text {
    line-height: 1.6;
    font-size: 1rem;
  }

  /* Optimized Spacing */
  .section-tag {
    margin-bottom: 1.5rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .pillar-card,
  .story-card,
  .award-card,
  .testimonial-card {
    margin-bottom: 2rem;
  }

  /* Enhanced Footer for Mobile */
  .footer-nav {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    gap: 1.5rem;
  }

  .contact-detail {
    text-align: center;
  }
}

/* Additional Small Screen Optimizations */
@media (max-width: 480px) {
  .mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
  }

  .stat-number,
  .indicator-number {
    font-size: 1.8rem;
  }

  .footer-bottom {
    padding: 1rem;
  }
} 

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
  max-width: 300px;
}

.footer-nav {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.nav-column {
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
} 