/* C:\Users\tusha\Desktop\Tushar Kumar\css\components.css */

/* ========== HEADER & NAVBAR (Light Luxury Glassmorphism) ========== */
.header-border {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

#myHeader.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 249, 246, 0.96); /* Ivory-white glass sticky header */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 40px rgba(14, 58, 32, 0.06);
  border-bottom: 1px solid rgba(14, 58, 32, 0.08); /* Fine divider line */
  margin-top: 0;
  max-width: 100%;
  animation: headerSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  transition: var(--transition-normal);
}

@media (min-width: 1200px) {
  .header-border .navbar {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65); /* Translucent light glass navbar */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin-top: 15px;
    box-shadow: 0 16px 40px rgba(14, 58, 32, 0.05);
    border: var(--border-light);
  }
  
  #myHeader.fixed-top .navbar {
    border-radius: 0;
    background: transparent;
    margin-top: 0;
    box-shadow: none;
    border: none;
  }
}

.badheader-top-logo img, .logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Make Logo Text Highly Visible (Dark Forest & Emerald Green on light navbar) */
.logo-growbiz {
  fill: var(--secondary) !important; /* Deep Forest Green */
}
.logo-innovations {
  fill: var(--primary) !important;  /* Emerald Green */
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item {
  position: relative;
  padding: 5px 20px;
}

.nav-item a.badmenu-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-title); /* Dark forest green text links */
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.nav-item a.badmenu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.nav-item a.badmenu-link:hover::after, .nav-item.active a.badmenu-link::after {
  width: 100%;
}

.nav-item a.badmenu-link:hover, .nav-item.active a.badmenu-link {
  color: var(--primary) !important; /* Emerald green highlight */
}

/* Dropdown Menu styling (Light Luxury Glass) */
.nav-item.has-child .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(14, 58, 32, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  min-width: 260px;
  list-style: none;
  padding: 15px 0;
  z-index: 1001;
}

.nav-item.has-child:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 12px 24px;
  font-size: 1.4rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.dropdown-item a:hover {
  background-color: rgba(26, 122, 64, 0.05);
  color: var(--primary);
  padding-left: 30px;
}

/* Premium Gold Gradient Contact CTA Button */
.nav-btn-contact {
  background: var(--gradient-primary); /* Mapped to Emerald-Forest Gradient */
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--transition-normal);
  position: relative;
  display: inline-block;
  overflow: hidden;
  box-shadow: var(--glow-green-btn);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 122, 64, 0.25);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle i {
  color: var(--secondary);
}

/* Mobile responsive menu */
@media (max-width: 1199.98px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(14, 58, 32, 0.06);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px var(--space-md);
    gap: 15px;
    transition: var(--transition-normal);
    z-index: 999;
    border-left: 1px solid rgba(14, 58, 32, 0.08);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(14, 58, 32, 0.05);
  }
  
  .nav-item a.badmenu-link {
    font-size: 1.8rem;
    color: var(--text-title);
  }
  
  .nav-item.has-child .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
    background: transparent;
  }
  
  .nav-item.has-child.open .dropdown-menu {
    display: block;
  }
  
  .nav-btn-contact {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

/* ========== HERO SECTION (Light Premium Wave) ========== */
.fig-hero .hero-banner {
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1200');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  min-height: 520px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border: var(--border-light);
  box-shadow: var(--shadow-md);
}

/* Cinematic dark gradient overlay to make text pop while keeping video visible */
.fig-hero .hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Soft glowing green radial mesh */
.fig-hero .hero-banner::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: var(--glow-emerald);
  pointer-events: none;
  filter: blur(80px);
  z-index: 2;
}

.fig-hero .hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  background: transparent; /* Removed white background */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.fig-hero .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  line-height: 1.25;
  color: #ffffff !important; /* White title for high visibility on video overlay */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.65);
}

.fig-hero .hero-btns {
  margin-top: 2rem;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.fig-hero .hero-btns .btn {
  font-size: 1.4rem;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fig-hero .btn-hero-primary {
  background: var(--gradient-primary);
  color: #ffffff !important;
  border: none;
  box-shadow: var(--glow-green-btn);
}

.fig-hero .btn-hero-outline {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.fig-hero .btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
}

/* Stats Panel (Light Glassmorphic Cards) */
.fig-hero .hero-stats {
  margin-top: 4rem;
  border-top: 1px solid rgba(14, 58, 32, 0.08);
  padding-top: 3rem;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.fig-hero .stat-item {
  position: relative;
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}

.fig-hero .stat-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold) !important; /* Champagne Gold stat numbers over video */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.fig-hero .stat-number i {
  color: var(--accent-gold);
  font-size: 1.6rem;
}

.fig-hero .stat-item > div:last-child {
  line-height: 1.4;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.95) !important; /* Clear white details */
  font-size: 1.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
  .fig-hero .stat-item {
    flex: 0 0 auto;
    max-width: none;
    padding-right: 4rem;
  }
  
  .fig-hero .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 36px;
    width: 1px;
    background: rgba(255, 255, 255, 0.25); /* White stat divider line */
  }
}

@media (min-width: 768px) {
  .fig-hero .hero-banner {
    min-height: 520px;
    padding: 0 80px;
  }
  
  .fig-hero .hero-content {
    max-width: 600px;
  }
  
  .fig-hero .hero-content h1 {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) {
  .fig-hero .hero-banner {
    height: 620px;
    min-height: unset;
  }
  
  .fig-hero .hero-content {
    max-width: 720px;
  }
}

/* ========== TRUSTED BY (Soft Green Marquee) ========== */
.fig-trusted .trusted-section {
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white marquee wrapper */
  padding: 30px;
  border-radius: var(--radius-md);
  margin-top: 30px !important;
  border: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.fig-trusted .trusted-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-title) !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  text-align: center;
}

.fig-trusted .trusted-slider-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.fig-trusted .trusted-slider-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: slideLeft 18s linear infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.fig-trusted .trusted-slider-track .brand-card {
  height: 60px;
  padding: 10px 25px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid rgba(14, 58, 32, 0.08); /* Thinner border layout */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-title);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(14, 58, 32, 0.02);
  transition: all var(--transition-normal);
  animation: gentleFloat 4s ease-in-out infinite;
  cursor: default;
}

.fig-trusted .trusted-slider-track .brand-card:nth-child(even) {
  animation-delay: 0.8s;
  animation-duration: 4.5s;
}

.fig-trusted .trusted-slider-track .brand-card:nth-child(3n) {
  animation-delay: 1.5s;
  animation-duration: 5s;
}

.fig-trusted .trusted-slider-track .brand-card:hover {
  transform: scale(1.08) translateY(-3px) !important;
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.15);
  background: var(--dark-obsidian);
  animation-play-state: paused;
}

@media (min-width: 768px) {
  .fig-trusted .trusted-section {
    padding: 30px 60px;
  }
}

/* ========== DIGITAL SOLUTIONS (Light Premium Glassmorphic Cards) ========== */
.digital-solution-section {
  background-color: rgba(255, 255, 255, 0.35); /* Translucent light base panel */
  padding: 60px 30px;
  border-radius: var(--radius-lg);
  margin-top: 20px; /* Reduced gap from 60px */
  margin-bottom: 60px;
  border: var(--border-light);
  box-shadow: var(--shadow-md);
}

.digital-solution-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.digital-solution-section .section-heading h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 15px;
}

.digital-solution-section .section-heading p {
  font-size: 1.6rem;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto;
}

.digital-solution-section .solution-card {
  margin-bottom: 30px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--border-light);
  background: #ffffff;
}

.digital-solution-section .solution-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
}

.digital-solution-section .solution-card:hover img {
  transform: scale(1.04);
}

.digital-solution-section .solution-card h3 a {
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  width: auto;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.9); /* Clean light glass container */
  border: 1px solid rgba(14, 58, 32, 0.08);
  color: var(--text-title) !important;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
  box-shadow: 0 8px 30px rgba(14, 58, 32, 0.04);
}

.digital-solution-section .solution-card:hover h3 a {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(26, 122, 64, 0.1);
}

.digital-solution-section .solution-card h3 a .view-project {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-primary); /* Green arrow indicator */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  transform: rotate(45deg);
  transition: var(--transition-normal);
}

.digital-solution-section .solution-card h3 a:hover .view-project {
  transform: rotate(90deg);
}

@media (min-width: 992px) {
  .digital-solution-section .section-heading h1 {
    font-size: 4.4rem;
  }
}

/* ========== WHY CHOOSE US ========== */
.background-banner {
  background-color: rgba(255, 255, 255, 0.35);
  border-top: var(--border-light);
  border-bottom: var(--border-light);
  padding: 80px 0;
}

.why__choose .feature-icon, .why__choose .feature-icon1 {
  width: 48px;
  height: 48px;
  color: var(--primary);
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.why__choose h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 12px;
  color: var(--text-title);
}

.why__choose .text-muted {
  font-size: 1.5rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* ========== TESTIMONIALS (Light Glassmorphism) ========== */
.testimonial-background {
  padding: 80px 20px;
}

.testi-section {
  padding: 20px 0;
}

.testi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: var(--border-light);
}

.testi-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  transition: var(--transition-normal);
}

.testi-text {
  color: var(--text-main);
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testi-text strong {
  color: var(--primary);
  font-weight: 600;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 122, 64, 0.05);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.6rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-title);
  font-size: 1.6rem;
}

.author-role {
  color: var(--text-main);
  opacity: 0.65;
  font-size: 1.2rem;
  margin-top: 2px;
}

.slider-controls {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 58, 32, 0.15);
  cursor: pointer;
  font-size: 1.6rem;
  transition: var(--transition-fast);
  color: var(--secondary);
}

.slider-controls:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(26, 122, 64, 0.2);
}

/* ========== LET'S DISCUSS CTA (Grounded Forest Green Card) ========== */
.project-section {
  background-image:
    linear-gradient(135deg, rgba(14, 58, 32, 0.95), rgba(8, 33, 18, 0.95)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1200');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 60px;
  margin: 80px 0;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: var(--shadow-md);
}

.project-section h1 {
  font-size: 3.2rem;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 60%, #c5a880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .project-section {
    padding: 80px;
  }
  
  .project-section h1 {
    font-size: 4rem;
  }
}

/* ========== FOOTER (Obsidian Dark Luxury Footer) ========== */
.footer-section {
  background-color: var(--secondary) !important; /* Solid Forest Green base footer */
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 30px;
  border-top: 2px solid var(--accent-gold); /* Gold top divider line */
}

.footer-section h3 {
  color: var(--accent-gold); /* Gold title headings */
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
  line-height: 1.8;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
}

.footer-section a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.footer-contacts ul {
  list-style: none;
}

.footer-contacts ul li {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
}

.footer-contacts ul li i {
  color: var(--accent-gold); /* Gold contacts icons */
  margin-right: 12px;
  font-size: 1.5rem;
  margin-top: 4px;
}

.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
}

.footer-bottom-wrap p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.footer-socials a:hover {
  background: var(--accent-gold);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

/* Luxury Inputs & Form elements */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary); /* Forest Green label */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.form-control {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 58, 32, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text-title);
  font-family: var(--font-base);
  font-size: 1.4rem;
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(26, 122, 64, 0.1);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
select.form-control {
  height: auto;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E3A20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 40px;
}
