/* ===================================
    Home Page Styles
   =================================== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0A0F3C 0%, #1a2570 50%, #0A0F3C 100%);
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  padding: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: shimmer 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 160, 65, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: shimmer 6s ease-in-out infinite reverse;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center !important;
  color: var(--white);
  padding: var(--spacing-lg);
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #E8C46A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 5px;
}

.hero-subtitle {
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.btn-hero {
  background: var(--gold-gradient);
  color: var(--white);
  padding: 18px 52px;
  font-size: 19px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-normal) var(--easing);
  box-shadow: 0 8px 24px rgba(200, 160, 65, 0.4);
  animation: fadeInUp 1.2s ease-out;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 160, 65, 0.5);
  color: var(--white);
}

@keyframes shimmer {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
    opacity: 0.8;
  }
}

/* About and Foundation Section */
.about-foundation-section {
  background-color: var(--white);
  padding: 3rem 0 !important;
  position: relative;
  overflow: hidden;
}

.about-foundation-section .sticky-image {
  position: sticky;
  top: 100px;
  transition: transform var(--transition-slow) var(--easing);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-foundation-section .sticky-image:hover {
  transform: scale(1.02);
}

.home-vertical-timeline {
  position: relative;
  padding-right: 25px;
  margin-top: 50px;
}

[dir="ltr"] .home-vertical-timeline {
  padding-right: 0;
  padding-left: 25px;
}

.home-timeline-section:last-child {
  margin-bottom: 0;
}

.home-timeline-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.home-timeline-line-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
  position: absolute;
  right: -35px;
  top: 28px;
  box-shadow: 0 3px 10px rgba(200, 160, 65, 0.5);
  z-index: 2;
}

[dir="ltr"] .home-timeline-line-dot {
  right: auto;
  left: -35px;
}

.home-timeline-header::after {
  content: '';
  position: absolute;
  top: 120%;
  right: -25px;
  width: 120px;
  height: 4px;
  background: var(--gold-gradient);
  transform: translateY(-50%);
  z-index: 1;

}

[dir="ltr"] .home-timeline-header::after {
  right: auto;
  left: -25px;
}

.home-timeline-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin: 0;
  position: relative;
  padding-bottom: 0;
}

.home-timeline-text {
  padding-right: 0;
}

.home-timeline-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.home-timeline-connector {
  height: 80px;
  position: relative;
}

.home-timeline-connector::before {
  content: '';
  position: absolute;
  right: -27px;
  top: -180px;
  width: 4px;
  height: 720%;
  background: var(--gold-start);
  z-index: 1;
}

[dir="ltr"] .home-timeline-connector::before {
  right: auto;
  left: -27px;
  height: 830%;
}

/* Responsive Timeline */
@media (max-width: 991px) {
  .about-foundation-section .sticky-image {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .home-timeline-connector {
    height: 25px;
  }
}

@media (max-width: 767px) {
  .home-vertical-timeline {
    padding-right: 15px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 15px;
  }

  .home-timeline-line-dot {
    width: 12px;
    height: 12px;
    top: 24px;
    right: -20px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -23px;
  }

  .home-timeline-header::after {
    right: -15px;
    width: 90px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -15px;
  }

  .home-timeline-title {
    font-size: 1.3rem;
  }

  .home-timeline-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .home-timeline-connector {
    height: 20px;
  }

  .home-timeline-connector::before {
    right: -15px;
    width: 5px;
    height: 2300%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -15px;
  }

  .home-timeline-section {
    margin-bottom: 1rem;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

[dir="ltr"] .section-title::after {
  right: auto;
  left: 0;
}

/* When section-title is centered */
.text-center .section-title {
  display: inline-block;
}

.text-center .section-title::after {
  right: 50%;
  transform: translateX(50%);
}

[dir="ltr"] .text-center .section-title::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--primary-text);
  margin-bottom: var(--spacing-md);
}

.btn-outline-primary {
  border: 2px solid var(--gold-start);
  color: var(--gold-start);
  background: transparent;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal) var(--easing);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary:hover {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Vision Section */
.vision-section {
  .home-timeline-line-dot {
    width: 22px;
    height: 22px;
    right: -38px;
    top: 32px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -38px;
  }

  .home-timeline-header::after {
    right: -28px;
    width: 130px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -28px;
  }

  .home-timeline-title {
    font-size: 1.85rem;
  }

  .home-timeline-text p {
    font-size: 1.1rem;
    line-height: 1.85;
  }

  .home-timeline-connector {
    height: 90px;
  }

  .home-timeline-connector::before {
    right: -30px;
    height: 750%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -30px;
    height: 850%;
  }
}

/* Standard Desktop (1440px - 1919px) */
@media (max-width: 1919px) and (min-width: 1440px) {
  .home-vertical-timeline {
    padding-right: 26px;
    margin-top: 50px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 26px;
  }

  .home-timeline-line-dot {
    width: 21px;
    height: 21px;
    right: -36px;
    top: 30px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -36px;
  }

  .home-timeline-header::after {
    right: -26px;
    width: 125px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -26px;
  }

  .home-timeline-title {
    font-size: 1.8rem;
  }

  .home-timeline-text p {
    font-size: 1.08rem;
    line-height: 1.82;
  }

  .home-timeline-connector {
    height: 85px;
  }

  .home-timeline-connector::before {
    right: -28px;
    height: 730%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -28px;
    height: 830%;
  }
}

/* Laptop & Small Desktop (1367px - 1439px) */
@media (max-width: 1439px) and (min-width: 1367px) {
  .home-vertical-timeline {
    padding-right: 25px;
    margin-top: 50px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 25px;
  }

  .home-timeline-line-dot {
    width: 20px;
    height: 20px;
    right: -35px;
    top: 28px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -35px;
  }

  .home-timeline-header::after {
    right: -25px;
    width: 120px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -25px;
  }

  .home-timeline-connector {
    height: 80px;
  }

  .home-timeline-connector::before {
    right: -27px;
    height: 720%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -27px;
    height: 830%;
  }
}

/* iPad Pro 12.9" & Large Tablets (1024px - 1366px) */
@media (max-width: 1366px) and (min-width: 1024px) {
  .home-vertical-timeline {
    padding-right: 20px;
    margin-top: 40px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 20px;
  }

  .home-timeline-line-dot {
    width: 18px;
    height: 18px;
    right: -32px;
    top: 30px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -32px;
  }

  .home-timeline-header::after {
    right: -22px;
    width: 100px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -22px;
  }

  .home-timeline-connector::before {
    right: -24px;
    height: 900%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -24px;
    height: 780%;
  }

  .home-timeline-connector {
    height: 70px;
  }
}

/* iPad Pro 11" & Medium Tablets (834px - 1023px) */
@media (max-width: 1023px) and (min-width: 834px) {
  .about-foundation-section .sticky-image {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .home-vertical-timeline {
    padding-right: 18px;
    margin-top: 32px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 18px;
  }

  .home-timeline-line-dot {
    width: 17px;
    height: 17px;
    right: -28px;
    top: 26px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -29px;
  }

  .home-timeline-header::after {
    right: -21px;
    width: 100px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -21px;
  }

  .home-timeline-title {
    font-size: 1.55rem;
  }

  .home-timeline-text p {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .home-timeline-connector {
    height: 55px;
  }

  .home-timeline-connector::before {
    right: -21px;
    height: 970%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -21px;
    height: 720%;
  }
}

/* Standard iPad & Tablets (768px - 833px) */
@media (max-width: 833px) and (min-width: 768px) {
  .about-foundation-section .sticky-image {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .home-vertical-timeline {
    padding-right: 18px;
    margin-top: 30px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 18px;
  }

  .home-timeline-line-dot {
    width: 16px;
    height: 16px;
    right: -26px;
    top: 25px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -28px;
  }

  .home-timeline-header::after {
    right: -20px;
    width: 100px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -20px;
  }

  .home-timeline-title {
    font-size: 1.5rem;
  }

  .home-timeline-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .home-timeline-connector {
    height: 50px;
  }

  .home-timeline-connector::before {
    right: -20px;
    height: 1000%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -20px;
    height: 700%;
  }
}

.section-title {
  .home-vertical-timeline {
    padding-right: 16px;
    margin-top: 25px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 16px;
  }

  .home-timeline-line-dot {
    width: 15px;
    height: 15px;
    right: -25px;
    top: 24px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -26px;
  }

  .home-timeline-header::after {
    right: -19px;
    width: 95px;
    height: 3px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -19px;
  }

  .home-timeline-title {
    font-size: 1.42rem;
  }

  .home-timeline-text p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .home-timeline-connector {
    height: 42px;
  }

  .home-timeline-connector::before {
    right: -19px;
    width: 3px;
    height: 1250%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -19px;
    height: 680%;
  }

  .home-timeline-section {
    margin-bottom: 1.3rem;
  }
}

/* Large Phones Landscape & Small Tablets (640px - 699px) */
@media (max-width: 699px) and (min-width: 640px) {
  .home-vertical-timeline {
    padding-right: 15px;
    margin-top: 22px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 15px;
  }

  .home-timeline-line-dot {
    width: 14px;
    height: 14px;
    right: -24px;
    top: 24px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -25px;
  }

  .home-timeline-header::after {
    right: -18px;
    width: 90px;
    height: 3px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -18px;
  }

  .home-timeline-title {
    font-size: 1.38rem;
  }

  .home-timeline-text p {
    font-size: 0.99rem;
    line-height: 1.66;
  }

  .home-timeline-connector {
    height: 38px;
  }

  .home-timeline-connector::before {
    right: -18px;
    width: 3px;
    height: 1420%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -18px;
    height: 670%;
  }

  .home-timeline-section {
    margin-bottom: 1.25rem;
  }
}

/* Large Phones Portrait (576px - 639px) */
@media (max-width: 639px) and (min-width: 576px) {
  .home-vertical-timeline {
    padding-right: 15px;
    margin-top: 20px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 15px;
  }

  .home-timeline-line-dot {
    width: 14px;
    height: 14px;
    right: -23px;
    top: 23px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -24px;
  }

  .home-timeline-header::after {
    right: -17px;
    width: 90px;
    height: 3px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -17px;
  }

  .home-timeline-title {
    font-size: 1.35rem;
  }

  .home-timeline-text p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .home-timeline-connector {
    height: 35px;
  }

  .home-timeline-connector::before {
    right: -17px;
    width: 3px;
    height: 1620%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -17px;
    height: 650%;
  }

  .home-timeline-section {
    margin-bottom: 1.2rem;
  }
}

/* Standard Phones (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
  .home-vertical-timeline {
    padding-right: 13px;
    margin-top: 18px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 13px;
  }

  .home-timeline-line-dot {
    width: 13px;
    height: 13px;
    right: -21px;
    top: 22px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -22px;
  }

  .home-timeline-header::after {
    right: -16px;
    width: 82px;
    height: 3px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -16px;
  }

  .home-timeline-title {
    font-size: 1.25rem;
  }

  .home-timeline-text p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .home-timeline-connector {
    height: 28px;
  }

  .home-timeline-connector::before {
    right: -16px;
    width: 3px;
    height: 1920%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -16px;
    height: 630%;
  }

  .home-timeline-section {
    margin-bottom: 1.1rem;
  }
}

/* Medium Phones (414px - 479px) */
@media (max-width: 479px) and (min-width: 414px) {
  .home-vertical-timeline {
    padding-right: 12px;
    margin-top: 16px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 12px;
  }

  .home-timeline-line-dot {
    width: 12px;
    height: 12px;
    right: -20px;
    top: 21px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -21px;
  }

  .home-timeline-header::after {
    right: -15px;
    width: 80px;
    height: 3px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -15px;
  }

  .home-timeline-title {
    font-size: 1.22rem;
  }

  .home-timeline-text p {
    font-size: 0.93rem;
    line-height: 1.61;
  }

  .home-timeline-connector {
    height: 26px;
  }

  .home-timeline-connector::before {
    right: -15px;
    width: 3px;
    height: 2310%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -15px;
    height: 610%;
  }

  .home-timeline-section {
    margin-bottom: 1.05rem;
  }
}

/* Standard Small Phones (375px - 413px) */
@media (max-width: 413px) and (min-width: 375px) {
  .home-vertical-timeline {
    padding-right: 11px;
    margin-top: 15px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 11px;
  }

  .home-timeline-line-dot {
    width: 11px;
    height: 11px;
    right: -19px;
    top: 21px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -20px;
  }

  .home-timeline-header::after {
    right: -14px;
    width: 80px;
    height: 2.5px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -14px;
  }

  .home-timeline-title {
    font-size: 1.18rem;
  }

  .home-timeline-text p {
    font-size: 0.91rem;
    line-height: 1.6;
  }

  .home-timeline-connector {
    height: 24px;
  }

  .home-timeline-connector::before {
    right: -14px;
    width: 2.5px;
    height: 2650%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -14px;
    height: 590%;
  }

  .home-timeline-section {
    margin-bottom: 1rem;
  }
}

/* Small Phones (360px - 374px) */
@media (max-width: 374px) and (min-width: 360px) {
  .home-vertical-timeline {
    padding-right: 10px;
    margin-top: 14px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 10px;
  }

  .home-timeline-line-dot {
    width: 10px;
    height: 10px;
    right: -17px;
    top: 20px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -19px;
  }

  .home-timeline-header::after {
    right: -13px;
    width: 75px;
    height: 2.5px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -13px;
  }

  .home-timeline-title {
    font-size: 1.15rem;
  }

  .home-timeline-text p {
    font-size: 0.89rem;
    line-height: 1.58;
  }

  .home-timeline-connector {
    height: 22px;
  }

  .home-timeline-connector::before {
    right: -13px;
    width: 2.5px;
    height: 2810%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -13px;
    height: 580%;
  }

  .home-timeline-section {
    margin-bottom: 0.95rem;
  }
}

/* Extra Small Phones (320px - 359px) */
@media (max-width: 359px) and (min-width: 320px) {
  .home-vertical-timeline {
    padding-right: 9px;
    margin-top: 12px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 9px;
  }

  .home-timeline-line-dot {
    width: 9px;
    height: 9px;
    right: -15px;
    top: 21px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -18px;
  }

  .home-timeline-header::after {
    right: -12px;
    width: 60px;
    height: 2.5px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -12px;
  }

  .home-timeline-title {
    font-size: 1.12rem;
  }

  .home-timeline-text p {
    font-size: 0.87rem;
    line-height: 1.56;
  }

  .home-timeline-connector {
    height: 20px;
  }

  .home-timeline-connector::before {
    right: -12px;
    width: 2.5px;
    height: 2990%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -12px;
    height: 570%;
  }

  .home-timeline-section {
    margin-bottom: 0.9rem;
  }
}

/* Ultra Small Phones (280px - 319px) */
@media (max-width: 319px) and (min-width: 279px) {
  .home-vertical-timeline {
    padding-right: 8px;
    margin-top: 10px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 8px;
  }

  .home-timeline-line-dot {
    width: 8px;
    height: 8px;
    right: -14px;
    top: 20px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -17px;
  }

  .home-timeline-header::after {
    right: -11px;
    width: 65px;
    height: 2px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -11px;
  }

  .home-timeline-title {
    font-size: 1.08rem;
  }

  .home-timeline-text p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .home-timeline-connector {
    height: 18px;
  }

  .home-timeline-connector::before {
    margin-top: -40px;
    right: -11px;
    width: 2px;
    height: 3680%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -11px;
    height: 550%;
  }

  .home-timeline-section {
    margin-bottom: 0.85rem;
  }
}

/* Minimum Supported (240px - 279px) */
@media (max-width: 279px) {
  .home-vertical-timeline {
    padding-right: 7px;
    margin-top: 8px;
  }

  [dir="ltr"] .home-vertical-timeline {
    padding-right: 0;
    padding-left: 7px;
  }

  .home-timeline-line-dot {
    width: 7px;
    height: 7px;
    right: -12px;
    top: 20px;
  }

  [dir="ltr"] .home-timeline-line-dot {
    right: auto;
    left: -16px;
  }

  .home-timeline-header::after {
    right: -10px;
    width: 70px;
    height: 2px;
  }

  [dir="ltr"] .home-timeline-header::after {
    right: auto;
    left: -10px;
  }

  .home-timeline-title {
    font-size: 1.05rem;
  }

  .home-timeline-text p {
    font-size: 0.83rem;
    line-height: 1.54;
  }

  .home-timeline-connector {
    height: 16px;
  }

  .home-timeline-connector::before {
    right: -10px;
    width: 2px;
    height: 3990%;
  }

  [dir="ltr"] .home-timeline-connector::before {
    right: auto;
    left: -10px;
    height: 530%;
  }

  .home-timeline-section {
    margin-bottom: 0.8rem;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

[dir="ltr"] .section-title::after {
  right: auto;
  left: 0;
}

/* When section-title is centered */
.text-center .section-title {
  display: inline-block;
}

.text-center .section-title::after {
  right: 50%;
  transform: translateX(50%);
}

[dir="ltr"] .text-center .section-title::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--primary-text);
  margin-bottom: var(--spacing-md);
}

/* ===================================
   Services Section - Modern Cards
   =================================== */

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-light));
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(232, 196, 106, 0.25);
  border-color: rgba(232, 196, 106, 0.3);
}

.service-icon {
  width: 85px;
  height: 85px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(232, 196, 106, 0.15), inset 0 0 0 1px rgba(232, 196, 106, 0.2);
  transition: all 0.4s ease;
}

.service-icon i {
  font-size: 40px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(232, 196, 106, 0.3));
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(232, 196, 106, 0.3);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================
   Service Links Cards - Premium Style
   =================================== */

.service-link-card {
  display: block;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy-blue), #4a5bb5);
  z-index: 2;
  transition: all 0.4s ease;
}

.service-link-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(26, 37, 112, 0.2);
  border-color: rgba(26, 37, 112, 0.3);
}

.service-link-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  background: linear-gradient(135deg, #f0f2ff 0%, #fff 100%);
  box-shadow: 0 10px 25px rgba(26, 37, 112, 0.1), inset 0 0 0 1px rgba(26, 37, 112, 0.15);
  transition: all 0.4s ease;
}

.service-link-icon i {
  font-size: 44px;
  background: linear-gradient(135deg, var(--navy-blue), #4a5bb5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(26, 37, 112, 0.3));
}

.service-link-card:hover .service-link-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(26, 37, 112, 0.25);
}

.service-link-content {
  flex: 1;
}

.service-link-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-link-card:hover .service-link-title {
  color: var(--gold-start);
}

.service-link-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-start);
  transition: all 0.3s ease;
}

.service-link-card:hover .service-link-more {
  gap: 1rem;
  color: var(--navy-blue);
}

.service-link-more i {
  transition: transform 0.3s ease;
}

.service-link-card:hover .service-link-more i {
  transform: translateX(-5px);
}

/* ===================================
   Team Cards - Modern Style
   =================================== */

.team-card-home {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-card-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-light));
  z-index: 2;
  transition: all 0.4s ease;
}

.team-card-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(232, 196, 106, 0.25);
  border-color: rgba(232, 196, 106, 0.3);
}

.team-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 130%;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card-home:hover .team-image-placeholder img {
  transform: scale(1.08);
}

.team-image-placeholder i {
  font-size: 80px;
  color: #ccc;
}

.team-card-body {
  padding: 1.8rem 1.5rem;
  text-align: center;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.team-position {
  font-size: 0.95rem;
  color: #777;
  font-weight: 500;
  display: block;
}

/* ===================================
   Advantage Cards - Clean Modern Style
   =================================== */

.advantage-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy-blue), #4a5bb5);
  z-index: 2;
  transition: all 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 37, 112, 0.2);
  border-color: rgba(26, 37, 112, 0.3);
}

.advantage-icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #f0f2ff 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(26, 37, 112, 0.1), inset 0 0 0 1px rgba(26, 37, 112, 0.15);
  transition: all 0.4s ease;
}

.advantage-icon i {
  font-size: 36px;
  background: linear-gradient(135deg, var(--navy-blue), #4a5bb5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(26, 37, 112, 0.3));
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(26, 37, 112, 0.25);
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================
   Why Cards - Gold Theme
   =================================== */

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-light));
  z-index: 2;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(232, 196, 106, 0.25);
  border-color: rgba(232, 196, 106, 0.3);
}

.why-icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(232, 196, 106, 0.15), inset 0 0 0 1px rgba(232, 196, 106, 0.2);
  transition: all 0.4s ease;
}

.why-icon i {
  font-size: 36px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(232, 196, 106, 0.3));
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(232, 196, 106, 0.3);
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.why-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================
   Packages CTA Card
   =================================== */

.packages-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  border: 2px solid rgba(232, 196, 106, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.packages-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-light));
  z-index: 2;
}

.packages-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(232, 196, 106, 0.2);
  border-color: rgba(232, 196, 106, 0.4);
}

.packages-cta-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  box-shadow: 0 10px 25px rgba(232, 196, 106, 0.15), inset 0 0 0 1px rgba(232, 196, 106, 0.2);
  transition: all 0.4s ease;
}

.packages-cta-icon i {
  font-size: 44px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(232, 196, 106, 0.3));
}

.packages-cta-card:hover .packages-cta-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 35px rgba(232, 196, 106, 0.3);
}

.packages-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.packages-cta-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.packages-cta-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.packages-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 196, 106, 0.4);
}

/* ===================================
   Blog Cards - Modern Style
   =================================== */

.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-light));
  z-index: 2;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(232, 196, 106, 0.25);
  border-color: rgba(232, 196, 106, 0.3);
}

.blog-card-image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 2rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--navy-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--gold-start);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-start);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  gap: 0.8rem;
  color: var(--navy-blue);
}

.blog-card-link i {
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(-3px);
}

/* ===================================
   CTA Card - Contact Section
   =================================== */

.cta-card {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #1a2570 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 15, 60, 0.3);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 196, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: shimmer 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.cta-icon i {
  font-size: 44px;
  color: var(--gold-light);
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.15);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(200, 160, 65, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(200, 160, 65, 0.5);
  color: var(--white);
}

/* ===================================
   Card Animations
   =================================== */

.service-card,
.service-link-card,
.team-card-home,
.advantage-card,
.why-card,
.blog-card {
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
}

.row.g-4 .col-md-6:nth-child(1) .service-card,
.row.g-4 .col-md-6:nth-child(1) .advantage-card,
.row.g-4 .col-md-6:nth-child(1) .why-card,
.row.g-4 .col-md-6:nth-child(1) .team-card-home {
  animation-delay: 0.1s;
}

.row.g-4 .col-md-6:nth-child(2) .service-card,
.row.g-4 .col-md-6:nth-child(2) .advantage-card,
.row.g-4 .col-md-6:nth-child(2) .why-card,
.row.g-4 .col-md-6:nth-child(2) .team-card-home {
  animation-delay: 0.2s;
}

.row.g-4 .col-md-6:nth-child(3) .service-card,
.row.g-4 .col-md-6:nth-child(3) .advantage-card,
.row.g-4 .col-md-6:nth-child(3) .why-card,
.row.g-4 .col-md-6:nth-child(3) .team-card-home {
  animation-delay: 0.3s;
}

.row.g-4 .col-md-6:nth-child(4) .service-card,
.row.g-4 .col-md-6:nth-child(4) .advantage-card,
.row.g-4 .col-md-6:nth-child(4) .why-card,
.row.g-4 .col-md-6:nth-child(4) .team-card-home {
  animation-delay: 0.4s;
}

.row.g-4 .col-lg-6:nth-child(1) .service-link-card {
  animation-delay: 0.1s;
}

.row.g-4 .col-lg-6:nth-child(2) .service-link-card {
  animation-delay: 0.2s;
}

.row.g-4 .col-lg-4:nth-child(1) .blog-card {
  animation-delay: 0.1s;
}

.row.g-4 .col-lg-4:nth-child(2) .blog-card {
  animation-delay: 0.2s;
}

.row.g-4 .col-lg-4:nth-child(3) .blog-card {
  animation-delay: 0.3s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure sections never animate - only content inside */
section {
  opacity: 1 !important;
  transform: none !important;
}

section.animate-on-scroll,
section.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-link-card,
  .team-card-home,
  .advantage-card,
  .why-card,
  .blog-card {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-section {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .section-title {
    font-size: 30px;
  }

  .cta-title {
    font-size: 28px;
  }

}

@media (max-width: 767px) {
  .hero-section {
    min-height: 70vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .btn-hero {
    padding: 14px 36px;
    font-size: 17px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-text {
    font-size: 16px;
  }

  .btn-gold {
    padding: 14px 36px;
    font-size: 17px;
  }

  /* Cards Responsive */
  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    width: 75px;
    height: 75px;
  }

  .service-icon i {
    font-size: 36px;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .service-link-card {
    padding: 2rem 1.8rem;
  }

  .service-link-icon {
    width: 80px;
    height: 80px;
  }

  .service-link-icon i {
    font-size: 40px;
  }

  .service-link-title {
    font-size: 1.5rem;
  }

  .service-link-description {
    font-size: 1rem;
  }

  .team-card-body {
    padding: 1.5rem 1.2rem;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-position {
    font-size: 0.9rem;
  }

  .advantage-card,
  .why-card {
    padding: 2rem 1.5rem;
  }

  .advantage-icon,
  .why-icon {
    width: 70px;
    height: 70px;
  }

  .advantage-icon i,
  .why-icon i {
    font-size: 32px;
  }

  .advantage-title,
  .why-title {
    font-size: 1.15rem;
  }

  .advantage-text,
  .why-text {
    font-size: 0.9rem;
  }

  .packages-cta-card {
    padding: 2.5rem 2rem;
  }

  .packages-cta-icon {
    width: 80px;
    height: 80px;
  }

  .packages-cta-icon i {
    font-size: 40px;
  }

  .packages-cta-title {
    font-size: 1.7rem;
  }

  .packages-cta-text {
    font-size: 1rem;
  }

  .blog-card-content {
    padding: 1.5rem 1.5rem;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .blog-card-excerpt {
    font-size: 0.9rem;
  }

  .cta-card {
    padding: 3rem 2rem;
  }

  .cta-icon {
    width: 80px;
    height: 80px;
  }

  .cta-icon i {
    font-size: 40px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .btn-hero {
    padding: 12px 32px;
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-gold {
    padding: 12px 32px;
    font-size: 16px;
  }

  /* Extra Small Cards */
  .service-card {
    padding: 1.8rem 1.3rem;
  }

  .service-icon {
    width: 68px;
    height: 68px;
  }

  .service-icon i {
    font-size: 32px;
  }

  .service-title {
    font-size: 1.15rem;
  }

  .service-description {
    font-size: 0.88rem;
  }

  .service-link-card {
    padding: 1.8rem 1.5rem;
  }

  .service-link-icon {
    width: 75px;
    height: 75px;
  }

  .service-link-icon i {
    font-size: 36px;
  }

  .service-link-title {
    font-size: 1.35rem;
  }

  .service-link-description {
    font-size: 0.95rem;
  }

  .service-link-more {
    font-size: 0.9rem;
  }

  .team-card-body {
    padding: 1.3rem 1rem;
  }

  .team-name {
    font-size: 1.05rem;
  }

  .team-position {
    font-size: 0.85rem;
  }

  .advantage-card,
  .why-card {
    padding: 1.8rem 1.3rem;
  }

  .advantage-icon,
  .why-icon {
    width: 65px;
    height: 65px;
  }

  .advantage-icon i,
  .why-icon i {
    font-size: 30px;
  }

  .advantage-title,
  .why-title {
    font-size: 1.1rem;
  }

  .advantage-text,
  .why-text {
    font-size: 0.88rem;
  }

  .packages-cta-card {
    padding: 2rem 1.5rem;
  }

  .packages-cta-icon {
    width: 75px;
    height: 75px;
  }

  .packages-cta-icon i {
    font-size: 36px;
  }

  .packages-cta-title {
    font-size: 1.5rem;
  }

  .packages-cta-text {
    font-size: 0.95rem;
  }

  .packages-cta-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .blog-card-content {
    padding: 1.3rem 1.3rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  .blog-card-excerpt {
    font-size: 0.88rem;
  }

  .blog-card-link {
    font-size: 0.9rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-icon {
    width: 75px;
    height: 75px;
  }

  .cta-icon i {
    font-size: 36px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-text {
    font-size: 0.95rem;
  }

  .btn-gold {
    padding: 1rem 2.2rem;
    font-size: 1rem;
  }
}

/* ===================================
   Service Cards with Images for Home Page
   =================================== */

.service-card-home {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.service-card-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-light));
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(232, 196, 106, 0.25);
  border-color: rgba(232, 196, 106, 0.3);
}

.service-card-image-home {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-img-home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-home:hover .service-img-home {
  transform: scale(1.1);
}

.service-card-content-home {
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
}

.service-icon-home {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(232, 196, 106, 0.15), inset 0 0 0 1px rgba(232, 196, 106, 0.2);
  transition: all 0.4s ease;
}

.service-icon-home i {
  font-size: 32px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(232, 196, 106, 0.3));
}

.service-card-home:hover .service-icon-home {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(232, 196, 106, 0.3);
}

.service-title-home {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-blue);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.service-description-home {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments for service cards */
@media (max-width: 991px) {
  .service-card-image-home {
    height: 180px;
  }
  
  .service-card-content-home {
    padding: 1.8rem 1.3rem;
  }
}

@media (max-width: 767px) {
  .service-card-image-home {
    height: 160px;
  }
  
  .service-card-content-home {
    padding: 1.5rem 1.2rem;
  }
  
  .service-icon-home {
    width: 65px;
    height: 65px;
  }
  
  .service-icon-home i {
    font-size: 28px;
  }
  
  .service-title-home {
    font-size: 1.15rem;
  }
  
  .service-description-home {
    font-size: 0.88rem;
  }
}

@media (max-width: 575px) {
  .service-card-image-home {
    height: 150px;
  }
  
  .service-card-content-home {
    padding: 1.3rem 1rem;
  }
  
  .service-icon-home {
    width: 60px;
    height: 60px;
  }
  
  .service-icon-home i {
    font-size: 26px;
  }
  
  .service-title-home {
    font-size: 1.1rem;
  }
  
  .service-description-home {
    font-size: 0.85rem;
  }
}
