/* Why Choose Us Section - Reference Website Style */
.why-choose-us-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-section/abouthero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.why-choose-us-section .container {
  position: relative;
  z-index: 2;
}

.why-choose-us-section .section-title {
  color: #ffffff !important;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
}

.why-choose-us-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffcc33, #ff6b35);
  border-radius: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px #ffcc33; }
  to { box-shadow: 0 0 20px #ff6b35; }
}

.why-choose-us-section .section-subtitle {
  color: rgba(255,255,255,0.9) !important;
  font-size: 18px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
  line-height: 1.6;
}

.animated-subtitle-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  height: 30px;
  position: relative;
  overflow: hidden;
}

.animated-subtitle {
  color: rgba(255,255,255,0.9) !important;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: subtitleRotate 12s infinite;
  margin: 0;
}

.animated-subtitle:nth-child(1) { animation-delay: 0s; }
.animated-subtitle:nth-child(2) { animation-delay: 2.4s; }
.animated-subtitle:nth-child(3) { animation-delay: 4.8s; }
.animated-subtitle:nth-child(4) { animation-delay: 7.2s; }
.animated-subtitle:nth-child(5) { animation-delay: 9.6s; }

@keyframes subtitleRotate {
  0%, 16.67% {
    opacity: 0;
    transform: translateY(20px);
  }
  8.33%, 16.67% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-choose-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,51,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s ease;
  transform: scale(0);
}

.why-choose-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.why-choose-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ffcc33 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.why-choose-card:hover .why-icon-wrapper {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(255,204,51,0.4);
}

.why-icon-wrapper i {
  font-size: 28px;
  color: white;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-icon-wrapper i {
  transform: scale(1.2);
}

.why-card-number {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 36px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.why-choose-card:hover .why-card-number {
  color: rgba(255,204,51,0.3);
  transform: scale(1.1) rotate(5deg);
}

.why-card-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-card-title {
  color: #ffcc33;
  transform: translateY(-2px);
}

.why-card-description {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-card-description {
  color: rgba(255,255,255,0.95);
}

.why-feature-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc33, #ff6b35);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-feature-highlight {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .why-choose-card {
    padding: 30px 25px;
  }
}

/* Laptop/Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .why-choose-us-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 38px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .why-choose-card {
    padding: 25px 18px;
  }
  
  .why-card-number {
    font-size: 42px;
  }
  
  .why-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .why-icon-wrapper i {
    font-size: 28px;
  }
  
  .why-card-title {
    font-size: 20px;
  }
  
  .why-card-description {
    font-size: 15px;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .why-choose-us-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .why-choose-card {
    padding: 20px 15px;
  }
  
  .why-card-number {
    font-size: 36px;
  }
  
  .why-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .why-icon-wrapper i {
    font-size: 24px;
  }
  
  .why-card-title {
    font-size: 18px;
  }
  
  .why-card-description {
    font-size: 14px;
  }
  
  .why-feature-highlight {
    font-size: 12px;
    padding: 6px 15px;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .why-choose-us-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .why-choose-card {
    padding: 20px 15px;
  }
  
  .why-card-number {
    font-size: 32px;
  }
  
  .why-icon-wrapper {
    width: 55px;
    height: 55px;
  }
  
  .why-icon-wrapper i {
    font-size: 22px;
  }
  
  .why-card-title {
    font-size: 17px;
  }
  
  .why-card-description {
    font-size: 13px;
  }
  
  .why-feature-highlight {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* Mobile Landscape (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
  .why-choose-us-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .animated-subtitle {
    font-size: 16px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .why-choose-card {
    padding: 18px 12px;
  }
  
  .why-card-number {
    font-size: 28px;
  }
  
  .why-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .why-icon-wrapper i {
    font-size: 20px;
  }
  
  .why-card-title {
    font-size: 16px;
  }
  
  .why-card-description {
    font-size: 12px;
  }
  
  .why-feature-highlight {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* Mobile Portrait (320px - 479px) */
@media (max-width: 479px) {
  .why-choose-us-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .animated-subtitle {
    font-size: 14px;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .why-choose-card {
    padding: 20px 15px;
  }
  
  .why-card-number {
    font-size: 32px;
  }
  
  .why-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .why-icon-wrapper i {
    font-size: 20px;
  }
  
  .why-card-title {
    font-size: 16px;
  }
  
  .why-card-description {
    font-size: 12px;
  }
  
  .why-feature-highlight {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* About Us Page Styles */

/* Hero Section */
.about-hero {
  background: transparent;
  padding: 200px 0 150px;
  color: #333;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(244, 208, 63, 0.3); }
  to { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(244, 208, 63, 0.6); }
}

.about-hero h1 span {
  color: #f4d03f;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.about-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out;
}

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

/* Our Story Section */
.our-story {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.02)"/><circle cx="10" cy="50" r="0.5" fill="rgba(0,0,0,0.02)"/><circle cx="90" cy="50" r="0.5" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.our-story .container {
  position: relative;
  z-index: 2;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.story-text h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #f4d03f;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: #fff;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #f4d03f;
  margin-bottom: 15px;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f4d03f;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: #f4d03f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(244, 208, 63, 0.3);
}

.value-icon i {
  font-size: 32px;
  color: #fff;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.value-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

.team-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-info {
  padding: 25px 20px;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 14px;
  color: #f4d03f;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #f4d03f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
  color: #f39c12;
  text-decoration: none;
}

@media (max-width: 992px) {
  .story-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .stats-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 150px 0 100px;
  }
  
  .about-hero h1 {
    font-size: 32px;
  }
  
  .story-text h2 {
    font-size: 28px;
  }
  
  .stats-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
}
