* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #fff9f0 0%, #ffffff 50%, #fafef5 100%);
  color: #2c2c2c;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
  margin-bottom: 24px;
}

/* Updated color palette: Saffron enhanced, Green muted & earthy */
:root {
  --saffron: #FF8C42;
  --saffron-dark: #E56700;
  --saffron-light: #FFB26B;
  --white: #FFFFFF;
  --green: #3F7E3F;
  --green-dark: #2C5E2C;
  --green-light: #7EA37E;
  --mint-bg: #F5FBF0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--saffron), var(--green));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--saffron-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Tricolor Header Bar - Now at bottom of header with saffron emphasis */
.tricolor-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 40%, var(--white) 40%, var(--white) 60%, var(--green) 60%, var(--green) 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

/* header & nav - Curved bottom full width with saffron */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--saffron);
  border-radius: 0 0 50px 50px;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.15);
}

/* Saffron glow effect on header */
.navbar::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), var(--saffron-light), var(--saffron), transparent);
  border-radius: 0 0 50px 50px;
}

@media (max-width: 800px) {
  .navbar {
    border-radius: 0 0 30px 30px;
    padding: 12px 20px;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.02);
}
.logo-text span {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  display: block;
  color: #b45f1a;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--saffron-dark), var(--green));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 680px) {
  .logo img { height: 40px; }
  .logo-text span { font-size: 0.65rem; }
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, #3a4a38, #2C5E2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s ease;
  width: 0;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 24px);
}
.nav-links a:hover, .nav-links a.active {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
}
.mobile-nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--saffron-dark);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.mobile-nav-toggle:hover {
  background: rgba(255, 140, 66, 0.12);
  transform: scale(1.03);
}
.nav-links.open {
  display: flex;
}
.btn-outline {
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--saffron);
  padding: 8px 20px;
  border-radius: 40px;
  background: transparent;
  font-weight: 600;
  color: var(--saffron-dark);
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,140,66,0.3);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 4px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  z-index: 1002;
  transition: width 0.1s ease;
  border-radius: 3px;
}

/* Page Sections */
.page-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.page-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  background-image: 
    linear-gradient(105deg, rgba(255,140,66,0.6), rgba(63,126,63,0.5)),
    url('../images/hero_background.png');

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  /* Ensures proper cropping inside rounded corners */
  border-radius: 48px;
  overflow: hidden;

  /* Optional: fix height consistency */
  min-height: 400px;

  margin: 32px 0 56px 0;
  padding: 80px 56px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;

  position: relative;
  box-shadow: 0 25px 45px -12px rgba(0,0,0,0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
  margin-bottom: 24px;
}
.hero-content p {
  font-size: 1.2rem;
  color: #fff5e8;
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 24px;
  border-radius: 60px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: white;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat {
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 10px 24px;
  border-radius: 40px;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 0.95rem;
}
.stat:hover {
  transform: translateY(-4px);
  background: var(--saffron);
}
.hero-image i {
  font-size: 8rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
  color: #FFD48A;
  animation: floatIcon 5s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
  border-radius: 20px;
  animation: gentleFloat 6s ease-in-out infinite;
}
.hero-image img:hover {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 15px 40px rgba(255,140,66,0.4)) brightness(1.1);
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--saffron-dark);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--green-light));
  margin: 16px auto 0;
  border-radius: 4px;
}
.section-sub {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px auto;
  color: #5b6e5b;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* About Core Layout */
.about-core {
  background: #ffffff;
  border-radius: 48px;
  margin: 40px 0 60px;
  padding: 56px 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,140,66,0.25);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.about-text {
  background: linear-gradient(145deg, #fffaf2, #f9fef5);
  border-radius: 36px;
  padding: 32px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.about-text p {
  margin-bottom: 24px;
  line-height: 1.7;
  color: #2f3e2f;
  font-size: 1rem;
}
.mission-vision {
  background: linear-gradient(145deg, #fffaf2, #f9fef5);
  border-radius: 36px;
  padding: 32px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.mission-vision h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin: 24px 0 12px 0;
  color: var(--saffron-dark);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mission-vision h3 i {
  font-size: 1.8rem;
  color: var(--green);
}
.aim-block {
  margin-top: 40px;
  background: #fff8ef;
  padding: 28px 32px;
  border-radius: 32px;
  border-left: 6px solid var(--saffron);
}
.aim-block h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--green-dark);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-core { padding: 32px 24px; }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}
.card {
  background: #ffffff;
  border-radius: 32px;
  padding: 36px 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(255,140,66,0.25);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transition: left 0.4s ease;
}
.card:hover::before {
  left: 0;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 45px rgba(255,140,66,0.15);
  border-color: var(--saffron-light);
}
.card-icon {
  font-size: 3rem;
  color: var(--saffron);
  margin-bottom: 24px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--green-dark);
}
.card p {
  color: #5b6e5b;
  line-height: 1.6;
}
.coming-badge {
  display: inline-block;
  background: #fff0e0;
  color: var(--saffron-dark);
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  margin-top: 12px;
}

.consultancy-row {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--green-dark) 100%);
  border-radius: 48px;
  padding: 56px 48px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: center;
  margin: 70px 0;
  position: relative;
  overflow: hidden;
}
.consultancy-row > div:first-child {
  flex: 2;
}
.consultancy-row h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.consultancy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.consultancy-list span {
  background: rgba(255,255,255,0.2);
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  backdrop-filter: blur(4px);
}
.consultancy-list span:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.partnership-card {
  background: linear-gradient(135deg, #fff9ef 0%, #f2f9ed 100%);
  border-radius: 48px;
  padding: 56px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border: 1px solid rgba(255,140,66,0.3);
  margin: 70px 0;
}
.partner-badge {
  display: inline-block;
  background: rgba(255,140,66,0.15);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--saffron-dark);
}
.partner-right {
  text-align: center;
  background: white;
  padding: 32px;
  border-radius: 36px;
  min-width: 280px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-top: 3px solid var(--saffron);
  border-bottom: 3px solid var(--green);
}

.testimonial-section {
  background: #ffffff;
  border-radius: 48px;
  padding: 56px 48px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  margin: 70px 0;
  text-align: center;
  border: 1px solid rgba(255,140,66,0.2);
}
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 48px 40px;
  text-align: center;
  background: #fffef8;
  border-radius: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.testimonial-card i.fa-quote-left {
  font-size: 2.8rem;
  color: var(--saffron);
  opacity: 0.5;
  margin-bottom: 24px;
  display: inline-block;
}
.testimonial-card p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4b6a4b;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-card h4 {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-nav {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.testimonial-nav button {
  background: var(--saffron);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
}
.testimonial-nav button:hover {
  background: var(--green);
  transform: scale(1.05);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--saffron);
  width: 28px;
  border-radius: 10px;
}

.captcha-container {
  background: linear-gradient(115deg, #fff9ef, #f2f9ed);
  border-radius: 60px;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(255,140,66,0.3);
}
.captcha-question {
  font-weight: 800;
  background: var(--saffron);
  color: white;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 1.1rem;
}
.captcha-input {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  border-radius: 60px;
  border: 2px solid #ffdbb5;
  font-size: 1rem;
}
.btn-primary {
  font-family: 'Lato', sans-serif;
  background: var(--saffron);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(63,126,63,0.3);
}
.btn-secondary {
  font-family: 'Lato', sans-serif;
  background: transparent;
  border: 1.5px solid var(--saffron);
  color: var(--saffron-dark);
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--saffron);
  color: white;
}

/* ========== FOOTER STYLES - PROPERLY ALIGNED ========== */
footer {
  background: linear-gradient(135deg, #1a3a1a 0%, #0f2a0f 100%);
  color: #e8f0e8;
  padding: 45px 0 25px;
  margin-top: 60px;
  border-radius: 50px 50px 0 0;
  position: relative;
}

/* Saffron top border on footer */
footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light), var(--white), var(--green-light), var(--green));
  border-radius: 50px 50px 0 0;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer About Section */
.footer-about h4,
.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--saffron-light);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-about h4::after,
.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.footer-about p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.85;
}

.footer-description {
  font-family: 'Roboto', sans-serif;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #c8dcc8;
  border-left: 3px solid var(--saffron);
  padding-left: 15px;
}

/* Footer Links - Unordered List Style */
.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links li i {
  font-size: 0.7rem;
  margin-right: 8px;
  color: var(--saffron);
}

.footer-contact li i {
  width: 22px;
  margin-right: 10px;
  color: var(--saffron);
  font-size: 0.9rem;
}

.footer-links a,
.footer-contact a {
  color: #ffc285;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  transform: translateX(5px);
  color: var(--saffron) !important;
}

/* Copyright Section */
.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.copyright i {
  color: var(--saffron);
  animation: pulse 1.5s infinite;
  margin: 0 2px;
}

.design-credit {
  font-family: 'Roboto', sans-serif;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 30px 0 20px;
    border-radius: 30px 30px 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-about h4,
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .footer-about p,
  .footer-links li,
  .footer-contact li {
    font-size: 0.8rem;
  }
  
  .copyright {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.toast-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green-dark);
  color: white;
  padding: 14px 28px;
  border-radius: 48px;
  font-weight: 600;
  z-index: 1000;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 800px) {
  .hero { padding: 48px 28px; text-align: center; }
  .hero-content h2 { font-size: 2.2rem; }
  .navbar { 
    flex-direction: column;
    align-items: stretch;
    border-radius: 0 0 30px 30px;
    padding: 12px 20px;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    align-self: flex-end;
  }
  .container { padding: 0 20px; }
  .section-title { font-size: 2rem; }
  .testimonial-card p { font-size: 1rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-top: 16px;
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    padding: 16px 18px;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links a {
    padding: 12px 14px;
    font-size: 1rem;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .nav-links a:last-child {
    margin-bottom: 0;
  }
  .nav-links a.btn-outline {
    justify-content: center;
  }

  .page-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .partnership-card {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 20px;
  }

  .partner-right {
    width: 100%;
    min-width: 0;
    padding: 24px;
  }

  #contact > div {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  #contact > div > div,
  #contact > div > div > form,
  #contact > div > div > div,
  #contact form {
    width: 100%;
    min-width: 0;
  }

  #dynamicContactForm input,
  #dynamicContactForm textarea,
  .captcha-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .captcha-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .captcha-question {
    flex: 1 1 100%;
    margin-bottom: 0;
  }

  .captcha-input {
    flex: 1 1 200px;
    min-width: 0;
  }

  .captcha-refresh {
    flex: 0 0 auto;
  }
}

/* ========== ADDITIONAL ANIMATIONS ========== */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide In From Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In From Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale Up Animation */
@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotate In Animation */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Glow Animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 140, 66, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 140, 66, 0.3);
  }
}

/* Float Animation for Icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Wiggle Animation */
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

/* Apply Animations to Elements */
.card {
  animation: fadeIn 0.6s ease-out forwards;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.card:hover .card-icon {
  animation: wiggle 0.5s ease-in-out;
}

.section-title {
  animation: slideInLeft 0.8s ease-out forwards;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out forwards;
}

.hero-image {
  animation: slideInRight 0.8s ease-out forwards;
}

.stat {
  animation: scaleUp 0.5s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.consultancy-list span {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.05s);
}

.partner-right {
  animation: rotateIn 0.6s ease-out forwards;
}

.testimonial-card {
  animation: scaleUp 0.5s ease-out forwards;
}

.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
  animation: pulse 0.5s ease-in-out;
}

.btn-primary::before, .btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

/* Staggered Animation for Cards */
.grid-3 .card:nth-child(1) { animation-delay: 0.1s; }
.grid-3 .card:nth-child(2) { animation-delay: 0.2s; }
.grid-3 .card:nth-child(3) { animation-delay: 0.3s; }

/* Icon Animations */
.card-icon i, .consultancy-row i, .partner-right i {
  transition: all 0.3s ease;
}

.card:hover .card-icon i {
  animation: float 0.6s ease-in-out;
  color: var(--saffron-dark);
}

.consultancy-row:hover i {
  animation: bounce 0.8s ease-in-out;
}

/* Form Input Animations */
input, textarea {
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.2);
  border-color: var(--saffron) !important;
  outline: none;
}

/* ========== GO TO TOP BUTTON ========== */
.gotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.gotop.show {
  opacity: 1;
  visibility: visible;
}

.gotop:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, var(--saffron-dark), var(--green-dark));
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.gotop:active {
  transform: translateY(0) scale(0.95);
}

/* Ripple Effect on GoTop Button */
.gotop::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.gotop:active::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}

/* Loading Animation for Page */
@keyframes pageLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  animation: pageLoad 0.8s ease-out;
}

/* Hover Glow Effect for Cards */
.card:hover {
  animation: glow 0.5s ease-in-out;
}

/* Smooth Scroll Indicator Animation */
.scroll-progress {
  transition: width 0.2s ease-out;
}

/* Nav Link Hover Animation Enhancement */
.nav-links a {
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  transition: left 0.3s ease;
}

.nav-links a:hover::before {
  left: 0;
}

/* Section Title Underline Animation */
.section-title::after {
  animation: slideInLeft 0.6s ease-out;
  transform-origin: left;
}

/* Testimonial Card Hover Animation */
.testimonial-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Captcha Refresh Button Animation */
.captcha-refresh:hover {
  animation: rotateIn 0.3s ease-out;
}

/* Footer Link Hover Animation */
footer a {
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  transform: translateX(5px);
  color: var(--saffron-light) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tricolor-bar {
    display: none !important;
  }

  .logo {
    display: none !important;
  }

  .navbar {
    border-bottom: none;
    box-shadow: none;
    padding-top: 0;
  }

  .gotop {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}