/* ===== RESET & VARIABLES ===== */
:root {
  --primary: #435335;
  --primary-dark: #2C3A2A;
  --primary-light: #5A7A48;
  --secondary: #9F7742;
  --secondary-dark: #7D5C33;
  --secondary-light: #C4A16E;
  --accent: #DFCDD8;
  --dark: #1E2A1A;
  --light: #FDF9F2;
  --white: #FFFFFF;
  --black: #0A0F08;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --gradient-1: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-2: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(67,83,53,0.03) 0%, rgba(159,119,66,0.03) 100%);
  --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --shadow-soft: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(159, 119, 66, 0.2);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}

.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.2s ease;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-follower {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.section-subtitle::after {
  content: '';
  position: absolute;
  left: 2.2rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
#mainNavbar {
  padding: 1.2rem 0;
  transition: var(--transition-fast);
  backdrop-filter: blur(0px);
  
}

#mainNavbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.8rem 0;
  
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-icon {
  width: 35px;
  height: 35px;
}

.brand-logo {
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-accent {
  color: var(--secondary);
  -webkit-text-fill-color: var(--secondary);
  margin-left: 5px;
}

.nav-link {
  color: var(--secondary-dark) !important;
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.btn-cta-nav {
  background: var(--gradient-2);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 1rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-cta-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-cta-nav:hover::before {
  left: 100%;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}


/* Navbar Background */
#mainNavbar {
background: white;
  padding: 10px 0;
  transition: 0.3s;
  z-index: 999;
}

/* Logo Image */
.brand-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Nav Links */
.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #9F7742;
}

/* Button */
.btn-cta-nav {
  background: #9F7742;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cta-nav:hover {
  background: #435335;
  color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .navbar-collapse {
    
    padding: 15px;
    border-radius: 10px;
  }

  .nav-link {
    margin: 10px 0;
  }

  .btn-cta-nav {
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  .brand-logo-img {
    height: 38px;
  }
}

/* SMALL MOBILE */
@media (max-width: 576px) {
  .brand-logo-img {
    height: 32px;
  }
}

/* ===== HERO SECTION ===== */
.process-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,42,26,0.92) 0%, rgba(67,83,53,0.88) 100%),
              url('https://images.pexels.com/photos/6129315/pexels-photo-6129315.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 90vh;
  display: flex;
  align-items: center;
  margin-left: 14%;
  margin-top: 60px;
}

.hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.badge-line {
  width: 50px;
  height: 2px;
  background: var(--secondary);
  display: inline-block;
}

.hero-badge span {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-description {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  animation: bounce 2s infinite;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-scroll-indicator span {
  font-size: 0.8rem;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== PROCESS INTRO ===== */
.process-intro {
  padding: 80px 0 40px;
  background: var(--white);
}

/* ===== IMPROVED TIMELINE SECTION ===== */
.process-timeline-section {
  padding: 0px 0 50px;
  background: var(--white);
  position: relative;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.timeline-left {
  width: 80px;
  text-align: right;
  padding-right: 20px;
}

.timeline-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Cormorant Garamond', serif;
  background: var(--white);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.timeline-center {
  position: relative;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--gradient-2);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(159,119,66,0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(159,119,66,0.3);
}

.timeline-line {
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  position: absolute;
  top: 20px;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-right {
  flex: 1;
  padding-left: 20px;
}

.timeline-card {
  background: var(--light);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(159,119,66,0.1);
}

.timeline-card:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border-color: var(--secondary);
}

.timeline-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.timeline-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
}

.timeline-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== QUALITY COMMITMENT ===== */
.quality-commitment {
  padding: 0px 0;
  background: var(--gradient-soft);
}

.quality-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2rem;
}

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.quality-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--white);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.quality-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.quality-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quality-content {
  flex: 1;
}

.quality-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.quality-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.quality-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.quality-visual img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.quality-visual:hover img {
  transform: scale(1.05);
}

.quality-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-2);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
  padding: 100px 0;
  background: var(--white);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cert-card {
  background: var(--light);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.cert-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.cert-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.cert-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.trust-statement {
  text-align: center;
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: var(--gradient-soft);
  border-radius: 20px;
  font-style: italic;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1rem;
}

/* ===== STANDARDS MATTER ===== */
.standards-matter {
  padding: 0px 0;
  background: var(--gradient-soft);
}

.standards-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.standard-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.standard-item span {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

.standards-conclusion {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  padding-top: 0.5rem;
}

.standards-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.standards-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.standards-image:hover img {
  transform: scale(1.05);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.03)" d="M10,50 Q30,30 50,50 T90,50"/></svg>');
  background-size: 30px;
  animation: slideBg 20s linear infinite;
}

@keyframes slideBg {
  0% { background-position: 0 0; }
  100% { background-position: 100px 0; }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--secondary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}

.premium-tagline {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.footer-brand span {
  color: var(--secondary);
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.cert-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cert-badges span {
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .timeline-left {
    width: 60px;
  }
  
  .timeline-number {
    font-size: 1.4rem;
  }
  
  .timeline-center {
    width: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .timeline-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  
  .timeline-left {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 10px;
  }
  
  .timeline-center {
    display: none;
  }
  
  .timeline-right {
    padding-left: 0;
  }
  
  .timeline-card:hover {
    transform: translateX(5px) translateY(-3px);
  }
  
  .quality-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .navbar-collapse {
    background: rgba(30, 42, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-link {
    text-align: center;
    padding: 0.8rem !important;
  }
  
  .btn-cta-nav {
    margin: 1rem auto 0;
    display: inline-block;
    width: fit-content;
  }
  
  .premium-tagline {
    font-size: 1rem;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




/* Nav Links */
.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #9F7742;
}
.nav-link {
  
  font-weight: 500;
  margin: 0 0.8rem;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
 
}



.timeline-icon-svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.timeline-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.timeline-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.timeline-card:hover .timeline-icon-svg svg {
  transform: scale(1.1) rotate(360deg);
}



.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.cert-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.cert-icon-svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.cert-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s ease;
}

.cert-card:hover svg {
  transform: scale(1.1) rotate(50deg);
}

.cert-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cert-card p {
  font-size: 15px;
  color: #555;
}

.btn-cta-nav i {
  margin-right: 6px;
  font-size: 16px;
}



/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  }
}

/* MOBILE FIX (Bootstrap default working) */
/* MOBILE FIX */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none; /* default hidden */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .navbar .dropdown-menu.show {
    display: block; /* click pe open */
  }
}

.dropdown-item:hover {
  background: #966a0d !important;
  color: #ffffff !important;
  padding-left: 25px;
}


.navbar .dropdown-menu {
  pointer-events: auto;
}


/* PRELOADER FULL SCREEN */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* DOTS */
.dots-loader {
  display: flex;
  gap: 8px;
}

.dots-loader span {
  width: 10px;
  height: 10px;
  background: #9F7742;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

/* DELAY FOR EACH DOT */
.dots-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

/* ANIMATION */
@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.5;
  }
  to {
    transform: translateY(-10px);
    opacity: 1;
  }
}



@media (max-width: 550px) {
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-left: -109px;
    padding: 42px;
}

.hero-scroll-indicator{
  display: none;
}


.process-intro {
    padding: 40px 0 40px;
    background: var(--white);
}

.process-timeline-section {
    padding: 0px 0px 0px;
    background: var(--white);
    position: relative;
}


    .certifications {
    padding: 40px 0;
    background: var(--white);
}

.cert-grid{
  margin: -0rem 0;
}


    #ab{
  margin-left: 0px !important;
}


.btn-cta-nav {
        
        text-align: center;
        margin-top: 20px !important;
        margin-left: 70px !important;
    }
    .nav-link {
        text-align: center;
        padding: 15px !important;
    }

        #qa{
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
        margin-left: -40px;
    }

        #ip{
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
        margin-left: -40px;
        padding: 42px;
    }

    #ij{
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(0 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
        margin-left: -50px;
        padding: 42px;
    }

    .footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 0px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: -1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}
.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
    padding: 1px;
}

.brand-logo-img {
        height: 45px;
    }


    .navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: mintcream;
    border-radius: 24px;
}


#rs {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    padding: 10px;
}
     
  


}