:root {
    --primary-green: #2c8831;
    /* Original Forest Green */
    --secondary-green: #4caf50;
    --accent-green: #8bc34a;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --transition-fast: 0.3s ease;
}

body {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header & Navbar */
.oracle-header {
    background: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.oracle-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.oracle-logo img {
    height: 60px;
}

.oracle-nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.oracle-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.oracle-nav-links a:hover {
    color: var(--primary-green);
}

/* Hero Section Redesign */
.hero-section {
    position: relative;
    background-image: url('/assets/manufacturing_khatavahi/images/560920-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Light overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: unset !important;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out;
}

.hero-main-title {
    font-size: 3.5rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-sub-title-1 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-separator {
    width: 80px;
    height: 4px;
    background: var(--primary-green);
    margin: 20px auto;
}

.hero-sub-title-2 {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1.4;
    font-style: italic;
}

/* Anniversary Badge */
.hero-badge-container {
    animation: zoomIn 1.2s ease-out;
}

.anniversary-badge {
    width: 150px;
    height: 150px;
    background: white;
    border: 5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.badge-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 2px;
}

.badge-tagline {
    font-size: 0.7rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
    max-width: 80%;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-sub-title-1 {
        font-size: 1.3rem;
    }

    .hero-sub-title-2 {
        font-size: 1.1rem;
    }

    .anniversary-badge {
        width: 120px;
        height: 120px;
    }

    .badge-number {
        font-size: 2.2rem;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--text-light);
    width: 30px;
    border-radius: 10px;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Common Section Styling */
.section-padding {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-green);
    margin: 15px auto 0;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition-fast);
}

.whatsapp-widget:hover {
    transform: scale(1.1);
}

/* Footer */
.oracle-footer {
    background: #222;
    color: #ccc;
    padding: 60px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #444;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

/* Product Categories Section */
.product-category-section {
    background-color: #f5f5f5;
    padding: 80px 5%;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

.category-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-image-wrapper {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.category-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* The Hover Effect: Shrink */
.category-card:hover .category-img {
    transform: scale(0.9);
}

.category-title {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 3em;
}

.category-btn {
    background-color: #69727d;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.category-btn:hover {
    background-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.navbar-brand {
    padding-top: 2rem !important;
}

/* Custom CSS */

.navbar-brand img {
    max-height: 33px !important;
}

html:root,[data-theme=light] {
    --navbar-height: 75px !important;
}

.hero-with-right-image .hero-image {
    object-fit: unset !important;
}

.hero-with-right-image .left-side-image {
        border-radius: 50px 0px 50px 0px;
}

.section-padding-top, .section-padding-bottom {
    padding-top: 0 !important;
    padding-bottom: 4rem !important
}

.navbar-brand img {
    max-height: 60px !important;
}

img {
    vertical-align: super !important;
}

.carousel-item {
    height: unset !important;
}

.section.section-padding-top {
    padding-top: 3rem !important;
}

.section-padding-top {
    padding-top: 3rem !important;
}

.footer-logo {
    height: 3.5rem !important;
}

.category-info h3 {
    margin-top: unset !important;
}

.section-padding {
    max-width: unset !important;
    padding: 50px 21% !important;
}

.hero-title {
        color: var(--primary-green) !important;
}

.hero-subtitle {
        color: black !important;
        font-size: xx-large !important;
}

.hero-badges {
    color: black !important;
    font-size: xxx-large !important;
}

/*.hero-content {
    display: none !important;
}*/

.contact-form-side {
    min-height: fit-content !important;
}
