@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary: #3db256;
    --primary-light: #eef8f0;
    --accent: #fb923c;
    --bg-main: #f8fafc;
    --bg-secondary: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/*profite quote*/

  


/* --- NAVIGATION LINKS --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding: 4px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.nav-link {
    position: relative;
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 99px;
    transition: color 0.3s ease;
    z-index: 2;
}

body.scrolled .nav-link {
    padding: 8px 16px;
    /* Smaller touch targets */
}

.nav-link:hover {
    color: #fff;
}

.nav-indicator {
    position: absolute;
    top: 4px;
    left: 5px;
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    pointer-events: none;
    z-index: 1;
    transition:
        width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

       


/**/
/* HAMBURGER FIX */
.hamburger {
  margin-left: auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  display: block;
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  transition: 0.4s ease;
  z-index: 1000;
}

/* OPEN */
.mobile-menu.active {
  right: 0;
}

/* LINKS */
.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  font-size: 18px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: #333;
  padding-left: 35px;
}
/**/

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

/* LAYOUT */
.container {
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(45, 90, 39, 0.25);
}

.btn-primary:hover {
    background: #23481f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}
/* NAVBAR */
.navbar {
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-weight: 600;
  font-size: 18px;
  color: black;
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

/* RIGHT SIDE */
.hamburger {
  width: 35px;
  height: 25px;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 5px;
  transition: 0.4s;
}

/* FULLSCREEN MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: 0.5s ease;
}

.mobile-menu a {
  color: white;
  font-size: 28px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ACTIVE MENU */
.mobile-menu.active {
  right: 0;
}

/* SEARCH */
.nav-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-input {
    width: 0;
    opacity: 0;
    padding: 0;
    border: none;
    background: var(--bg-main);
    border-radius: 20px;
    transition: var(--transition);
    outline: none;
    font-size: 0.9rem;
}

.nav-search-wrap.active .nav-search-input {
    width: 200px;
    opacity: 1;
    padding: 8px 16px;
    margin-right: -36px;
    padding-right: 40px;
    border: 1px solid var(--border);
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ICON BUTTON */
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* HERO */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

/* FOOTER */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
}
/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .logo img { height: 36px; }
    .text-logo { font-size: 1.5rem; }
    
    .nav-search-wrap.active .nav-search-input {
        position: absolute;
        right: 0;
        top: 120%;
        width: 250px;
        margin-right: 0;
        box-shadow: var(--shadow-md);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    position: relative;
}

.hero-content h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition);
}

.hero-img-box:nth-child(2) {
    transform: translateY(-20px);
}

.hero-images:hover .hero-img-box {
    transform: translateY(0);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: var(--transition);
}
.hero-img-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content p { margin: 0 auto 40px; }
    .hero-images { max-width: 600px; margin: 0 auto; }
    .hero-content h1 { font-size: 3rem; }
}

/* Section Shared Attributes */
.section {
    padding: 30px 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.section-title {
    font-size: 2.5rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

/* Category Slider/Grid */
.categories-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 16px;
    /* Hide scrollbar completely to rely purely on arrows on desktop and swipe on mobile */
    scrollbar-width: none; /* Firefox */
}
.categories-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-card {
    flex: 0 0 auto;
    width: 160px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.cat-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.cat-icon-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transition: var(--transition);
}
.category-card:hover .cat-icon-wrap img {
    transform: scale(1.1);
}

.cat-name {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.product-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: var(--bg-main);
    overflow: hidden;
}

.product-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-secondary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .product-info {
        padding: 12px;
    }
    .product-title {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .product-price {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .product-cat {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    .add-to-cart-btn {
        padding: 8px;
        font-size: 0.85rem;
    }
}

.product-cat {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: auto;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-main);
    color: var(--primary);
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Products Page Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shop-sidebar {
        position: static;
        z-index: 10;
        margin-bottom: 8px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .filter-group {
        margin-bottom: 0;
    }
    .filter-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    .filter-list {
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .filter-list::-webkit-scrollbar {
        display: none;
    }
    .filter-label {
        white-space: nowrap;
        background: var(--bg-main);
        padding: 6px 16px;
        border-radius: var(--radius-full);
        border: 1px solid var(--border);
    }
    .filter-label input[type="radio"]:checked + span {
        font-weight: 700;
        color: var(--primary);
    }
}

.shop-sidebar {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 32px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-label:hover, .filter-label input:checked ~ span {
    color: var(--primary);
    font-weight: 500;
}

.filter-label input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

@media (max-width: 991px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col {
    padding-right: 0;
}
.footer-col:first-child {
    padding-right: 40px;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}
.social-link:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ══════════════════════════════
   Cinematic Hero Slider Section
══════════════════════════════ */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background: #fdfaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cinematic-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
    z-index: 1;
}

.cinematic-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Fresh morning glow aesthetic overlay */
    /* background-color: rgba(0,0,0,0.15); */
    /* background-blend-mode: overlay; */
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

/* Subtle darkening gradient at the bottom for text readability */
.cinematic-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darkened the gradient to cover the whole image and be darker at the bottom */
    /* background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%); */
    pointer-events: none;
}

.cinematic-slide.active .cinematic-bg {
    transform: scale(1);
}

.cinematic-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.cinematic-slide.active .cinematic-content {
    opacity: 1;
    transform: translateY(0);
}

.cinematic-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.cinematic-title {
    font-size: 5rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    margin-bottom: 24px;
    /* Added stronger shadow for maximum readability */
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    color: white;
}

.cinematic-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    /* Stronger text shadow */
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    line-height: 1.6;
}

.btn-cinematic {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1a1a1a;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cinematic:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 90, 39, 0.4);
}

.cinematic-controls {
    position: absolute;
    bottom: 40px;
    right: 10%;
    z-index: 10;
    display: flex;
    gap: 16px;
}

.cinematic-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.cinematic-arrow:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.cinematic-indicators {
    position: absolute;
    bottom: 55px;
    left: 10%;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot-cine {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot-cine.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .hero-cinematic { height: 75vh; }
    .cinematic-title { font-size: 3.5rem; }
    .cinematic-desc { font-size: 1.1rem; }
    .cinematic-controls { display: none; }
}
@media (max-width: 576px) {
    .hero-cinematic { height: 65vh; }
    .cinematic-title { font-size: 2.5rem; }
    .cinematic-content { padding: 0 20px; }
}

/* ══════════════════════════════
   Deal Tabs
══════════════════════════════ */
.deal-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.deal-tabs::-webkit-scrollbar { display: none; }

.deal-tab {
    padding: 10px 24px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.deal-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.deal-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
}

/* ══════════════════════════════
   Layout Extensions (New Sections)
══════════════════════════════ */
.hero-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
}
.hero-layout .banner-slider {
    height: 440px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.hero-side-banner {
    background: url("Background.png") center/cover, var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.hero-side-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,90,39,0.9), rgba(45,90,39,0.7));
    z-index: 1;
}
.h-side-content {
    position: relative;
    z-index: 2;
}
.h-side-content h3 { color: white; font-size: 2.2rem; margin-bottom: 12px; font-family: var(--font-heading); line-height: 1.1; }
.h-side-content p { color: rgba(255,255,255,0.9); margin-bottom: 24px; font-size: 1rem; }
.hero-side-banner img {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 200px;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

@media (max-width: 991px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-side-banner { min-height: 250px; }
}

/* Brands */
.brands-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.brand-item {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    height: 40px;
}
.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Limit Products styling (Horizontal Cards) */
.limited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.limited-card {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    gap: 16px;
    transition: var(--transition);
}
.limited-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}
.limited-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-main);
}
.limited-info {
    flex: 1;
}
.limited-info h3 { font-size: 1.1rem; margin-bottom: 4px; font-family: var(--font-body); }
.limited-info .price { color: var(--primary); font-weight: 700; font-size: 1.05rem; }

/* FAQ Overlay */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    background: var(--bg-secondary);
}
.faq-header {
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-header i {
    transition: var(--transition);
}
.faq-item.active .faq-header i {
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 24px 16px;
    color: var(--text-muted);
    display: none;
}
.faq-item.active .faq-content { display: block; }
.faq-item.active .faq-header { color: var(--primary); }

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}
.news-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.news-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.news-content {
    padding: 24px;
}
.news-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}
.news-title {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}
.news-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.news-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ══════════════════════════════
   Sticky Cart
══════════════════════════════ */
.sticky-cart-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.sticky-cart {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-md);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.sticky-cart:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.sticky-cart a { color: inherit; display: block; }
.sticky-label {
    padding: 9px 18px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}
.cart-items {
    padding: 11px 18px;
    background: var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; /* Clean numbers */
}
.cart-items h6 { margin: 0; font-size: inherit; font-weight: inherit; font-family: inherit; }

.mobile-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
}
.mobile-cart-label {
    background: var(--primary);
    text-align: center;
    padding: 9px 18px;
    color: white;
    font-weight: 700;
    font-size: 0.78rem;
}
.mobile-cart-bar {
    background: var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; /* Clean numbers */
}

@media (min-width: 769px) {
    .mobile-sticky-cart { display: none; }
}
@media (max-width: 768px) {
    .sticky-cart-container { display: none; }
    body { padding-bottom: 80px; }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    .hero-layout .banner-slider { height: auto; min-height: 480px; }
    h2.section-title { font-size: 1.8rem; }
    .slide-content h2 { font-size: 2rem !important; }
    .slide-inner { padding: 40px 20px !important; text-align: center; gap: 20px; }
    .slide-image img { max-height: 200px; }
    .ghee-hero-image { width: 250px !important; max-height: 250px !important; }
    .footer-col:first-child { padding-right: 0; }
    .slider-controls { display: none; }
    .hero-side-banner { padding: 24px; text-align: center; align-items: center; }
    .hero-side-banner img { position: static; width: 140px; margin-top: 16px; margin-right: auto; }
}
/* ══════════════════════════════
   Square Quote Card (Exact Style)
══════════════════════════════ */

.quote-card {
    width: 100%;
    height: 650px; /* SQUARE */
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* LEFT IMAGE */
.quote-left {
    background: #1e3c72;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.quote-left img {
    height: 100%;
    object-fit: cover;
}
/* ===============================
   QUOTE SECTION FIXED (PRO LEVEL)
================================*/
/* ===============================
   PERFECT QUOTE ALIGNMENT
================================*/

.quote-right {
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f3f4f6;
}

/* QUOTE BLOCK */
.quote-text {
    position: relative;
    max-width: 720px;
}

/* TOP LINE */
.quote-text::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 65%;
    height: 3px;
    background: #111;
}

/* BOTTOM LINE */
.quote-text::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0; /* FIXED ALIGNMENT */
    width: 100%; /* FULL WIDTH MATCH TEXT */
    height: 2px;
    background: #111;
}

/* TEXT */
.quote-text p {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.7;
    color: #1e293b;

    text-indent: 55px;
}

/* QUOTE SYMBOL */
.quote-text p::before {
    content: "“";
    font-size: 70px;
    position: absolute;
    left: 0;
    top: -10px;
    color: #cbd5e1;
}

/* FOOTER (LOCK TO RIGHT EDGE OF TEXT) */
.quote-footer {
    margin-top: 55px;

    width: 100%;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

/* NAME */
.quote-footer h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

/* ROLE */
.quote-footer span {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 18px;
}

/* BUTTON */
.quote-footer .btn-outline {
    margin: 0;
    padding: 10px 26px;
    border-radius: 30px;
}




/* BUTTON already matches your system */

/* ══════════════════════════════
   Businesses Section
══════════════════════════════ */

.businesses {
    padding: 60px;
}

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.business-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

/* Tabs */
.tabs span {
    margin-left: 20px;
    cursor: pointer;
    color: var(--text-muted);
    position: relative;
}

.tabs span.active {
    color: var(--primary);
}

.tabs span.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #3db256, #7c3aed);
}

/* Layout */
.business-layout {
    display: grid;
    grid-template-columns: 1.3fr 2fr 1.3fr; /* left थोड़ा bigger */
    gap: 20px;
}

/* LEFT GRID */
.business-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#business {
    background: linear-gradient(135deg, #f8fafc, #eef8f0);
    position: relative;
    overflow: hidden;
}

/* optional soft glow */
#business::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(61, 178, 86, 0.15);
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

.promo-banner-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
}

.promo-image-premium {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    opacity: 1;
}

.promo-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
}

.promo-heading span {
    color: #3db256;
}

.promo-text {
    color: #555;
    line-height: 1.6;
}

/* .promo-image-premium::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(100px);
    z-index: 0;
} */


/* Cards */
.card {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card span {
    position: absolute;
    bottom: 10px;
    left: 12px;
    color: white;
    font-size: 14px;
    z-index: 2;
}

/* Hover animation */
.card:hover img {
    transform: scale(1.1);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Gradient special card */
.card.gradient {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 15px;
    color: white;
}

.card.gradient i {
    font-size: 20px;
}

/* RIGHT FEATURE */
.business-feature {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.business-feature img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

/* Zoom animation */
.business-feature:hover img {
    transform: scale(1.05);
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

/* Tags */
.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tags span {
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    transition: var(--transition);
}

/* Tag hover animation */
.tags span:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Explore link */
.overlay a {
    color: white;
    border-bottom: 1px solid white;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .business-layout {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════
   Promo Banner Alternative Design
══════════════════════════════ */
.promo-banner-premium {
    position: relative;
    background: linear-gradient(135deg, var(--text-main) 0%, #f4f0ee 100%);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: #fff;
    border: 1px solid rgba(255, 255, 255);
}

.promo-shape-circle, .promo-shape-accent {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.5;
}

.promo-shape-circle {
    width: 350px;
    height: 350px;
    background: var(--primary);
    top: -120px;
    left: -80px;
}

.promo-shape-accent {
    width: 450px;
    height: 450px;
    background: var(--accent);
    bottom: -200px;
    right: 5%;
}

.promo-content-premium {
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.promo-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255);
    border: 1px solid rgba(255, 255, 255);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.promo-heading {
    color: #ffffff;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.promo-heading span {
    color: var(--accent);
    font-style: italic;
}

.promo-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 460px;
}

.promo-action-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-premium-solid {
    background: #ffffff;
    color: var(--text-main);
    padding: 14px 32px;
    font-weight: 700;
}

.btn-premium-solid:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 230, 230, 0.2);
    color: var(--text-main);
}

.promo-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.promo-image-premium {
    position: relative;
    z-index: 1;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-img-backdrop {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.img-floating {
    max-height: 380px;
    object-fit: contain;
    /* animation: promoFloat 6s ease-in-out infinite; */
    filter: drop-shadow(0 20px 30px rgba(225, 218, 218, 0.4));
}

@keyframes promoFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 991px) {
    .promo-banner-premium {
        flex-direction: column;
        padding: 48px 32px;
        text-align: center;
    }
    .promo-content-premium {
        max-width: 100%;
        margin-bottom: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .promo-action-group {
        flex-direction: column;
        gap: 16px;
    }
    .promo-image-premium {
        width: 100%;
    }
    .promo-heading {
        font-size: 2.3rem;
    }
    .img-floating {
        max-height: 300px;
    }
}
@media (max-width: 576px) {
    .promo-banner-premium {
        padding: 40px 20px;
    }
    .promo-heading {
        font-size: 1.8rem;
    }
    .promo-text {
        font-size: 1rem;
    }
}
/* ══════════════════════════════
   Leader Quote Section (Adani Style)
══════════════════════════════ */

.leader-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.leader-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/*animation*/


/* Image Side */
.leader-image {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Side */
.leader-content {
    padding: 20px;
}

/* Quote Box */
.leader-quote-box {
    position: relative;
    padding-left: 24px;
    margin-bottom: 40px;
    border-left: 4px solid var(--text-main);
}

.leader-quote-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    max-width: 600px;
}

/* Speech Tail */
.leader-quote-box::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 60px;
    border: 10px solid transparent;
    border-top-color: var(--text-main);
}

/* Info */
.leader-info h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.leader-info span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .leader-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leader-content {
        text-align: center;
    }

    .leader-quote-box {
        border-left: none;
        padding-left: 0;
    }

    .leader-quote-box::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════
   PREMIUM SCROLL ANIMATION (Adani Style)
══════════════════════════════ */

/* ══════════════════════════════
   GLOBAL SMOOTH SETTINGS
══════════════════════════════ */
html {
  scroll-behavior: smooth;
}

* {
  transition: all 0.3s ease;
}

/* ══════════════════════════════
   SCROLL REVEAL BASE
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Direction Animations */
.reveal-left {
  transform: translateX(-80px);
}
.reveal-right {
  transform: translateX(80px);
}
.reveal-zoom {
  transform: scale(0.85);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right,
.reveal.active.reveal-zoom {
  transform: translate(0) scale(1);
}

/* ══════════════════════════════
   CARD HOVER EFFECT
══════════════════════════════ */
.card,
.news-card,
.ag-career-card {
  transition: all 0.4s ease;
}

.card:hover,
.news-card:hover,
.ag-career-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image zoom inside cards */
.card img,
.news-img {
  transition: transform 0.6s ease;
}

.card:hover img,
.news-card:hover img {
  transform: scale(1.1);
}

/* ══════════════════════════════
   BUTTON ANIMATION
══════════════════════════════ */
.btn,
.btn-cinematic,
.btn-premium-solid {
  transition: all 0.3s ease;
}

.btn:hover,
.btn-cinematic:hover,
.btn-premium-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,);
}

/* ══════════════════════════════
   HERO CINEMATIC EFFECT
══════════════════════════════ */
.cinematic-bg {
  animation: zoomBg 10s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.cinematic-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
   FLOATING LOGO ANIMATION
══════════════════════════════ */
.slide-img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ══════════════════════════════
   QUOTE SECTION ANIMATION
══════════════════════════════ */
.quote-card {
  transition: all 0.5s ease;
}

.quote-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ══════════════════════════════
   BUSINESS FEATURE HOVER
══════════════════════════════ */
.business-feature img {
  transition: transform 1s ease;
}

.business-feature:hover img {
  transform: scale(1.05);
}

/* Overlay smooth */
.overlay {
  transition: all 0.5s ease;
}

.business-feature:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* ══════════════════════════════
   CAREER CARDS EFFECT
══════════════════════════════ */
.ag-career-card {
  transition: all 0.4s ease;
}

.ag-career-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.ag-career-overlay {
  transition: opacity 0.4s ease;
}

.ag-career-card:hover .ag-career-overlay {
  opacity: 0.7;
}

/* ══════════════════════════════
   HEADER SCROLL EFFECT
══════════════════════════════ */
.ag-header {
  transition: all 0.3s ease;
}

.ag-header--scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ══════════════════════════════
   FOOTER SOCIAL ICON HOVER
══════════════════════════════ */
.ag-footer-social a {
  transition: all 0.3s ease;
}

.ag-footer-social a:hover {
  transform: translateY(-4px) scale(1.2);
  color: #3db256;
}

/* ══════════════════════════════
   FORM INPUT EFFECT
══════════════════════════════ */
.ag-form-group input,
.ag-form-group textarea,
.ag-form-group select {
  transition: all 0.3s ease;
}

.ag-form-group input:focus,
.ag-form-group textarea:focus,
.ag-form-group select:focus {
  border-color: #3db256;
  box-shadow: 0 0 0 3px rgba(61,178,86,0.2);
}

/* ══════════════════════════════
   FADE IN PAGE LOAD
══════════════════════════════ */
body {
  animation: pageFade 0.8s ease;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}