/*
Theme Name: RD Investment
Theme URI: https://rdinvestment.in
Author: RD Investment
Author URI: https://rdinvestment.in
Description: A professional financial advisory WordPress theme for RD Investment - SEBI Registered Investment Advisor
Version: 1.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rd-investment
Tags: finance, investment, advisory, professional, responsive
*/

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  /* Palette aligned with RD Investment reference (#001529 navy, #14532D forest green) */
  --primary: #001529;
  --secondary: #0f2942;
  --accent: #14532d;
  --accent-dark: #0f3d22;
  --accent-light: #1a6b38;
  --gold: #f0a500;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --light-gray: #e8edf3;
  --text-dark: #0a1628;
  --text-muted: #64748b;
  --text-body: #334155;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --shadow-card: 0 4px 24px rgba(10,22,40,0.10);
  --radius: 10px;
  --radius-lg: 16px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-height: 85px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body{
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   UTILITIES
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-title span {
  color: var(--accent);
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 14px 0 18px 0;
  border-radius: 2px;
}

.section-divider.center {
  margin: 14px auto 36px auto;
}

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

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 7px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(17 34 64 / 27%);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  color: var(--white);
}

.btn svg, .btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   HEADER / NAVBAR
============================================ */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: var(--transition);
}

#masthead.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

/* Logo */
.site-logo,
.navbar .custom-logo-link,
.footer-brand .custom-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-brand img.custom-logo {
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}
.navbar .custom-logo-link img.custom-logo,
.footer-brand .custom-logo-link img.custom-logo {
  max-height: 65px;
  width: auto;
  height: auto;
  display: block;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1;
}

.logo-icon span.logo-sub {
  font-size: 0.42rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1;
}

.logo-text .tagline {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.main-navigation ul li a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
  position: relative;
}

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.main-navigation ul li a:hover{
  color: var(--accent);
}

.main-navigation ul li a:hover::after {
  transform: scaleX(1);
}

.main-navigation ul li.menu-item-has-children {
  position: relative;
}

.main-navigation ul li.menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: center / contain no-repeat var(--rd-nav-submenu-arrow, none);
  pointer-events: none;
}

.main-navigation ul li.menu-item-has-children > a {
  padding-right: 24px;
}

.main-navigation .submenu-toggle {
  display: none;
}

.main-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
}

.main-navigation ul li:hover > .sub-menu {
  display: flex;
}

.main-navigation .sub-menu li a {
  padding: 9px 16px;
  font-size: 0.85rem;
  border-radius: 0;
  white-space: nowrap;
}

.main-navigation .sub-menu li a::after { display: none; }

.nav-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  --hero-bg-image: none;
  padding-top: var(--header-height);
  background-color: var(--white);
  background-image: var(--hero-bg-image);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* White fade on the left so copy stays crisp (matches reference blend) */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 18%, rgba(255, 255, 255, 0.98) 30%, rgba(255, 255, 255, 0.92) 42%, rgb(255 255 255 / 81%) 52%, rgb(255 255 255 / 56%) 62%, rgb(255 255 255 / 0%) 74%);
  pointer-events: none;
  z-index: 1;
}

.hero-section .container {
  text-align: left;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  text-align: left;
  padding: 50px 0 120px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
  width: 100%;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  color: var(--text-body);
}

.hero-tagline {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  text-align: left;
}
.hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  text-align: left;
  background: -webkit-linear-gradient(#001435, #0B6005);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-heading .highlight {
  color: var(--accent);
  position: relative;
  text-align: left;
}

.hero-subtext {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
}

.hero-subtext p {
  margin: 0 0 0.65em 0;
}

.hero-subtext p:last-child {
  margin-bottom: 0;
}

.hero-subtext strong {
  color: var(--text-dark);
}

.hero-subtext-2 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: left;
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-trust-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
}

/* Full-width image below copy — shown ≤767px only (rules with later media queries) */
.hero-mobile-image {
  display: none;
}

/* ============================================
   STATS / TRUST BAR SECTION
============================================ */
.stats-section {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: -2px;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: #f0faf7;
}

/* Same icon treatment as first column: light green tile + accent stroke */
.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px auto;
  background: rgba(20, 83, 45, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-item--phrase .stat-number:last-child {
  margin-bottom: 0;
}

.stat-number span.plus {
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.stat-label-strong {
  display: block;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.stat-desc {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
  font-family: 'Poppins';
}

.stat-label-strong + .stat-desc {
  margin-top: 6px;
}

/* ============================================
   SERVICES SECTION
============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  background: #246F40;
}

.service-card:nth-child(2):hover::before {
  background: #063168;
}

.service-card:nth-child(3):hover::before {
  background: #423095;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon .service-icon-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.service-card:nth-child(1) .service-icon {
  background: #246F40;
  color: var(--accent);
}

.service-card:nth-child(2) .service-icon {
  background: #063168;
  color: var(--primary);
}

.service-card:nth-child(3) .service-icon {
  background: #423095;
  color: #7c3aed;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

/* .service-features {
  margin-bottom: 28px;
} */

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.90rem;
  color: var(--text-body);
  margin-bottom: 9px;
  line-height: 1.5;
}

.service-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,179,134,0.12);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b386' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card:nth-child(2) .service-features li::before {
  background-color: rgba(10,22,40,0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.service-card:nth-child(3) .service-features li::before {
  background-color: rgba(124,58,237,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:nth-child(2) .service-link { color: var(--primary); }
.service-card:nth-child(3) .service-link { color: #7c3aed; }

.service-link:hover {
  gap: 10px;
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section {
  background: var(--primary);
  background-image: 
    radial-gradient(circle at 10% 50%, rgba(0,179,134,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(0,100,255,0.05) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.why-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.why-header .section-label {
  color: var(--light-bg);
}

.why-header .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.why-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.09);
  transition: var(--transition);
}

.why-item:last-child { border-right: none; }

.why-item:hover {
  background: rgba(0,179,134,0.06);
}
.why-icon {
  width: 68px;
  height: 68px;
  background: #438c2324;
  border: 1px solid #438C23;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: #438C23;
  transition: var(--transition);
}
.why-item:hover .why-icon {
  background: #438C23;
  color: var(--white);
  transform: scale(1.08);
}

.why-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-content .section-label {
  color: var(--accent);
}

.about-content p,
.about-content .about-description p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.about-content .about-description {
  margin-bottom: 0;
}

.about-content .about-description p:last-child {
  margin-bottom: 0;
}

.about-badges {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
}

.about-badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,179,134,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.about-badge-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: var(--light-bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-carousel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.testimonials-carousel-wrap > .testimonials-carousel {
  width: 100%;
  max-width: 100%;
}

.testimonials-carousel-wrap:not(.has-multiple-slides) .testimonials-arrow {
  display: none;
}

.testimonials-carousel-wrap:not(.has-multiple-slides) .testimonials-carousel {
  grid-template-columns: minmax(0, 1fr);
}

.testimonials-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 16px 20px;
}

.testimonials-arrow {
  align-self: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonials-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials-arrow:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.testimonials-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.testimonials-slider.swiper {
  position: relative;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.testimonials-slider .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.testimonials-slider .swiper-slide .testimonial-card {
  width: 100%;
  flex: 1 1 auto;
  opacity: 1;
}

.testimonials-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 767px) {
  .testimonials-carousel-wrap .testimonials-arrow {
    display: none !important;
  }

  .testimonials-carousel-wrap .testimonials-carousel {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-slider.swiper {
    --swiper-transition-duration: 0.01ms;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

div#testimonialsDots {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,179,134,0.2);
  transform: translateY(-4px);
}

.testimonial-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 16px;
  margin-bottom: 14px;
}

.quote-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,179,134,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0;
  font-size: 1.4rem;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
  font-style: italic;
  flex: 1 1 auto;
  align-self: stretch;
  width: 100%;
  min-height: 0;
}

.testimonial-text--content p:first-child {
  margin-top: 0;
}

.testimonial-text--content p:last-child {
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  flex-shrink: 0;
}

.author-meta {
  min-width: 0;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-avatar.author-avatar--photo {
  padding: 0;
  overflow: hidden;
  background: var(--border);
}

.author-avatar.author-avatar--photo .author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonials-dots.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100%;
  transform: none !important;
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: center !important;
  align-content: center;
  align-self: stretch !important;
  gap: 12px;
  column-gap: 12px;
  row-gap: 12px;
  padding: 4px 0;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  box-sizing: border-box;
}

.testimonials-dots .swiper-pagination-bullet,
.testimonials-dots .swiper-pagination-bullet.dot {
  margin: 0 !important;
  flex-shrink: 0;
  position: relative;
  left: auto !important;
  transform: none !important;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  opacity: 0.35;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  box-sizing: border-box;
}

.testimonials-dots .dot:hover {
  opacity: 0.65;
}

.testimonials-dots .dot.active,
.testimonials-dots .dot.swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 6px;
  background: var(--primary);
  border-color: var(--primary);
}

/* ============================================
   CTA SECTION
============================================ */
section.cta-section {
  padding-bottom: 0;
}
.cta-section > .container > .cta-container-inner {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 7px;
  background-image: url('/rd-inverstment/wp-content/uploads/2026/05/importance-of-investment.webp');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Gradient shadow overlay above the photo (content stays on top via .cta-inner z-index) */
.cta-section > .container > .cta-container-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(138deg, #14532deb 0%, #0f294280 42%, #001529eb 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin: 0;
}

.cta-text .cta-lead {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin: 0;
}

.cta-text .cta-lead p {
  margin: 0 0 0.5em 0;
}

.cta-text .cta-lead p:last-child {
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section {
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}

.contact-info .section-title {
  margin-bottom: 8px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(0,179,134,0.08);
  border: 1px solid rgba(0,179,134,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form .form-row,
.contact-form-wrapper.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
  align-items: start;
}

.contact-form .form-row > *,
.contact-form-wrapper.contact-form .form-row > * {
  min-width: 0;
}

.contact-form-wrapper.contact-form .form-row > p {
  margin: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full { margin-bottom: 20px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap input[type="text"],
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap input[type="email"],
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap input[type="tel"],
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap input[type="url"],
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap textarea,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap input:focus,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap textarea:focus,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,179,134,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap input::placeholder,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap textarea::placeholder {
  color: #a0aec0;
}

.form-group textarea,
.contact-form-wrapper.contact-form .wpcf7-form-control-wrap textarea {
  min-height: 110px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
}

/* Contact Form 7 — match theme (use .form-row / .form-group in CF7 form HTML) */
.contact-form-wrapper.contact-form .wpcf7 {
  margin: 0;
}

.contact-form-wrapper.contact-form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 20px;
  align-items: start;
  margin: 0;
}

.contact-form-wrapper.contact-form .wpcf7-form > p {
  margin: 0 0 20px;
}

.contact-form-wrapper.contact-form .wpcf7-form > p:nth-last-of-type(-n + 2) {
  grid-column: 1 / -1;
}

.contact-form-wrapper.contact-form .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}

.contact-form-wrapper.contact-form .wpcf7-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.contact-form-wrapper.contact-form .form-submit {
  margin-top: 8px;
}

.contact-form-wrapper.contact-form input.wpcf7-submit,
.contact-form-wrapper.contact-form .wpcf7-submit.btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-form-wrapper.contact-form .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  border-width: 1px;
}

.contact-form-wrapper.contact-form form.sent .wpcf7-response-output {
  background: rgba(0,179,134,0.1);
  color: #009970;
  border: 1px solid rgba(0,179,134,0.3);
}

.contact-form-wrapper.contact-form form.invalid .wpcf7-response-output,
.contact-form-wrapper.contact-form form.failed .wpcf7-response-output,
.contact-form-wrapper.contact-form form.aborted .wpcf7-response-output {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.3);
}

.contact-form-wrapper.contact-form .wpcf7-not-valid-tip {
  font-size: 0.78rem;
  margin-top: 5px;
  color: #dc2626;
}

.contact-form-wrapper.contact-form .wpcf7-spinner {
  margin: 0 0 0 12px;
}

.contact-form-fallback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
============================================ */
#colophon {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.8fr;
  gap: 48px;
}

.footer-brand .site-logo,
.footer-brand .custom-logo-link {
  margin-bottom: 18px;
}

.footer-brand .logo-text .brand {
  color: var(--white);
}

.footer-brand .logo-text .tagline {
  color: rgba(255,255,255,0.5);
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 0.85rem;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-disclaimer {
  margin-bottom: 16px;
}

.footer-disclaimer .sebi-reg {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-priority {
  background: rgba(0, 179, 134, 0.06);
  border: 1px solid #fafafa33;
  color: var(--white);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-heading);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ============================================
   INNER PAGE STYLES
============================================ */
.page-hero {
  background: var(--primary);
  padding: calc(var(--header-height) + 50px) 0 60px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.page-hero .breadcrumbs {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 12px;
}

.page-hero .breadcrumbs a {
  color: var(--accent);
}

.page-content {
  padding: 72px 0;
}

/* ============================================
   SCROLL TO TOP
============================================ */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #072b66;
  color: var(--white);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px #0014355e;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #0014355e;
  border-radius: 10px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .navbar .custom-logo-link img.custom-logo, .footer-brand .custom-logo-link img.custom-logo {
    max-height: 55px;
}

  .hero-section {
    background-position: 82% center;
  }

  .hero-section::before {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0.97) 35%,
      rgba(255, 255, 255, 0.78) 48%,
      rgba(255, 255, 255, 0.35) 62%,
      rgba(255, 255, 255, 0.08) 78%,
      rgba(255, 255, 255, 0) 92%
    );
  }

  .hero-inner {
    text-align: left;
    justify-items: start;
    padding: 60px 0;
  }

  .hero-content {
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius);
  }

  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper { order: -1; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { border-right: 1px solid rgba(255,255,255,0.08); }
  .why-item:nth-child(2n) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 991px) {
  section.stats-section .container {
    top: 0px;
    margin-bottom: 0;
}
  .hero-section {
    background-size: cover;
}
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .main-navigation,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }


  /* Full-screen dimmed overlay; menu panel on the left */
  .main-navigation.open {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }

  .main-navigation.open > ul {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    gap: 0px;
    background: var(--white);
    box-shadow: 8px 0 40px rgba(10, 22, 40, 0.2);
    overflow-y: auto;
    text-align: left;
  }
  .main-navigation ul li a:hover, .main-navigation ul li.current-menu-item a {
    background-color: var(--accent);
    color: #fff;
}

  .main-navigation.open ul li {
    width: 100%;
  }

  .main-navigation.open ul li a {
    padding: 14px 16px;
    display: block;
    text-align: left;
    border-radius: 0px;
  }

  .main-navigation.open ul li a::after {
    display: none;
  }

  /* Stack sub-menus under parents on mobile overlay */
  .main-navigation.open ul li.menu-item-has-children > a::before {
    display: none;
  }

  .main-navigation.open ul li.menu-item-has-children {
    position: relative;
  }

  .main-navigation.open ul li.menu-item-has-children > a {
    padding-right: 52px;
  }

  .main-navigation.open .submenu-toggle {
    display: inline-flex;
    position: absolute;
    right: 6px;
    top: 7px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .main-navigation.open .submenu-toggle span {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -4px;
  }

  .main-navigation.open .sub-menu {
    display: none !important;
    flex-direction: column;
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    padding: 4px 0 12px 0px;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(10, 22, 40, 0.04);
    gap: 2px;
  }

  .main-navigation.open ul li:hover > .sub-menu {
    display: none !important;
  }

  .main-navigation.open ul li.submenu-open > .sub-menu {
    display: flex !important;
  }

  .main-navigation.open ul li.submenu-open > .submenu-toggle span {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  .main-navigation.open .sub-menu li a {
    padding: 14px 16px 14px 25px;
    font-size: 0.84rem;
  }
}

/* Hero: no BG image — image first, then copy (DOM: container then img; flex order swaps) */
@media (max-width: 767px) {
  .hero-section {
    background-image: none !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-bottom: 0;
    overflow: visible;
    display: flex;
  }

  .hero-section .container {
    order: 2;
    position: relative;
    z-index: 2;
  }

  .hero-section::before {
    display: none;
  }

  .hero-inner {
    padding: 30px 0 32px;
  }

  .hero-mobile-image {
    order: 1;
    display: block;
    width: 100%;
    line-height: 0;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }

  .hero-mobile-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 640px) {
  .section-padding { padding: 40px 0; }
  .container { padding: 0 16px; }

  .testimonials-carousel {
    gap: 10px 12px;
  }

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .hero-trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-trust-divider { width: 40px; height: 1px; }

  .contact-form .form-row,
  .contact-form-wrapper.contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .about-badges { flex-direction: column; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .cta-buttons { flex-direction: column; align-items: center; width: 100%; }
  .cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .footer-social { flex-wrap: wrap; }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-stagger.animated > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.animate-stagger.animated > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.animate-stagger.animated > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.animate-stagger.animated > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.animate-stagger.animated > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
