@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

:root {
  /* Brand Theme Colors */
  --primaryColor: #ff6b2b;       /* Bright Orange Accent (Buttons, Highlights) */
  --primaryDark: #e84e0f;        /* Darker Orange Hover state */
  --primaryLight: #fff1eb;       /* Soft Orange tint for small card backgrounds */
  
  --brandGreen: #0b5334;         /* Extracted deep green from logo text */
  --brandGreenLight: #16a085;    /* Vibrant teal/green from logo icon */
  
  --secondaryColor: #1a252c;     /* Deep Slate Blue (Replaced dull dark blue) */
  --secondaryLight: #2c3e50;
  --accentColor: #f5a623;        /* Gold for review stars */
  
  --bgDark: #0f141c;
  --bgMid: #1a252c;
  --bgLight: #f8f9fa;
  
  /* Text Readability (Fixed from being pure orange) */
  --darkText: #1e293b;           /* Premium dark charcoal for headings/body */
  --lightText: #64748b;          /* Clean grey for descriptions */
  --white: #ffffff;
  --borderColor: #e2e8f0;
  
  --shadowLight: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadowHeavy: 0 10px 40px rgba(255, 107, 43, 0.2);
  --shadowDark: 0 10px 40px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { transition: var(--transition); }
html { scroll-behavior: smooth; }

body { font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--darkText); line-height: 1.6; letter-spacing: 0.3px; background: #ffffff; }
img { max-width: 100%; transition: var(--transition); }
a { color: var(--primaryColor); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primaryDark); }
section { padding: 80px 0; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.5px; color: var(--secondaryColor); }
p { color: var(--lightText); }

/* =====================
   HEADER / NAV
   ===================== */
header {
  background: #ffffff;
  border-bottom: 3px solid var(--brandGreen); /* Balanced with your brand green */
  box-shadow: var(--shadowLight);
  padding: 0.75rem 0;
}
.email-phone a { color: var(--lightText); font-weight: 500; }
.email-phone a:hover { color: var(--brandGreen); }

nav { font-size: 13px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.nav-link { padding: 1rem 1.2rem; color: var(--darkText) !important; position: relative; font-weight: 600; }
.nav-link:after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: var(--primaryColor); transform: translateX(-50%); }
.nav-link:hover { color: var(--primaryColor) !important; }
.nav-link:hover:after { width: 60%; }
.nav-link.active { color: var(--brandGreen) !important; }
.nav-link.active:after { background: var(--brandGreen); width: 60%; }

/* Fixed Logo Filtering Issue */
.navbar-brand img { 
  filter: none !important; /* Disables the brightness inversion so original colors pop */
  max-height: 55px; 
}

.carticon { background: linear-gradient(135deg, var(--primaryColor), var(--primaryDark)); color: white; height: 44px; width: 44px; text-align: center; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: var(--shadowHeavy); cursor: pointer; font-weight: 600; }
.carticon:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 25px rgba(255,107,43,0.4); }

/* =====================
   BUTTONS
   ===================== */
.btn { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 14px 28px; border-radius: 6px; border: none; cursor: pointer; box-shadow: var(--shadowLight); }
.btn-lg { font-size: 14px; padding: 18px 36px; }
.btn-sm { padding: 8px 18px; font-size: 11px; }
.btn-primary, .btn-primary:focus { color: white; border-color: transparent; background: linear-gradient(135deg, var(--primaryColor), var(--primaryDark)); box-shadow: var(--shadowHeavy); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primaryDark), #c73d00); box-shadow: 0 8px 25px rgba(255,107,43,0.5); transform: translateY(-2px); color: white; }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.7); color: white; background: transparent; }
.btn-outline-light:hover { background: white; color: var(--secondaryColor); transform: none; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =====================
   UTILITY & HERO BANNERS
   ===================== */
.bg-primary { background: linear-gradient(135deg, var(--primaryColor), var(--primaryDark)) !important; }
.bg-secondary { background-color: var(--secondaryColor) !important; }
.bg-light { background-color: var(--bgLight) !important; }
.bg-dark { background-color: var(--bgDark) !important; }
.bg-custom { background: linear-gradient(135deg, var(--secondaryColor), var(--bgDark)); }
.text-primary { color: var(--primaryColor) !important; }

.hero-section { padding: 60px 0; background: linear-gradient(135deg, var(--bgDark), var(--secondaryColor)); }
.hero-section h1 { font-size: 3.5rem; font-weight: 800; color: white; }
.hero-text { font-size: 1.1rem; color: rgba(255,255,255,0.8); }
.hero-title { font-size: 2.5rem; font-weight: 800; color: var(--darkText); }

/* =====================
   PRODUCTS CARDS
   ===================== */
.product-ui-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadowLight); border: 1px solid var(--borderColor); }
.product-ui-card:hover { box-shadow: var(--shadowHeavy); transform: translateY(-6px); border-color: var(--primaryLight); }
.package-title { font-size: 1.1rem; font-weight: 700; color: var(--secondaryColor); }
.package-price { font-size: 1.8rem; font-weight: 700; color: var(--primaryColor); }

/* Prevent any scaled-up image elements from spilling outside their cards */
.single-products-box .image {
  overflow: hidden;
  position: relative;
  padding: 15px;
}

/* 🚀 MAGIC CODE: Automatically targets and magnifies the first two products */
.row.prodData > div:nth-child(1) .single-products-box .image img,
.row.prodData > div:nth-child(2) .single-products-box .image img {
  transform: scale(1.25); /* Zooms the images in by 25% */
}

/* Features & Badges */
.feature { padding: 24px; background: var(--primaryLight); border-radius: 12px; border-left: 4px solid var(--brandGreenLight); }
.feature-icon { font-size: 2rem; color: var(--brandGreen); background: white; width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadowLight); }

/* =====================
   TESTIMONIALS & LISTS
   ===================== */
.testimonials h5 { color: var(--brandGreenLight); font-weight: 700; }
.testimonials p { background-color: #f1f5f9; padding: 24px; border-radius: 12px; color: var(--darkText); border-left: 3px solid var(--primaryColor); }

[class*="ulWrap"] li:before { content: "\f058"; font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 10px; color: var(--brandGreenLight); }
.fancy-list li svg { fill: var(--brandGreenLight); }

/* =====================
   FOOTER
   ===================== */
footer { background: linear-gradient(135deg, var(--bgDark), var(--secondaryColor)); color: #cbd5e1; padding: 60px 0 20px; border-top: 3px solid var(--brandGreen); }
footer a { color: var(--primaryColor); }
footer a:hover { color: white; }
footer h5, footer h4 { color: white; }