/* ============================================
   PREMIUM LUXURY CORPORATE WEBSITE
   Logo Color Based Branding System
   ============================================ */

:root {
  --primary-color: #588f27;
  --primary-dark: #0f3620;
  --primary-light: #588f27;
  --accent-color: #588f27;
  --accent-dark: #588f27;
  --accent-light: #e8c4a0;
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-light: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.75rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-light);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 1.5rem;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 2px solid var(--accent-color);
  padding: 3rem 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.mega-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mega-menu-list {
  list-style: none;
}

.mega-menu-list li {
  margin-bottom: 1.25rem;
}

.mega-menu-list a {
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.mega-menu-list a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

.mega-menu-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: var(--transition);
}

.mega-menu-image:hover {
  transform: scale(1.05);
}

.search-icon,
.menu-icon {
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-dark);
  transition: var(--transition);
  margin-left: 1.5rem;
}

.search-icon:hover,
.menu-icon:hover {
  color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-white);
  z-index: 999;
  transition: left 0.3s ease;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-close {
  position: fixed;
  top: 1rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
  z-index: 1001;
}

.mobile-menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}

.mobile-menu-item:hover {
  color: var(--primary-color);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-dark);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 1rem;
}



/* ============================================
   SECTIONS
   ============================================ */



.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.section-light {
  background-color: var(--bg-light);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.card-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.card-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.card-link:hover {
  gap: 1rem;
  color: var(--accent-color);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* ============================================
   IMAGES & MEDIA
   ============================================ */

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

.img-hover-zoom {
  overflow: hidden;
  border-radius: 8px;
}

.img-hover-zoom img {
  transition: var(--transition);
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--primary-dark);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease;
}

/* Intersection Observer Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  color: white;
  font-size: 1.5rem;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  bottom: 2.5rem;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent button {
  padding: 0.5rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-consent button:hover {
  background-color: var(--accent-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

 

  .hero {
    padding: 5rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mega-menu-image {
    height: 250px;
  }

  .nav-link {
    margin: 0 0.75rem;
  }

  .navbar-nav {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-consent p {
    text-align: center;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .btn,
  .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  footer {
    padding: 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* MAIN SECTION */
#hero-section{
  width:100%;
  height:100vh;
  overflow:hidden;
  position:relative;
}

/* CAROUSEL */
#hero-carousel,
#hero-inner,
.hero-slide{
  height:100%;
}

/* SLIDE */
.hero-slide{
  position:relative;
}

/* IMAGE */
.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.6);
  transition:transform 6s ease;
}

.carousel-item.active .hero-image{
  transform:scale(1.1);
}

/* CONTENT */
.hero-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  max-width:520px;
  color:#fff;
  z-index:10;
  opacity:0;
}

/* TITLE */
.hero-title{
  font-size:3rem;
  font-weight:600;
}

/* DESCRIPTION */
.hero-desc{
  font-size:1.1rem;
  margin-top:10px;
  opacity:0.9;
}

/* BUTTONS */
.hero-buttons{
  margin-top:25px;
}

.hero-btn{
  display:inline-block;
  padding:12px 32px;
  border-radius:40px;
  text-decoration:none;
  font-size:14px;
  margin-right:12px;
  transition:0.3s;
}

.hero-btn-primary{
  background:#6A9B2E;
  color:#fff;
}

.hero-btn-primary:hover{
  background:#4F7A1F;
}

.hero-btn-outline{
  border:1px solid #fff;
  color:#fff;
}

.hero-btn-outline:hover{
  background:#fff;
  color:#000;
}

/* TEXT ANIMATION (JS CONTROLLED) */
.hero-text-animate{
  animation:heroFadeUp 1s ease forwards;
}

@keyframes heroFadeUp{
  from{
    opacity:0;
    transform:translate(-20px, -30%);
  }
  to{
    opacity:1;
    transform:translate(0, -50%);
  }
}

/* INDICATORS */
#hero-indicators button{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#6A9B2E;
}

/* CONTROLS */
.hero-prev,
.hero-next{
  width:60px;
}

/* =========================
   MOBILE VIEW FIXES
========================= */
@media (max-width: 576px){

  /* Section height thodi kam */
  #hero-section{
    height: 85vh;
  }

  /* Content center me */
  .hero-content{
    left: 5%;
    right: 5%;
    top: 55%;
    transform: translateY(-50%);
    text-align: center;
    max-width: 100%;
  }

  /* Title size */
  .hero-title{
    font-size: 1.8rem;
    line-height: 1.3;
  }

  /* Paragraph */
  .hero-desc{
    font-size: 0.95rem;
  }

  /* Buttons stack me */
  .hero-buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-btn{
    width: 80%;
    margin-right: 0;
    text-align: center;
  }

  /* Controls thode chote */
  .hero-prev,
  .hero-next{
    width: 40px;
  }

  /* Indicators niche thode upar */
  #hero-indicators{
    bottom: 15px;
  }
}

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 992px){

  .hero-content{
    left: 6%;
    max-width: 420px;
  }

  .hero-title{
    font-size: 2.4rem;
  }

  .hero-desc{
    font-size: 1rem;
  }
}

/* ===========================
   ABOUT SECTION
=========================== */
#aboutPreviewSection{
  background:var(--bg-white);
  padding:120px 0;
  position:relative;
  overflow:hidden;
}

/* Decorative gradient blur */
#aboutPreviewSection::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(106,155,46,0.25), transparent 70%);
  top:-80px;
  left:-80px;
  z-index:0;
}

/* Wrapper */
.about-preview{
  position:relative;
  z-index:2;
  opacity:0;
  transform:translateY(60px);
  transition:all 1s ease;
}

.about-preview.active{
  opacity:1;
  transform:translateY(0);
}

/* ===========================
   TEXT AREA
=========================== */
.about-text-col{
  padding-right:40px;
}

.about-title{
  font-size:2.8rem;
  font-weight:700;
  color:var(--text-dark);
  margin-bottom:20px;
  line-height:1.2;
}

.about-desc{
  color:var(--text-light);
  font-size:1.05rem;
  line-height:1.8;
  margin-bottom:14px;
}

/* Button */
.about-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 36px;
  background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  font-size:14px;
  font-weight:500;
  margin-top:18px;
  transition:all .4s ease;
  box-shadow:0 10px 25px rgba(106,155,46,0.35);
}

.about-btn span{
  transition:transform .4s ease;
}

.about-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(106,155,46,0.45);
}

.about-btn:hover span{
  transform:translateX(6px);
}

/* ===========================
   IMAGE AREA
=========================== */
.about-img-col{
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-img-box{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transform:perspective(800px) rotateY(0deg);
  transition:all .6s ease;
}

.about-img-box::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.25), transparent);
  opacity:0;
  transition:.4s;
}

.about-img{
  width:100%;
  display:block;
  transition:transform .8s ease;
}

.about-img-box:hover{
  transform:perspective(800px) rotateY(-4deg) translateY(-6px);
}

.about-img-box:hover .about-img{
  transform:scale(1.1);
}

.about-img-box:hover::after{
  opacity:1;
}
:root{
  --primary:#6A9B2E;
  --primary-dark:#4F7A1F;
  --text-dark:#111;
  --text-light:#555;
  --bg-white:#ffffff;
  --shadow-soft:0 15px 40px rgba(0,0,0,0.08);
}
/* Floating badge */
.about-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#fff;
  padding:10px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  color:var(--primary-dark);
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:992px){
  .about-text-col{
    padding-right:0;
    margin-bottom:40px;
    text-align:center;
  }
  .about-title{
    font-size:2.3rem;
  }
}

@media(max-width:576px){
  #aboutPreviewSection{
    padding:70px 0;
  }
  .about-title{
    font-size:1.9rem;
  }
  .about-btn{
    padding:12px 28px;
  }
}

/* ============================
   ROOT VARIABLES
============================ */
:root{
  --primary:#6A9B2E;
  --primary-dark:#4F7A1F;
  --text-dark:#111;
  --text-light:#666;
  --bg-white:#fff;
  --shadow-soft:0 15px 40px rgba(0,0,0,0.08);
  --shadow-strong:0 25px 60px rgba(0,0,0,0.15);
}

/* ============================
   SOLUTIONS SECTION
============================ */
#solutionsSection{
  background:var(--bg-white);
  padding:0px 0;
}

/* Header */
.solutions-header{
  text-align:center;
  margin-bottom:70px;
}

.solutions-title{
  font-size:2.8rem;
  font-weight:700;
  color:var(--text-dark);
  margin-bottom:12px;
}

.solutions-subtitle{
  font-size:1.05rem;
  color:var(--text-light);
}

/* Grid */
.solutions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Card */
.solution-card{
  background:#fff;
  border-radius:18px;
  padding:40px 32px;
  box-shadow:var(--shadow-soft);
  transition:all .4s ease;
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

.solution-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(106,155,46,0.15), transparent 70%);
  opacity:0;
  transition:.4s;
}

.solution-card:hover::before{
  opacity:1;
}

.solution-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-strong);
}

/* Icon */
.solution-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--primary-dark));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:22px;
  box-shadow:0 10px 25px rgba(106,155,46,0.4);
}

/* Title */
.solution-title{
  font-size:1.4rem;
  font-weight:600;
  margin-bottom:10px;
  color:var(--text-dark);
}

/* Text */
.solution-text{
  font-size:0.95rem;
  color:var(--text-light);
  line-height:1.6;
}

/* Link */
.solution-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:20px;
  color:var(--primary);
  font-weight:500;
  text-decoration:none;
  transition:.3s;
}

.solution-link span{
  transition:.3s;
}

.solution-link:hover{
  color:var(--primary-dark);
}

.solution-link:hover span{
  transform:translateX(6px);
}

/* ============================
   REVEAL ANIMATION
============================ */
.reveal-item{
  opacity:0;
  transform:translateY(50px);
  transition:all 1s ease;
}

.reveal-item.active{
  opacity:1;
  transform:translateY(0);
}

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

@media(max-width:576px){
  #solutionsSection{
    padding:70px 0;
  }
  .solutions-grid{
    grid-template-columns:1fr;
  }
  .solutions-title{
    font-size:2rem;
  }
}


:root{
  --primary:#6A9B2E;
  --primary-dark:#4F7A1F;
  --text-dark:#111;
  --text-light:#666;
  --bg:#fff;
  --shadow-soft:0 15px 40px rgba(0,0,0,.08);
  --shadow-strong:0 25px 60px rgba(0,0,0,.15);
}

/* SECTION */
#featuredProjects{
  background:var(--bg);
  padding:120px 0;
}

.projects-header{
  text-align:center;
  margin-bottom:70px;
}

.projects-title{
  font-size:2.8rem;
  font-weight:700;
  color:var(--text-dark);
}

.projects-subtitle{
  color:var(--text-light);
  font-size:1.05rem;
}

/* GRID */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

/* CARD */
.project-card{
  background:#fff;
  border-radius:20px;
  padding:25px;
  box-shadow:var(--shadow-soft);
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.project-card:hover{
  transform:translateY(-12px);
  box-shadow:var(--shadow-strong);
}

/* IMAGE */
.project-img-box{
  overflow:hidden;
  border-radius:14px;
  margin-bottom:18px;
}

.project-img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.8s ease;
}

.project-img-box:hover .project-img{
  transform:scale(1.12);
}

/* TEXT */
.project-title{
  font-size:1.4rem;
  font-weight:600;
  color:#111;
}

.project-text{
  font-size:0.95rem;
  color:#666;
  line-height:1.6;
}

/* LINK */
.project-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:15px;
  color:var(--primary);
  font-weight:500;
  text-decoration:none;
}

.project-link span{
  transition:0.3s;
}

.project-link:hover{
  color:var(--primary-dark);
}

.project-link:hover span{
  transform:translateX(6px);
}

/* REVEAL */
.reveal-item{
  opacity:0;
  transform:translateY(60px);
  transition:1s ease;
}

.reveal-item.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .projects-grid{
    grid-template-columns:1fr;
  }
  .projects-title{
    font-size:2rem;
  }
}



/* SECTION */
#whyChooseFidato{
  padding:120px 0;
}

/* TITLE */
.title{
  text-align:center;
  margin-bottom:90px;
}
.title h2{
  font-size:3rem;
  color:var(--dark);
  margin-bottom:10px;
}
.title p{
  color:var(--gray);
  font-size:1rem;
}

/* LAYOUT */
.flow-layout{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 380px 1fr;
  gap:50px;
  align-items:center;
  padding:0 20px;
}

/* CENTER LOGO */
.center-circle{
  width:260px;
  height:260px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  margin:auto;
  animation:pulseLogo 3.5s infinite alternate;
  z-index:1;
}
.center-circle img{
  width:120px;
}

.center-circle::before{
  content:"";
  position:absolute;
  inset:-35px;
  border-radius:50%;
  border:2px dashed #ddd;
  z-index:-1;
}

@keyframes pulseLogo{
  from{
    box-shadow:0 15px 35px rgba(0,0,0,.15);
  }
  to{
    box-shadow:0 25px 70px rgba(106,155,46,.35);
  }
}

/* COLUMNS */
.flow-col{
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* ITEMS */
.flow-item{
  background:#f9faf8;
  padding:22px 28px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  transition:all .4s cubic-bezier(.4,0,.2,1);
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

/* shine */
.flow-item::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(106,155,46,.15), transparent);
  transform:translateX(-100%);
  transition:.6s;
}

.flow-item:hover::before{
  transform:translateX(100%);
}

.flow-item:hover{
  transform:translateY(-10px) scale(1.03);
  background:var(--theme);
  color:#fff;
  box-shadow:0 20px 45px rgba(106,155,46,.35);
}

/* ICON */
.flow-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--theme);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:.5s;
}

.flow-item:hover .flow-icon{
  background:#fff;
  color:var(--theme);
  transform:rotate(15deg) scale(1.15);
  box-shadow:0 0 15px rgba(255,255,255,.7);
}

/* TEXT */
.flow-text h4{
  margin:0;
  font-size:1.05rem;
}
.flow-text p{
  margin:4px 0 0;
  font-size:.82rem;
  color:var(--gray);
  transition:.4s;
}
.flow-item:hover .flow-text p{
  color:#f1f1f1;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .flow-layout{
    grid-template-columns:1fr;
  }
  .flow-col{
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
  }
  .flow-item{
    width:45%;
  }
}

@media(max-width:600px){
  .flow-item{
    width:100%;
  }
}
:root{
  --theme:#6A9B2E;
  --dark:#111;
  --gray:#777;
  --soft:#f6f8f5;
}


/* ================= CTA SECTION ================= */

#premium-cta{
  position:relative;
  padding:100px 20px;
  text-align:center;
  color:var(--white);
  overflow:hidden;
  background:linear-gradient(135deg,var(--theme),var(--theme-dark));
}

/* Floating Light Effects */
#premium-cta::before,
#premium-cta::after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:radial-gradient(circle,rgba(255,255,255,.25),transparent 70%);
  border-radius:50%;
  animation:ctaGlow 10s infinite alternate ease-in-out;
}

#premium-cta::before{
  top:-150px;
  left:-150px;
}
#premium-cta::after{
  bottom:-150px;
  right:-150px;
  animation-delay:3s;
}

@keyframes ctaGlow{
  from{transform:translate(0,0);}
  to{transform:translate(70px,70px);}
}

/* CTA CONTENT */
.cta-container{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
}

.cta-container h2{
  font-size:3rem;
  font-weight:600;
  margin-bottom:20px;
}

.cta-container p{
  font-size:1.15rem;
  margin-bottom:40px;
  color:rgba(255,255,255,0.9);
}

/* CTA BUTTON */
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:var(--theme-dark);
  padding:16px 45px;
  border-radius:50px;
  font-size:1.05rem;
  font-weight:600;
  text-decoration:none;
  transition:all .4s ease;
  box-shadow:0 12px 30px rgba(0,0,0,.3);
}

.cta-btn i{
  transition:.4s;
}

.cta-btn:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow:0 22px 45px rgba(0,0,0,.45);
  background:#f5f5f5;
}

.cta-btn:hover i{
  transform:translateX(8px);
}

/* SCROLL REVEAL */
.cta-reveal{
  opacity:0;
  transform:translateY(70px);
  transition:1s ease;
}
.cta-reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .cta-container h2{
    font-size:2.1rem;
  }
  .cta-container p{
    font-size:1rem;
  }
}:root{
  --theme:#6A9B2E;
  --theme-dark:#4F7A1F;
  --white:#ffffff;
}

:root{
  --brand:#6A9B2E;
  --text:#ffffff;
  --muted:#e6e6e6;
}



/* ================= PREMIUM FOOTER ================= */

.premium-footer{
  position:relative;
  background:linear-gradient(135deg,
    #3f5f1a 0%,
    #4f7421 30%,
    #6A9B2E 60%,
    #4f7421 80%,
    #3f5f1a 100%);
  color:var(--text);
  padding-top:100px;
  overflow:hidden;
}

/* Soft glow */
.premium-footer::after{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(106,155,46,.45), transparent 70%);
  top:-200px;
  right:-200px;
}

/* GRID */
.footer-content{
  max-width:1300px;
  margin:auto;
  padding:0 30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
  position:relative;
  z-index:2;
}

/* ================= LOGO DESIGN ================= */

.footer-logo{
  margin-bottom:20px;
}

/* Glass badge */
.logo-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.25);
  backdrop-filter:blur(10px);
  position:relative;
  overflow:hidden;
  transition:.5s ease;
  box-shadow:
    0 8px 20px rgba(0,0,0,.4),
    inset 0 0 15px rgba(255,255,255,.08);
}

/* Shine animation */
.logo-box::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition:0.8s;
}
.logo-box:hover::before{
  left:100%;
}

/* Logo image */
.logo-box img{
  width:150px;
  transition:.5s ease;
  filter:drop-shadow(0 6px 12px rgba(0,0,0,.5));
}

/* Hover */
.logo-box:hover{
  transform:translateY(-6px) scale(1.05);
  box-shadow:
    0 14px 35px rgba(0,0,0,.6),
    0 0 20px rgba(106,155,46,.7);
  border-color:var(--brand);
}
.logo-box:hover img{
  transform:scale(1.05);
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.7))
    drop-shadow(0 0 12px rgba(106,155,46,.7));
}

/* ================= TITLES ================= */

.footer-section h4{
  font-size:1.2rem;
  margin-bottom:20px;
  position:relative;
}
.footer-section h4::after{
  content:"";
  width:40px;
  height:2px;
  background:#fff;
  position:absolute;
  left:0;
  bottom:-8px;
}

/* TEXT */
.footer-section p{
  font-size:.9rem;
  line-height:1.7;
  color:var(--muted);
}

/* LINKS */
.footer-section a{
  display:block;
  color:var(--muted);
  text-decoration:none;
  font-size:.9rem;
  margin-bottom:10px;
  transition:.3s;
}
.footer-section a:hover{
  color:#fff;
  transform:translateX(6px);
}

/* SOCIAL */
.social-links{
  display:flex;
  gap:14px;
  margin-top:20px;
}
.social-links a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ffffff22;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:.4s;
}
.social-links a:hover{
  background:#fff;
  color:var(--brand);
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}

/* FOOTER BOTTOM */
.footer-bottom{
  margin-top:80px;
  padding:24px 20px;
  text-align:center;
  background:#3f5f1a;
  font-size:.85rem;
  color:#f0f0f0;
}
.footer-bottom a{
  color:#fff;
  text-decoration:none;
}
.footer-bottom a:hover{
  text-decoration:underline;
}

.dev-credit{
  margin-top:8px;
  font-size:0.8rem;
  opacity:.9;
}

/* RESPONSIVE */
@media(max-width:992px){
  .footer-content{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .footer-content{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-section h4::after{
    left:50%;
    transform:translateX(-50%);
  }
  .social-links{
    justify-content:center;
  }
}

/* =================================================
   THEME
================================================= */
:root{
  --theme:#6A9B2E;
  --theme-dark:#4F7A1F;
  --white:#ffffff;
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
.header{
  position:fixed;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  width:96%;
  max-width:1400px;

  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);

  border-radius:20px;
  padding:12px 24px;

  box-shadow:0 10px 35px rgba(0,0,0,.1);

  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  height:42px;
}

/* =================================================
   DESKTOP MENU
================================================= */
.menu{
  display:flex;
  gap:42px;
  list-style:none;
}

.menu li{
  position:relative;
}

.menu a{
  text-decoration:none;
  font-weight:600;
  color:#222;
  position:relative;
}

/* underline animation */
.menu a::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--theme);
  transition:.3s;
}
.menu a:hover::after{
  width:100%;
}

/* =================================================
   DESKTOP DROPDOWN
================================================= */
.dropdown{
  position:absolute;
  top:42px;
  left:0;

  background:#fff;
  min-width:260px;

  border-radius:14px;
  padding:10px 0;

  box-shadow:0 15px 40px rgba(0,0,0,.15);

  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s;
}

.menu li:hover .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown a{
  display:block;
  padding:10px 18px;
  font-weight:500;
}

.dropdown a:hover{
  background:#f2f2f2;
}

/* =================================================
   RIGHT
================================================= */
.actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn{
  background:var(--theme);
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  font-size:14px;
}

.menu-btn{
  display:none;
  font-size:20px;
  cursor:pointer;
}

/* =================================================
   MOBILE OVERLAY
================================================= */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1998;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* =================================================
   MOBILE DRAWER
================================================= */
.drawer{
  position:fixed;
  top:0;
  right:-100%;
  width:88%;
  max-width:340px;
  height:100vh;

  background:#fff;
  padding:26px;

  box-shadow:-12px 0 40px rgba(0,0,0,.25);

  transition:.35s;
  z-index:1999;
  overflow-y:auto;
}

.drawer.active{
  right:0;
}

.close{
  font-size:24px;
  margin-bottom:25px;
  cursor:pointer;
}

.mobile-head,
.drawer a{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:17px 0;
  font-size:15px;
  font-weight:600;

  border-bottom:1px solid #eee;
  text-decoration:none;
  color:#222;
}

/* accordion */
.mobile-sub{
  max-height:0;
  overflow:hidden;
  transition:.3s;
  padding-left:12px;
}

.mobile-sub a{
  font-size:14px;
  padding:8px 0;
  border:none;
}

.mobile-drop.active .mobile-sub{
  max-height:600px;
}

.arrow{
  transition:.3s;
}
.mobile-drop.active .arrow{
  transform:rotate(180deg);
}

/* contact full width */
.drawer .btn{
  width:100%;
  text-align:center;
  margin-top:25px;
  padding:12px;
}

/* =================================================
   RESPONSIVE
================================================= */
@media(max-width:992px){
  .menu{display:none;}
  .menu-btn{display:block;}
}

.hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:38px;
  font-weight:800;
}


/* ================= FOOTER ================= */
.fidato-mega-footer{
  width:100%;
  background:linear-gradient(180deg,#121212 0%, #0e0e0e 100%);
  color:#d5d5d5;
  padding:85px 20px 28px;
  position:relative;
}

/* gradient top border */
.fidato-mega-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#6A9B2E,#4F7A1F);
}

/* grid */
.fidato-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:2.2fr 1fr 1fr 1fr 1fr 1.2fr;
  gap:40px;
}

/* headings */
.fidato-mega-footer h3{
  color:#fff;
  font-size:16px;
  margin-bottom:18px;
  font-weight:700;
}

/* text */
.fidato-mega-footer p{
  font-size:14px;
  line-height:1.7;
  color:#aaa;
}

/* logo */
.fidato-logo{
  height:50px;
  margin-bottom:18px;
}

/* links */
.fidato-mega-footer ul{
  list-style:none;
}

.fidato-mega-footer ul li{
  margin-bottom:10px;
}

.fidato-mega-footer ul li a{
  color:#cfcfcf;
  text-decoration:none;
  font-size:14px;
  transition:.25s;
}

.fidato-mega-footer ul li a:hover{
  color:#8bc34a;
  padding-left:6px;
}

/* newsletter */
.fidato-newsletter{
  margin-top:18px;
  display:flex;
  gap:8px;
}

.fidato-newsletter input{
  flex:1;
  padding:10px;
  border:1px solid #262626;
  background:#141414;
  color:#f1f1f1;
  border-radius:7px;
}

.fidato-newsletter button{
  background:#6A9B2E;
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:7px;
  cursor:pointer;
}

/* contact */
.fidato-contact i{
  color:#6A9B2E;
  margin-right:8px;
}

/* bottom */
.fidato-bottom{
  border-top:1px solid #1f1f1f;
  margin-top:60px;
  padding-top:18px;
  text-align:center;
  font-size:13px;
  color:#999;
}

.fidato-bottom a{
  color:#6A9B2E;
  font-weight:600;
  text-decoration:none;
}

/* responsive */
@media(max-width:1100px){
  .fidato-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
}

@media(max-width:650px){
  .fidato-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .fidato-newsletter{
    flex-direction:column;
  }
}


/* =================================================
   THEME
================================================= */
:root{
  --brand:#6A9B2E;
  --brand-dark:#4F7A1F;
  --dark:#111;
  --bg:#f6f8f9;
  --text:#222;
  --muted:#666;
}

.wrap{
  max-width:1200px;
  margin:auto;
  padding:120px 20px;
}

/* =================================================
   TYPOGRAPHY
================================================= */
.h1{font-size:60px;font-weight:800;margin-bottom:20px}
.h2{font-size:40px;font-weight:700;margin-bottom:16px}
.h3{font-size:24px;font-weight:700;margin-bottom:12px}
.p{color:var(--muted);margin-bottom:16px}

/* =================================================
   BUTTON
================================================= */
.btn{
  background:var(--brand);
  color:#fff;
  padding:14px 30px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}
.btn:hover{
  background:var(--brand-dark);
  transform:translateY(-3px);
}

/* =================================================
   HERO
================================================= */
.hero{
  min-height:95vh;
  display:flex;
  align-items:center;
  background:
  radial-gradient(circle at 20% 20%, rgba(106,155,46,.25), transparent 40%),
  #fff;
}

.grid2{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}

.heroBox{
  background:#fff;
  padding:60px;
  border-radius:30px;
  box-shadow:0 25px 70px rgba(0,0,0,.12);
}

.img{
  width:100%;
  border-radius:25px;
  box-shadow:0 25px 70px rgba(0,0,0,.18);
}

/* =================================================
   BENEFITS
================================================= */
.grid4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}
.card:hover{
  transform:translateY(-10px);
}

.icon{
  width:60px;
  height:60px;
  background:var(--brand);
  border-radius:15px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
}

/* =================================================
   CTA
================================================= */
.cta{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:#fff;
  text-align:center;
  padding:120px 20px;
  border-radius:40px;
}

/* =================================================
   FOOTER
================================================= */
.footer{
  background:var(--dark);
  color:#bbb;
  padding:60px 20px 25px;
}

.footerGrid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
}

.footer a{
  color:#ddd;
  text-decoration:none;
  font-size:14px;
}

.copy{
  text-align:center;
  border-top:1px solid #222;
  padding-top:15px;
  margin-top:25px;
}

/* =================================================
   RESPONSIVE
================================================= */
@media(max-width:1000px){
  .grid2{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr 1fr}
  .footerGrid{grid-template-columns:1fr 1fr}
}

@media(max-width:600px){
  .grid4,.footerGrid{grid-template-columns:1fr}
  .h1{font-size:34px}
}

/* ================= BRAND COLORS ================= */
:root{
  --brand:#6A9B2E;
  --brand-dark:#4F7A1F;
  --dark:#111;
  --bg:#f6f8f9;
  --text:#222;
  --muted:#666;
}


.wrapper{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= SECTION ================= */
.about-section{
  padding:100px 0;
}

.about-title{
  font-size:2.6rem;
  color:var(--brand);
  margin-bottom:25px;
}

/* ================= FLEX LAYOUT ================= */
.about-flex{
  display:flex;
  flex-wrap:wrap;
  gap:60px;
  align-items:center;
}

.about-col{
  flex:1;
  min-width:280px;
}

.about-text{
  color:var(--muted);
  margin-bottom:18px;
}

/* ================= IMAGE ================= */
.about-image{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.about-image img{
  width:100%;
  transition:.5s;
}

.about-image:hover img{
  transform:scale(1.07);
}

/* ================= JOURNEY ================= */
.journey-section{
  background:white;
}

.journey-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:35px;
  margin-top:45px;
}

.journey-card{
  background:var(--bg);
  padding:35px 25px;
  text-align:center;
  border-radius:16px;
  border:1px solid #eee;
  transition:.3s;
}

.journey-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.journey-icon{
  width:65px;
  height:65px;
  margin:auto;
  border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:15px;
}

/* ================= CTA ================= */
.about-cta{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:white;
  text-align:center;
  padding:80px 20px;
  border-radius:20px;
}

.primary-btn{
  display:inline-block;
  margin-top:25px;
  padding:14px 36px;
  background:white;
  color:var(--brand-dark);
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.primary-btn:hover{
  background:#eee;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .about-section{padding:70px 0;}
  .about-title{font-size:2rem;}
}


/* ================= BRAND COLORS ================= */
:root{
  --brand:#6A9B2E;
  --brand-dark:#4F7A1F;
  --bg:#f6f8f9;
  --text:#222;
  --muted:#666;
}




/* ================= HERO ================= */
.vm-hero{
  height:85vh;
  background:
  linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
  url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.vm-hero h1{
  font-size:4rem;
  font-weight:700;
}

.vm-hero p{
  margin-top:12px;
  opacity:.9;
}

/* ================= SECTIONS ================= */
.section{
  padding:120px 0;
}

.section-title{
  font-size:2.6rem;
  color:var(--brand);
  margin-bottom:30px;
  text-align:center;
}

/* ================= VISION MISSION ================= */
.vm-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
}

.vm-card{
  background:white;
  padding:55px;
  border-radius:22px;
  box-shadow:0 25px 45px rgba(0,0,0,.07);
  transition:.35s;
}

.vm-card:hover{
  transform:translateY(-12px);
}

.vm-highlight{
  font-weight:600;
  margin-bottom:18px;
}

.vm-text{
  color:var(--muted);
}

/* ================= VALUES ================= */
.values{
  background:white;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:35px;
}

.value-box{
  background:var(--bg);
  padding:35px;
  border-radius:18px;
  text-align:center;
  transition:.3s;
}

.value-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.value-icon{
  width:65px;
  height:65px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:15px;
}

/* ================= STATS ================= */
.stats{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:white;
  padding:90px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  text-align:center;
  gap:30px;
}

.stat-number{
  font-size:3rem;
  font-weight:700;
}

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

/* ================= CTA ================= */
.cta{
  text-align:center;
  padding:120px 0;
}

.btn{
  background:var(--brand);
  color:white;
  padding:16px 40px;
  border-radius:40px;
  text-decoration:none;
  display:inline-block;
  margin-top:25px;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  background:var(--brand-dark);
  transform:scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .vm-hero h1{font-size:2.4rem;}
  .section{padding:80px 0;}
}


/* ================= BRAND COLORS ================= */
:root{
  --brand:#6A9B2E;
  --brand-dark:#4F7A1F;
  --bg:#f6f8f9;
  --text:#222;
  --muted:#666;
}


/* ================= HERO ================= */
.contact-hero{
  height:75vh;
  background:
  linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
  url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
}

.contact-hero h1{
  font-size:3.5rem;
  font-weight:700;
}

.contact-hero p{
  margin-top:10px;
  opacity:.9;
}

/* ================= GRID ================= */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
  gap:60px;
}

/* ================= CARDS ================= */
.card{
  background:white;
  padding:50px;
  border-radius:22px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
}

/* ================= INFO ================= */
.info-item{
  margin-bottom:28px;
}

.info-item h4{
  color:var(--brand);
  margin-bottom:8px;
  font-weight:600;
}

.info-item i{
  margin-right:8px;
}

/* ================= FORM ================= */
.form-group{
  margin-bottom:18px;
}

input, textarea{
  width:100%;
  padding:14px 15px;
  border-radius:10px;
  border:1px solid #ddd;
  outline:none;
  font-size:14px;
}

input:focus, textarea:focus{
  border-color:var(--brand);
}

.btn{
  background:var(--brand);
  color:white;
  padding:14px 35px;
  border-radius:30px;
  border:none;
  cursor:pointer;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  background:var(--brand-dark);
  transform:scale(1.04);
}

/* ================= CTA ================= */
.contact-cta{
  background:linear-gradient(135deg,var(--brand),var(--brand-dark));
  color:white;
  text-align:center;
  padding:90px 0;
}

.contact-cta .btn{
  background:white;
  color:var(--brand-dark);
  margin:10px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .contact-hero h1{font-size:2.2rem;}
  .section{padding:70px 0;}
}
