/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #FFF8F0;
  color: #3C3C3B;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #3C3C3B;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #DD723C;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: #DD723C;
  border-radius: 2px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #DD723C;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF8F0 0%, #fff0e6 100%);
  padding: 5px;
  border: 2px solid #DD723C;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #DD723C;
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: inline;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF8F0 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 50px;
  animation: fadeIn 1s ease-in;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: #DD723C;
  border-radius: 0 0 0 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  color: #DD723C;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text .tagline {
  font-size: 16px;
  color: #3C3C3B;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-text .description {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-placeholder {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #DD723C 0%, #c85e28 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(221, 114, 60, 0.3);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.social-icons-hero {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #DD723C;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.social-icon:hover {
  background: #c85e28;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(221, 114, 60, 0.3);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .image-placeholder {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text .description {
    font-size: 15px;
    max-width: 100%;
  }

  .image-placeholder {
    width: 250px;
    height: 250px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #DD723C;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background: #1e3f99;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 92, 255, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #DD723C 0%, #e8895a 100%);
}

.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(221, 114, 60, 0.4);
}

.btn-text {
  display: inline-block;
  color: #DD723C;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.btn-text:hover {
  color: #1e3f99;
  transform: translateX(5px);
}

/* Features Section */
.features {
  padding: 80px 50px;
  text-align: center;
  background: white;
}

.features h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f3ff 100%);
  padding: 40px 30px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DD723C 0%, #e8895a 100%);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(221, 114, 60, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: #DD723C;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  line-height: 1.8;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #DD723C 0%, #c85a2a 100%);
  color: white;
  padding: 100px 50px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

/* About Section */
.about-content {
  padding: 80px 50px;
  background: white;
}

.about-text h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.about-text h2:first-child {
  margin-top: 0;
}

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

/* Mission & Vision Section */
.mission-vision-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.mission-vision-card {
  background: white;
  padding: 50px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #DD723C 0%, #e8895a 100%);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(221, 114, 60, 0.15);
}

.mission-card {
  border-left: 5px solid #DD723C;
}

.vision-card {
  border-left: 5px solid #e8895a;
}

.card-icon {
  font-size: 48px;
  color: #DD723C;
  margin-bottom: 20px;
  display: inline-block;
}

.mission-vision-card h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.mission-vision-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Why Us Section */
.why-us-section {
  background: white;
  padding: 80px 50px;
}

.why-us-section h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
}

.benefits-container {
  max-width: 700px;
  margin: 0 auto;
}

.benefits-list {
  list-style: none;
  padding: 20px 0;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  font-size: 16px;
  color: #555;
}

.benefits-list i {
  position: absolute;
  left: 0;
  color: #DD723C;
  font-size: 18px;
}

/* Services Section */
.services-section {
  padding: 80px 50px;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: #DD723C;
  box-shadow: 0 15px 35px rgba(221, 114, 60, 0.15);
  transform: translateY(-8px);
}

.service-icon {
  font-size: 52px;
  color: #DD723C;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
  padding: 80px 50px;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-wrapper h2,
.contact-info h2 {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #DD723C;
  box-shadow: 0 0 0 3px rgba(221, 114, 60, 0.1);
}

.info-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 28px;
  color: #DD723C;
  margin-top: 5px;
}

.info-item h4 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

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

/* Team Section */
.team-section {
  padding: 80px 50px;
  background: #FFF8F0;
}

.team-section h2 {
  text-align: center;
  font-size: 36px;
  color: #3C3C3B;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}

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

.team-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #DD723C;
  animation: slideInUp 0.6s ease-out;
}

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

.team-image {
  margin-bottom: 20px;
}

.team-image img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #DD723C;
}

.team-image i {
  font-size: 80px;
  color: #DD723C;
  background: #FFF8F0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.team-card h3 {
  font-size: 20px;
  color: #3C3C3B;
  margin-bottom: 5px;
  font-weight: 600;
}

.team-role {
  color: #DD723C;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 50px;
  text-align: center;
  margin-top: 50px;
}

.footer p {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #DD723C;
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .features,
  .about-content,
  .services-section,
  .contact-section {
    padding: 40px 20px;
  }

  .feature-boxes,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 60px 20px;
  }

  .page-header h1 {
    font-size: 32px;
  }
}

/* Statistics Section */
.statistics {
  padding: 80px 50px;
  background: linear-gradient(135deg, #DD723C 0%, #c85e28 100%);
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  padding: 40px 20px;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

/* Services Preview Section */
.services-preview {
  padding: 80px 50px;
  background: #FFF8F0;
  text-align: center;
}

.services-preview h2 {
  font-size: 42px;
  color: #3C3C3B;
  margin-bottom: 10px;
}

.services-preview .section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

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

.service-preview-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-preview-card:hover {
  border-color: #DD723C;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(221, 114, 60, 0.2);
}

.service-preview-card .service-icon {
  font-size: 48px;
  color: #DD723C;
  margin-bottom: 20px;
}

.service-preview-card h3 {
  font-size: 20px;
  color: #3C3C3B;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-preview-card p {
  color: #666;
  line-height: 1.8;
}

.service-link {
  color: #DD723C;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #c85e28;
}

/* Process/Timeline Section */
.process {
  padding: 80px 50px;
  background: white;
  text-align: center;
}

.process h2 {
  font-size: 42px;
  color: #3C3C3B;
  margin-bottom: 10px;
}

.process .section-subtitle {
  margin-bottom: 60px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

.process-step {
  background: #FFF8F0;
  padding: 40px 30px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

.process-step:hover {
  background: #fff0e6;
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #DD723C;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 20px;
  color: #3C3C3B;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-step p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* Partner Universities Section */
.partners {
  padding: 80px 50px;
  background: #FFF8F0;
  text-align: center;
}

.partners h2 {
  font-size: 42px;
  color: #3C3C3B;
  margin-bottom: 10px;
}

.partners .section-subtitle {
  margin-bottom: 60px;
}

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

.partner-logo {
  background: white;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  animation: slideInUp 0.6s ease-out;
}

.partner-logo img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.partner-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(221, 114, 60, 0.15);
}

/* FAQ Section */
.faq {
  padding: 80px 50px;
  background: white;
  text-align: center;
}

.faq h2 {
  font-size: 42px;
  color: #3C3C3B;
  margin-bottom: 10px;
}

.faq .section-subtitle {
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  text-align: left;
}

.faq-item {
  background: #FFF8F0;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #DD723C;
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(221, 114, 60, 0.15);
  transform: translateY(-5px);
}

.faq-item h3 {
  font-size: 18px;
  color: #3C3C3B;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 50px;
  background: #FFF8F0;
  text-align: center;
}

.testimonials h2 {
  font-size: 42px;
  color: #3C3C3B;
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  margin-bottom: 60px;
}

.testimonial-featured {
  display: flex;
  justify-content: center;
}

.testimonial-card-featured {
  background: white;
  padding: 60px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #DD723C;
  max-width: 700px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.testimonial-card-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 114, 60, 0.2);
}

.testimonial-photo-featured {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #DD723C;
  flex-shrink: 0;
}

.testimonial-content {
  text-align: left;
}

.stars {
  color: #FFC107;
  font-size: 18px;
  margin-bottom: 20px;
}

.stars i {
  margin-right: 5px;
}

.testimonial-text {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
}

.testimonial-author {
  font-weight: 700;
  color: #3C3C3B;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-school {
  color: #DD723C;
  font-size: 14px;
  font-weight: 600;
}

/* Testimonial Navigation Dots */
.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #DD723C;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: #c85e28;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(221, 114, 60, 0.3);
}

.nav-arrow:active {
  transform: scale(0.95);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #DD723C;
  width: 40px;
  border-radius: 6px;
}

.dot:hover {
  background: #c85e28;
}

/* Trust Badges Section */
.trust-badges {
  padding: 80px 50px;
  background: white;
  text-align: center;
}

.trust-badges h2 {
  font-size: 42px;
  color: #3C3C3B;
  margin-bottom: 60px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.badge-item {
  padding: 40px 30px;
  background: #FFF8F0;
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

.badge-item:hover {
  background: #fff0e6;
  transform: translateY(-8px);
}

.badge-icon {
  font-size: 48px;
  color: #DD723C;
  margin-bottom: 20px;
}

.badge-item h3 {
  font-size: 20px;
  color: #3C3C3B;
  margin-bottom: 15px;
  font-weight: 600;
}

.badge-item p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}

/* CTA Section */
.cta-section {
  padding: 80px 50px;
  background: linear-gradient(135deg, #DD723C 0%, #c85e28 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-large {
  padding: 18px 50px;
  font-size: 18px;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .statistics,
  .services-preview,
  .process,
  .partners,
  .faq,
  .testimonials,
  .trust-badges,
  .team-section,
  .cta-section {
    padding: 40px 20px;
  }

  .statistics h2,
  .services-preview h2,
  .process h2,
  .partners h2,
  .faq h2,
  .testimonials h2,
  .trust-badges h2,
  .team-section h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .stats-grid,
  .services-grid,
  .process-timeline,
  .partners-grid,
  .faq-grid,
  .testimonials-grid,
  .badges-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .team-card {
    padding: 30px 20px;
  }

  .team-image i {
    font-size: 60px;
    width: 100px;
    height: 100px;
  }
}

/* ========== DYNAMIC FEATURES STYLES ========== */

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  width: 50px;
  height: 50px;
  background: #DD723C;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(221, 114, 60, 0.3);
  transition: all 0.3s ease;
  animation: slideInUp 0.5s ease-out;
}

.back-to-top:hover {
  background: #c85e28;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(221, 114, 60, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Form Validation */
input.error,
textarea.error {
  border-color: #f44336 !important;
  background-color: rgba(244, 67, 54, 0.1) !important;
}

input.error:focus,
textarea.error:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(244, 67, 54, 0.4);
}

/* Animated Counter */
.counter {
  font-size: 32px;
  font-weight: 700;
  color: #DD723C;
  transition: all 0.3s ease;
}

.counter:hover {
  transform: scale(1.1);
}

/* Typing Animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%, 100% {
    border-right-color: transparent;
  }
  50% {
    border-right-color: #DD723C;
  }
}

.typing {
  overflow: hidden;
  border-right: 3px solid #DD723C;
  white-space: nowrap;
  animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Floating Animation */
@keyframes floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

/* Scale Pop Animation */
@keyframes scalePop {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hover Effects for Service Cards and FAQ Items */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(221, 114, 60, 0.2);
}

.service-card .service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotateY(10deg);
}

.faq-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid #DD723C;
}

.faq-item:hover {
  background: linear-gradient(135deg, #fff9f5 0%, #fffbf8 100%);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(221, 114, 60, 0.1);
}

/* Contact Form Animations */
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #DD723C;
  box-shadow: 0 0 0 3px rgba(221, 114, 60, 0.1);
  transform: translateY(-2px);
}

.info-item {
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-item i {
  transition: all 0.3s ease;
  color: #DD723C;
}

.info-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Team Card Hover Effects */
.team-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(221, 114, 60, 0.2);
}

.team-image {
  transition: all 0.4s ease;
  overflow: hidden;
  border-radius: 50%;
}

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

/* Benefit List Hover Effects */
.benefits-list li {
  transition: all 0.3s ease;
  transform-origin: left center;
}

.benefits-list li:hover {
  transform: translateX(8px);
  color: #DD723C;
}

.benefits-list li i {
  transition: all 0.3s ease;
}

.benefits-list li:hover i {
  transform: scale(1.15);
}

/* Mission Vision Card Animations */
.mission-vision-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(221, 114, 60, 0.15);
}

.mission-vision-card .card-icon {
  transition: all 0.4s ease;
  transform-origin: center center;
}

.mission-vision-card:hover .card-icon {
  transform: scale(1.2) rotate(-10deg);
  color: #DD723C;
}

/* Enhanced Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation for Multiple Elements */
.service-card:nth-child(1) { --delay: 0s; }
.service-card:nth-child(2) { --delay: 0.1s; }
.service-card:nth-child(3) { --delay: 0.2s; }
.service-card:nth-child(4) { --delay: 0.3s; }
.service-card:nth-child(5) { --delay: 0.4s; }
.service-card:nth-child(6) { --delay: 0.5s; }
.service-card:nth-child(7) { --delay: 0.6s; }
.service-card:nth-child(8) { --delay: 0.7s; }
.service-card:nth-child(9) { --delay: 0.8s; }

.faq-item:nth-child(1) { --delay: 0s; }
.faq-item:nth-child(2) { --delay: 0.1s; }
.faq-item:nth-child(3) { --delay: 0.2s; }
.faq-item:nth-child(4) { --delay: 0.3s; }
.faq-item:nth-child(5) { --delay: 0.4s; }
.faq-item:nth-child(6) { --delay: 0.5s; }
.faq-item:nth-child(7) { --delay: 0.6s; }
.faq-item:nth-child(8) { --delay: 0.7s; }
.faq-item:nth-child(9) { --delay: 0.8s; }

/* Page Load Animation */
.page-header h1 {
  animation: slideInLeft 0.8s ease-out;
}

.page-header p {
  animation: slideInRight 0.8s ease-out 0.2s backwards;
}

/* Responsive Back to Top */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
}

