@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-navy: #0B132B;
  --secondary-navy: #1C2541;
  --navy-light: #3A506B;
  --emerald: #10B981;
  --emerald-hover: #059669;
  --emerald-dark: #047857;
  --sky-blue: #0284C7;
  --sky-blue-hover: #0369A1;
  --accent-cyan: #0EA5E9;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --green-light: #F0FDF4;
  --blue-light: #F0F9FF;
  
  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow-green: 0 8px 25px rgba(16, 185, 129, 0.35);
  --shadow-glow-blue: 0 8px 25px rgba(2, 132, 199, 0.35);
  
  /* Border Radii */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.85rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2.5rem;
}

html{
    scroll-behavior: smooth;
}

/* Preloader Screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-navy);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255, 255, 255, 0.05);
  border-top: 5px solid var(--emerald);
  border-right: 5px solid var(--sky-blue);
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.preloader-text {
  margin-top: 2rem;
  color: white;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: var(--slate-50);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--primary-navy);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-navy);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--emerald), var(--sky-blue));
  border-radius: 5px;
  border: 2px solid var(--primary-navy);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-hover);
}

/* Sections padding and background */
.section-padding {
  padding: 70px 0;
  position: relative;
}

 .vision-content .vision-tagline{
    font-size: 40px;
    color: #16a34a;
    font-weight: 800;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -1px;
  margin-bottom: 15px !important;
}

.section-desc {
  color: var(--slate-600);
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 4rem auto;
}
.text-start {
    text-align: left !important;
    justify-content: center;
}

/* Custom Button Styles */
.btn-premium {
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.25px;
}
.uppon{
  padding-left: 0px;
}

.btn-premium-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-hover));
  color: white;
  border: none;
  box-shadow: var(--shadow-glow-green);
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
  color: white;
  background: linear-gradient(135deg, var(--emerald-hover), var(--emerald-dark));
}

.btn-premium-secondary {
  background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-hover));
  color: white;
  border: none;
  box-shadow: var(--shadow-glow-blue);
}

.btn-premium-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.5);
  color: white;
  background: linear-gradient(135deg, var(--sky-blue-hover), var(--sky-blue));
}

.btn-premium-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}




.btn-premium-outline:hover {
  transform: translateY(-3px);
  background-color: white;
  color: var(--primary-navy);
  border-color: white;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-premium-outline-dark {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--secondary-navy);
}
.recover-text{
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
}

.btn-premium-outline-dark:hover {
  transform: translateY(-3px);
  background-color: var(--secondary-navy);
  color: white;
  box-shadow: var(--shadow-lg);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-5px);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.glass-card-light:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

/* Sticky Header */
.navbar-custom {
  background: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  padding: 5px 0;
  z-index: 1030;
}

.navbar-custom.scrolled {
  background: white;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  padding: 5px 0;
  box-shadow: var(--shadow-xl);
}

.navbar-brand-custom {
  display: flex;
  flex-direction: column;
}

.navbar-brand-custom .brand-name {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.75px;
  color: white;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.navbar-brand-custom .brand-name span {
  background: linear-gradient(135deg, var(--emerald), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-brand-custom .brand-tagline {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.1rem;
}

.nav-link-custom {
  color: rgba(0, 0, 0, 0.8) !important;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.nav-link-custom:hover, 
.nav-link-custom.active, 
.show > .nav-link-custom {
  color: #0eb37d !important;
 }

.navbar-custom.scrolled .nav-link-custom {
  color: rgba(7, 7, 7, 0.85) !important;
}

.navbar-custom.scrolled .nav-link-custom:hover, 
.navbar-custom.scrolled .nav-link-custom.active {
  color: #0fb67f !important;
  /* background-color: rgba(16, 185, 129, 0.2); */
}

/* Dropdown Sub-menu */
.dropdown-menu-custom {
  background: rgba(11, 19, 43, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  animation: dropdownFadeIn 0.3s ease-out;
}

.dropdown-item-custom {
  color: rgba(255, 255, 255, 0.75) !important;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  transition: var(--transition-smooth);
}

.dropdown-item-custom:hover {
  color: white !important;
  background-color: rgba(16, 185, 129, 0.2);
  transform: translateX(5px);
}

.dropdown-item-custom i {
  color: var(--emerald);
  margin-right: 0.5rem;
}

/* Hero Section */
.hero-premium {
  background: radial-gradient(circle at 5% 5%, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  padding: 12rem 0 9rem 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-bg-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(var(--emerald) 1px, transparent 1px), radial-gradient(var(--sky-blue) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  opacity: 0.25;
  filter: blur(8px);
  pointer-events: none;
  animation: float-particle 12s infinite ease-in-out;
}

.hp-1 { width: 300px; height: 300px; top: -10%; right: -5%; animation-delay: 0s; }
.hp-2 { width: 150px; height: 150px; bottom: 10%; left: -2%; animation-delay: 2s; }
.hp-3 { width: 80px; height: 80px; top: 40%; left: 45%; animation-delay: 4s; }

.hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
  margin-top: 22px;
}

.hero-badge-item {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 2rem;
  padding: 0.4rem 1.1rem;
  font-size: 13px;
  font-weight: 900;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-title-main {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-title-main span {
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-main {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* Floating Stat Cards */
.hero-mockup-wrapper {
  position: relative;
}

.hero-mockup-img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.floating-stat-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  animation: float-stat 4s infinite ease-in-out;
}

.fsc-1 {
  top: 10%;
  left: -8%;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  animation-delay: 0s;
}

.fsc-2 {
  bottom: 20%;
  right: -5%;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(2, 132, 199, 0.3);
  animation-delay: 1.5s;
}

.fsc-3 {
  bottom: -5%;
  left: 10%;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation-delay: 3s;
}

.fsc-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: white;
}

.fsc-1 .fsc-icon { background: var(--emerald); }
.fsc-2 .fsc-icon { background: var(--sky-blue); }
.fsc-3 .fsc-icon { background: var(--accent-cyan); }

.fsc-details h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.fsc-details p {
  font-size: 0.75rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.transtion-text{
    font-size: 48px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 25px;
}

/* Wave Separator */
.wave-separator {
  position: absolute;
  width: 100%;
  left: 0;
  line-height: 0;
  z-index: 5;
}

.wave-bottom {
  bottom: -1px;
}

.wave-top {
  top: -1px;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* About Section list items */
.about-features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feat-card {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.08);
  padding: 10px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
   border-color: var(--emerald);
}

.about-feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald);
}

.about-feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: var(--green-light);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feat-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-feat-info p {
  font-size: 12px;
  color: var(--slate-600);
  margin: 0;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid white;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.about-img-wrap:hover img {
  transform: scale(1.03);
}

/* Timeline Layout for Vision & Mission */
.timeline-section {
  background: radial-gradient(circle at 90% 10%, rgba(2, 132, 199, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--emerald), var(--sky-blue));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  right: -12px;
  background-color: white;
  border: 4px solid var(--emerald);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.left-container {
  left: 0;
}

.right-container {
  left: 50%;
}

.right-container::after {
  left: -12px;
  border-color: var(--sky-blue);
}

.timeline-container:hover::after {
  background-color: var(--emerald);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.right-container:hover::after {
  background-color: var(--sky-blue);
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.5);
}

.timeline-card {
  padding: 2rem;
  background-color: white;
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 185, 129, 0.08);
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--emerald);
}

.left-container .timeline-card {
  border-right: 4px solid var(--emerald);
}

.right-container .timeline-card {
  border-left: 4px solid var(--sky-blue);
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.timeline-header i {
  font-size: 1.5rem;
  color: var(--emerald);
}

.right-container .timeline-header i {
  color: var(--sky-blue);
}

.timeline-header h3 {
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
}

.timeline-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-600);
}

/* Services Cards (Image-based Cards with Overlay) */
.service-premium-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(16, 185, 129, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 19, 43, 0.1), rgba(11, 19, 43, 0.8));
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.service-premium-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-premium-card:hover .service-img-overlay {
  /* background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(2, 132, 199, 0.85) 100%); */
  opacity: 0.95;
}

.service-icon-floating {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-premium-card:hover .service-icon-floating {
  transform: rotate(360deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.service-body {
  padding: 2.25rem 2rem 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0fb67f24;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--slate-600);
}

.service-features-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-size: 0.95rem;
}

.service-footer {
  margin-top: auto;
}

/* Industries We Serve Grid */
.industry-grid-card {
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 2rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: var(--sky-blue);

}

.industry-grid-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(2, 132, 199, 0.05));
  z-index: -1;
  transition: var(--transition-smooth);
}

.industry-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sky-blue);
}

.industry-grid-card:hover::before {
  height: 100%;
}

.industry-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition-smooth);
}

.industry-grid-card:hover .industry-card-icon {
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.25);
}

.industry-grid-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.industry-grid-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin: 0;
}

/* Why Choose Us Cards */
.wcu-card {
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.wcu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--emerald);
}

.wcu-icon-box {
  width: 55px;
  height: 55px;
  border-radius: var(--border-radius-md);
  background-color: var(--green-light);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.wcu-card:hover .wcu-icon-box {
  background-color: var(--emerald);
  color: white;
}

.wcu-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.wcu-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin: 0;
}

/* Targets Impact Section (Navy Background) */
.targets-section {
  background: radial-gradient(circle at 10% 20%, var(--secondary-navy) 0%, var(--primary-navy) 90%);
  color: white;
}

.targets-section .section-title {
  color: white;
}

.target-counter-box {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0eb17c;
  border-radius: 20px;
}

.target-counter-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.target-counter-label {
  font-size: 14px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
  color: rgb(255, 255, 255);
}

/* Testimonial Section */
.testimonials-section {
  background: radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.03) 0%, rgba(2, 132, 199, 0.03) 100%);
}

.testimonial-slide-card {
  background: white;
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 1rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-slide-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(16, 185, 129, 0.07);
}

.t-stars {
  color: #f59e0b;
  margin-bottom: 1.25rem;
}

.t-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--slate-800);
  font-style: italic;
  margin-bottom: 2rem;
}

.t-user-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.t-avatar-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--slate-100);
  border: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--emerald-dark);
}

.t-user-details h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.t-user-details p {
  font-size: 0.8rem;
  color: var(--slate-600);
  margin: 0;
}

.swiper-pagination-bullet-active {
  background: var(--emerald) !important;
  width: 20px !important;
  border-radius: 5px !important;
  transition: var(--transition-smooth);
}

/* Call To Action Section */
.cta-section {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-navy) 0%, #152A4A 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 5rem 4rem;
  box-shadow: var(--shadow-xl);
  z-index: 1;
}


.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}

.cta-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

/* Footer Styling */
.footer-main {
  background-color: #050B19;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-top-details {
  padding: 6.5rem 0 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  color: white;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--emerald);
}

.footer-link-item {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.85rem;
  display: block;
  font-size: 0.9rem;
}

.footer-link-item:hover {
  color: var(--emerald);
  transform: translateX(4px);
}

.footer-contact-block {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-block i {
  color: var(--emerald);
  margin-top: 0.25rem;
  font-size: 1rem;
}

.footer-social-wrap {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link:hover {
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
  border-color: transparent;
}

.footer-bottom-bar {
  padding: 1.75rem 0;
  background-color: #030610;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--sky-blue));
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Keyframe Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float-stat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive navbar changes */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--shadow-xl);
  }
  
  .nav-link-custom {
    padding: 0.75rem 1rem !important;
  }
  
  .dropdown-menu-custom {
    background: rgba(28, 37, 65, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-premium {
    padding: 140px 0 60px 0;
    text-align: center;
  }
  
  .hero-badge-wrap {
   }
  
  .hero-title-main {
    font-size: 2.75rem;
  }
  
  .hero-mockup-wrapper {
    margin-top: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .floating-stat-card {
    padding: 0.75rem 1rem;
  }
  
  .fsc-1 { left: -5%; }
  .fsc-2 { right: -3%; }
  .fsc-3 { bottom: -2%; left: 8%; }
  
  .about-features-container {
    grid-template-columns: 1fr;
  }
  
  /* Timeline Responsive */
  .timeline::after {
    left: 31px;
  }
  
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-container::after {
    left: 20px;
    right: auto;
  }
  
  .right-container {
    left: 0;
  }
  
  .right-container::after {
    border-color: var(--emerald);
  }
  
  .left-container .timeline-card {
    border-right: none;
    border-left: 4px solid var(--emerald);
  }
  
  .right-container .timeline-card {
    border-left: 4px solid var(--sky-blue);
  }
  
  .cta-box {
    padding: 4rem 2rem;
  }
  
  .cta-box h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title-main {
    font-size: 2.2rem;
  }
  
  .hero-buttons-wrap {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons-wrap .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .target-counter-num {
    font-size: 3.25rem;
  }
  
  .testimonial-slide-card {
    padding: 2rem 1.5rem;
  }
}




.frc-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #0f6b3e, #1c9c5b);
    padding: 14px 0;
    position: relative;
    /* border-radius: 8px; */
}

.frc-marquee-track {
    display: flex;
    width: max-content;
    animation: frcMarqueeMove 30s linear infinite;
}

.frc-marquee-track span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    padding-right: 80px;
    letter-spacing: 0.3px;
    font-family: Arial, sans-serif;
}

@keyframes frcMarqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.frc-marquee-wrapper:hover .frc-marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .frc-marquee-track span {
        font-size: 14px;
        padding-right: 50px;
    }
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1250px;
    }
}




.frc-whychoose-section{
    padding:80px 20px;
    background:#f7f9f8;
}

.frc-whychoose-container{
    max-width:1200px;
    margin:auto;
}

.frc-whychoose-header{
    text-align:center;
    margin-bottom:50px;
}

.frc-whychoose-header h2{
    font-size:42px;
    font-weight:700;
    color:#1d3f2f;
    margin:0;
}

.frc-whychoose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.frc-whychoose-item{
    display:flex;
    gap:20px;
    background:#fff;
    padding:15px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:all .3s ease;
     border: 1px solid var(--emerald);
}

.frc-whychoose-item:hover{
    transform:translateY(-5px);
}

.frc-whychoose-icon{
    min-width:25px;
    width:25px;
    height:25px;
    border-radius:50%;
    background:#14804a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

.frc-whychoose-content h3{
    margin:0 0 8px;
    color:#14804a;
    font-size:16px;
    font-weight:600;
}

.frc-whychoose-content p{
    margin:0;
    color:#555;
    line-height:1.7;
    font-size:16px;
}

@media(max-width:768px){

    .frc-whychoose-header h2{
        font-size:32px;
    }

    .frc-whychoose-grid{
        grid-template-columns:1fr;
    }

    .frc-whychoose-item{
        padding:20px;
    }

    .frc-whychoose-content h3{
        font-size:20px;
    }
    .head-logo{
  max-width: 180px !important;
}
 
}

.fa-bars:before, .fa-navicon:before {
    content: "\f0c9";
    color: #08a070;
}

html,
body{
    overflow-x:hidden;
    max-width:100%;
}

.head-logo{
  max-width: 250px;
}









/* contact page css  */

.title{
    text-align:center;
    margin:45px 0 25px;
    color:#333;
    font-size: 32px;
}

/* Banner */

.contact-banner{
    height:220px;
    background:url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400") center/cover;
    position:relative;
    margin-top: 105px;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.overlay h1{
    font-size:42px;
    color: white;
}

.overlay p{
    margin-top:10px;
}

/* Location */

.location-box{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.location-card{
    flex:1;
    min-width:260px;
    background:#fff;
    text-align:center;
    padding:40px 20px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    height: 100%;
}

.location-card i{
    width:60px;
    height:60px;
    line-height:60px;
    background:#0b5d8d;
    color:#fff;
    border-radius:50%;
    font-size:24px;
    margin-bottom:15px;
}

.location-card h3{
    margin-bottom:7px;
}

.map{
    flex:2;
    min-width:300px;
}

.map iframe{
    width:100%;
    height:250px;
    border:none;
}

/* Enquiry */

.enquiry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.enquiry-card{
    background:#fff;
    text-align:center;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.enquiry-card:hover{
    transform:translateY(-6px);
}


.enquiry-card i{
    width:60px;
    height:60px;
    line-height:60px;
    background:#0b5d8d;
    color:#fff;
    border-radius:50%;
    font-size:22px;
    margin-bottom:15px;
}

/* Form */

.consultation{
    display:flex;
    gap:30px;
    margin:60px 0;
    flex-wrap:wrap;
}

.form-area{
    flex:1;
    min-width:320px;
    background:#e5fff6;
    padding:35px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.form-area span{
    color:#2e8b57;
    font-size:15px;
    text-transform:uppercase;
    font-weight:bold;
}

.form-area h2{
    margin:10px 0 25px;
}

.input-field{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

.input-field input{
    flex:1;
}

input,
select,
textarea{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    outline:none;
    margin-bottom:15px;
}

/* button{
    background:#2e8b57;
    color:#fff;
    border:none;
    padding:14px 28px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#236b44;
} */

.form-image{
    flex:1;
    min-width:320px;
}
.kawasan{
  margin-bottom: 0px;
}
.our-location1{
  font-size: 30px;
  font-weight: 600;
  color: #0B132B;
}
.general-enquiry{
  font-size: 20px ;
  font-weight: 600;
  color: #0B132B;
}
.administration-text{
  font-size: 20px ;
  font-weight: 600;
  color: #0B132B;
}
.departement-text{
 font-size: 20px ;
  font-weight: 600;
  color: #0B132B; 
}
.trade-text{
   font-size: 20px ;
  font-weight: 600;
  color: #0B132B;
}

.form-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.shedule-text1{
  font-size: 30px;
  font-weight: 600;
  color: #000000;
}


/* Responsive */

@media(max-width:768px){

.location-box,
.consultation{
    flex-direction:column;
}

.row{
    flex-direction:column;
}

.overlay h1{
    font-size:30px;
}


}
h2.tagline {
    color: white;
    font-size: 14px;
}




/* service page */



img{
    width:100%;
    display:block;
}



/* Hero */

.service-hero{
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?w=1600") center/cover;
    padding:120px 0;
    color:#fff;
}

.hero-content{
    max-width:700px;
}

.hero-content span{
    color:#90ee90;
    font-weight:bold;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:52px;
    margin:15px 0;
    color: #ffffff;
}

.hero-content p{
    font-size:18px;
}

/* About */

.producer-service{
    padding:90px 0;
}

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom: 65px;
}

.content h2{
    font-size:35px;
    margin-bottom:20px;
    color:#1b5e20;
}

.content p{
    margin-bottom:20px;
}

.content ul{
    margin-top:20px;
}

.content li{
    margin-bottom:12px;
    list-style:none;
    position:relative;
    padding-left:28px;
}

.content li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#2e7d32;
    font-weight:bold;
}

.image img{
    border-radius:15px;
    box-shadow: 1px 3px 7px #ddd;
}

/* Features */

.features{
    background:#f7f7f7;
    padding:90px 0;
}



.section-title h2{
    font-size:38px;
    color:#1b5e20;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:10px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.icon{
    font-size:40px;
    margin-bottom:15px;
}

/* Process */

.process{
    padding:90px 0;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step{
    background:#1b5e20;
    color:#fff;
    padding:30px;
    border-radius:10px;
    position:relative;
}

.step span{
    font-size:40px;
    font-weight:bold;
    opacity:.25;
}

.step h3{
    margin:10px 0;
}


/* Responsive */

@media(max-width:991px){

.grid{
    grid-template-columns:1fr;
}

.feature-grid,
.steps{
    grid-template-columns:repeat(2,1fr);
}

.hero-content h1{
    font-size:40px;
}

}

@media(max-width:768px){

.feature-grid,
.steps{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:32px;
}

.content h2,
.section-title h2,
.cta h2{
    font-size:28px;
}

}






/* about page */





.landing-title2{
  float: left;
  width: 100%;
  text-align: left;
  font-size: 40px;
  font-weight: 800;
  color: #0B132B;
}
.about-img img{
width:100%;
display:block;
border: 5px solid #ffffff;
border-radius: 15px;
box-shadow: 1px 3px 5px #ddd;
}
.section-title-main{
  text-align: left;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -1px;
  margin-bottom: 15px;
}

/* Hero */

.about-hero{
background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url(images/about-banner.jpg) center/cover;
padding:130px 0;
color:#fff;
text-align:center;
}

.hero-content h1{
font-size:55px;
margin:20px 0;
}

.hero-content span{
color:#8BC34A;
font-weight:bold;
text-transform:uppercase;
}

.hero-content p{
max-width:700px;
margin:auto;
}

/* About */

.about-section{
padding:90px 0;
}

.figg-text1{
  font-size: 15px;
  color: #212529;
  font-weight: 400;
}
.circular-text{
  font-size: 15px;
  color:#212529;
  font-weight: 400;
}
.circular-text2{
    font-size: 15px;
  color: #212529;
  font-weight: 400;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-content h2{
font-size:40px;
margin-bottom:20px;
color:#1b5e20;
}

.about-content ul{
margin-top:20px;
}

.about-content li{
list-style:none;
margin-bottom:12px;
padding-left:25px;
position:relative;
}

.about-content li::before{
content:"✔";
position:absolute;
left:0;
color:#2e7d32;
}

/* Mission */

.mission{
background:#f7f7f7;
padding:80px 0;
}

.mission-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.our-vision{
background:#ddf5ed;
padding:40px;
border-radius:10px;
border: 1px solid #10B981;
box-shadow: 1px 3px 5px #ddd;
}
.our-vision h3{
  color: #14804a;

}
.our-vision p{
  color: #212529;
}

/* Why */

.why{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#1b5e20;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

/* Counter */

.counter{
background:#2e7d32;
padding:80px 0;
color:#fff;
}

.counter-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.counter h2{
font-size:45px;
}

/* CTA */

.about-cta{
padding:90px 20px;
text-align:center;
}

.about-cta h2{
font-size:40px;
color:#1b5e20;
}

.btn{
display:inline-block;
margin-top: 5px;
padding:14px 35px;
background:#2e7d32;
color:#fff;
text-decoration:none;
border-radius:5px;
}

.btn:hover{
background:#1b5e20;
}

/* Responsive */

@media(max-width:992px){

.about-grid,
.mission-grid{
grid-template-columns:1fr;
}

.why-grid,
.counter-grid{
grid-template-columns:repeat(2,1fr);
}

.hero-content h1{
font-size:40px;
}

}

@media(max-width:768px){

.why-grid,
.counter-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:32px;
}

.about-content h2,
.section-title h2,
.about-cta h2{
font-size:30px;
}

}







/*=========================
About Section
=========================*/

.about-area{

    padding:100px 0;
    background:#e5fff6;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-content .sub-title{

    display:inline-block;
    color:#16a34a;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;

}

.about-content h2{

    font-size:48px;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;

}

.about-content p{

    color:#6b7280;
    margin-bottom:18px;
    line-height:1.9;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;

}

.list-item{

    background:#f7f7f7;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;

}

.list-item:hover{

    background:#16a34a;
    color:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;
    border-radius:20px;
    display:block;

}

.experience-box{

    position:absolute;
    right:-20px;
    bottom:30px;

    background:#16a34a;
    color:#fff;

    width:180px;

    padding:25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.experience-box h3{

    font-size:45px;

}

.experience-box p{

    margin-top:8px;
    font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.about-wrapper{

grid-template-columns:1fr;

}

.about-content h2{

font-size:36px;

}

.about-list{

grid-template-columns:1fr;

}

.experience-box{

position:relative;

right:0;

bottom:0;

margin-top:20px;

width:100%;

}

}








/*=========================
 Vision Section
==========================*/

.vision-section{

    padding:70px 0;
    background:#f8fbf8;

}

.vision-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;

}

.vision-image{

    position:relative;

}

.vision-image img{

    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.vision-badge{

    position:absolute;
    bottom: -22px;
    left: -19px;
    background:#16a34a;
    color:#fff;
    padding:25px 35px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.vision-badge h3{
  color: #fff;
    font-size:28px;
    margin-bottom:5px;

}

.vision-badge span{

    font-size:16px;

}

.section-subtitle{

    display:inline-block;
    background: #e8f8ec;
    color:#16a34a;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;

}

.vision-content h2{

    font-size:44px;
    color:#111827;
    line-height:1.25;
    margin-bottom:25px;

}

.vision-content p{

    color:#6b7280;
    line-height:1.9;
    margin-bottom:18px;

}

.vision-points{

    margin-top:40px;

}

.vision-item{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;

}

.icon {

    width:60px;
    height:60px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

    flex-shrink:0;
}
.icon img{
  width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-item h4{

    margin-bottom:8px;
    font-size:22px;
    color:#111827;

}

.vision-item p{

    margin:0;
    color:#6b7280;

}


/* Responsive */

@media(max-width:991px){

.vision-wrapper{

grid-template-columns:1fr;

}

.vision-content h2{

font-size:34px;

}

.vision-badge{

position:relative;

left:0;
bottom:0;

margin-top:20px;

display:inline-block;

}

}





/*==========================
 Mission Section
===========================*/

.mission-section{

    padding:70px 0;
    background:#e5fff6;

}
.mission-icon img{
  width: 30px;
  width: 36px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title .our-mission{
  font-size: 40px;
  color: #0B132B;
  font-weight: 800;
}


.section-title h2{

    font-size:42px;
    color:#111827;
    margin-bottom:20px;

}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;

}

/* Grid */

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* Card */

.mission-card{

    position:relative;
    background:#fff;
    border-radius:20px;
    padding:40px 35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    overflow:hidden;
    border: 2px solid #ffffff;
    cursor: pointer;

}


/* Highlight Middle Card */

.mission-card:hover{

    transform:translateY(-15px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);
    border: 2px solid #16a34a;

}

/* Number */

.mission-number{

    position:absolute;

    right:25px;

    top:20px;

    font-size:60px;

    font-weight:bold;

    color:#f0f3f4;
    transition: 0.5s;

}
.mission-card:hover .mission-number{
  color: #0B132B;
}



/* Icon */

.mission-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:30px;

}

.mission-card h3{

    font-size:24px;

    margin-bottom:20px;

    color:#111827;

    line-height:1.3;

}

.mission-card p{

    color:#6b7280;

    line-height:1.8;

}

/* Responsive */

@media(max-width:991px){

.mission-grid{

grid-template-columns:repeat(2,1fr);

}

.mission-card.active{

transform:none;

}

}

@media(max-width:768px){

.mission-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

}







/* carrer css */



.career-page {
  font-family: Arial, sans-serif;
  color: #1c2b24;
  background: #f7faf8;
}

/* =========================
   HERO
========================= */


.carrer-home{
  color: #ffffff;
}
.fig-recircle{
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 5px;
}
.career-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(15, 45, 32, .78), rgba(15, 45, 32, .78)),
    url("YO") center/cover no-repeat;
  padding: 70px 20px;
}

.career-hero-content {
  max-width: 750px;
  color: #fff;
}

.career-hero-content span,
.section-heading span,
.apply-content > span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.career-hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  margin: 18px 0;
}

.career-hero-content p {
  font-size: 18px;
  line-height: 1.7;
}


/* =========================
   JOB SECTION
========================= */

.job-section {
  padding: 90px 0;
}


.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading span {
  color: #16804b;
  font-weight: 800;
}

.section-heading h2 {
  font-size: 38px;
  margin-top: 10px;
  color: #173a2a;
  font-weight: 700;
}


/* Job Card */

.job-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid #e2ebe6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.job-title {
  background: #edf7f1;
  padding: 24px 30px;
  border-left: 5px solid #16804b;
}

.job-title h3 {
  font-size: 25px;
    color: #173a2a;
    display: inline-block;
    margin-left: 15px;
    font-weight: 800;
}


.job-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  padding: 30px;
}

.job-column h4 {
  font-size: 18px;
  font-weight: 800;
  color: #16804b;
  margin-bottom: 15px;
  display: inline-block;
  margin-left: 5px;
}
.list-cheak{
  font-size: 22px;
  vertical-align: middle;
}

.job-column ul {
  padding-left: 20px;
}

.job-column li {
  margin-bottom: 10px;
  color: #59665f;
  line-height: 1.6;
}

.full-width {
  grid-column: 1 / -1;
}


/* =========================
   BENEFITS
========================= */

.benefits-section {
  padding: 90px 0;
  background: #eef6f1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #e0e9e4;
  flex-wrap: wrap;
    justify-content: center;
}

.benefit-item span {
      font-size: 25px;
    font-weight: 700;
    color: #16804b;
    background-color: #edf7f1;
    height: 50px;
    width: 50px;
    text-align: center;
    padding: 1px;
    border-radius: 30px;
    display: inline-block;
}
.job-decriopiotn{
  font-size: 25px;
  font-weight: 600;
  background-color: #16804b;
  color: #ffffff;
  height: 40px;
  width: 40px;
  display: inline-block;
  border-radius: 8px;
  padding: 1px;
  text-align: center;
}

.benefit-item p {
      color: #59665f;
    margin-top: 12px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0px;
    font-size: 16px;
    font-weight: 500;
}


/* =========================
   APPLY
========================= */

.apply-section {
  padding: 90px 0;
}

.apply-box {
  background: #173a2a;
  border-radius: 18px;
  padding: 55px;
  color: #fff;
}

.apply-content {
  max-width: 800px;
}

.apply-content h2 {
  font-size: 40px;
  margin: 12px 0 20px;
}

.apply-content > p {
  margin-bottom: 15px;
  color: #d9e7df;
}

.apply-content ul {
  padding-left: 20px;
}

.apply-content li {
  margin-bottom: 10px;
  color: #d9e7df;
}

.apply-email {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.apply-email strong {
  display: block;
  margin-bottom: 8px;
}

.apply-email a {
  color: #8de0b3;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.apply-email a:hover {
  text-decoration: underline;
}



/* css */


/* ==========================
   CAREER APPLICATION
========================== */

.career-apply-form {
    padding: 90px 20px;
    background: #f5f9f7;
}

.apply-wrapper {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;

    align-items: start;
}


/* ==========================
   LEFT CONTENT
========================== */

.apply-info {
    padding: 35px 10px;
}

.apply-subtitle {
    display: inline-block;

    color: #16804b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 12px;
}

.apply-info h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #173a2a;
    margin-bottom: 15px;
}

.apply-info > p {
    color: #5c6962;
    font-size: 16px;
    margin-bottom: 13px;
}


/* List */


.apply-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-list li {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 13px 0;

    color: #46554d;
    font-size: 15px;

    border-bottom: 1px solid #e0e8e4;
}

.apply-list li i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e5f4eb;
    color: #16804b;
    flex-shrink: 0;
    font-size: 20px;
}


/* Email */

.apply-email-box {
    margin-top: 30px;
    padding: 22px;

    background: #173a2a;
    border-radius: 12px;

    color: #fff;
}

.apply-email-box p {
    margin-bottom: 8px;
    color: #d8e7df;
    font-size: 14px;
}

.apply-email-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #8de0b3;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
}

.apply-email-box a:hover {
    text-decoration: underline;
}


/* ==========================
   FORM BOX
========================== */

.application-form {
    background: #fff;

    padding: 35px;

    border-radius: 16px;

    border: 1px solid #e1ebe5;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.application-form h3 {
    font-size: 27px;
    color: #173a2a;

    margin-bottom: 8px;
}

.form-description {
    color: #68756e;
    font-size: 14px;

    margin-bottom: 28px;
}


/* ==========================
   FORM ROW
========================== */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #293a32;
}

.form-group label span {
    color: #e53935;
}


/* ==========================
   INPUT
========================== */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d8e2dd;
    border-radius: 7px;

    background: #fff;

    color: #26362e;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa59f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #16804b;

    box-shadow: 0 0 0 3px rgba(22, 128, 75, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}


/* File Input */

.form-group input[type="file"] {
    padding: 10px;
    background: #f8faf9;
    cursor: pointer;
}


/* ==========================
   SUBMIT BUTTON
========================== */

.apply-submit {
    width: 100%;

    border: none;
    border-radius: 7px;

    padding: 15px 25px;

    background: #16804b;
    color: #fff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: 0.3s ease;
}

.apply-submit:hover {
    background: #11653b;
    transform: translateY(-2px);
}

/* =========================
   SUCCESS MESSAGE
========================= */

.form-success {
    display: none;

    text-align: center;

    padding: 50px 30px;
}

.success-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f7ec;
    color: #16804b;

    font-size: 32px;
}

.form-success h3 {
    font-size: 28px;
    color: #173a2a;

    margin-bottom: 12px;
}

.form-success p {
    max-width: 500px;

    margin: 0 auto 25px;

    color: #66736c;

    line-height: 1.6;
}

/* Back To Home Button */

.success-btn {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 13px 24px;

    background: #16804b;
    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.success-btn:hover {
    background: #11653b;
    transform: translateY(-2px);
}









/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .career-hero-content h1 {
    font-size: 42px;
  }

  .job-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {

  .career-hero {
    min-height: 350px;
  }

  .career-hero-content h1 {
    font-size: 34px;
  }

  .career-hero-content p {
    font-size: 16px;
  }

  .job-section,
  .benefits-section,
  .apply-section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .job-title {
    padding: 20px;
  }

  .job-title h3 {
    font-size: 20px;
  }

  .job-content {
    padding: 22px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .apply-box {
    padding: 35px 25px;
  }

  .apply-content h2 {
    font-size: 32px;
  }



   /* add apply responsive */



   @media (max-width: 900px) {

    .apply-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .apply-info {
        padding: 10px 0;
    }
}


@media (max-width: 600px) {

    .career-apply-form {
        padding: 60px 15px;
    }

    .apply-info h2 {
        font-size: 32px;
    }

    .application-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
   







  
}

 .whatsapp-float {
      position: fixed !important;
      width: 60px;
      height: 60px;
      right: 25px;
      bottom: 100px;
      background: #25D366;
      color: #fff !important;
      border-radius: 50%;
      display: flex !important;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      text-decoration: none !important;
      z-index: 999999 !important;
      box-shadow: 0 5px 20px rgba(0,0,0,.25);
    }

    .whatsapp-float:hover {
      color: #fff !important;
      transform: scale(1.08);
    }

    @media (max-width: 767px) {
      .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
        font-size: 28px;
      }
    }







































