:root {
    --bg-dark: #ffffff;
    /* Pure White */
    --bg-darker: #ffffff;
    /* Pure White */
    --text-primary: #1a1a1a;
    /* Dark text */
    --text-secondary: rgba(0, 0, 0, 0.7);
    --accent: #00897B;
    /* Teal/Sea Green from Logo */
    --accent-hover: #00695C;
    /* Darker Teal */
    --accent-secondary: #FBC02D;
    /* Yellow from Logo */
    --accent-red: #D32F2F;
    /* Red from Logo */
    --accent-green: #43A047;
    /* Green from Logo */
    --glass-bg: rgba(255, 255, 255, 0.7);
    /* More opaque white for glass on light */
    --glass-border: rgba(0, 0, 0, 0.05);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Force backgrounds to be white */
.bg-light,
.bg-darker {
    background-color: #ffffff !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.text-accent {
    color: var(--accent) !important;
}

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

.section-padding {
    padding: 100px 0;
}

.opacity-75 {
    opacity: 0.75;
}

.mw-700 {
    max-width: 700px;
}

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

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Scroll Animations Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 1rem !important;
    position: relative;
    transition: var(--transition);
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #fff;
    min-height: 100vh;
    overflow: hidden;
}

/* Abstract Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    animation: floating 10s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -50px;
    left: -100px;
    border-radius: 50%;
    animation-delay: 2s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.hero-visual {
    position: relative;
}

.hero-visual .image-wrapper {
    position: relative;
    z-index: 1;
    transform: rotate(2deg);
    transition: all 0.5s ease;
}

.hero-visual:hover .image-wrapper {
    transform: rotate(0deg);
}

/* Ensure text in hero is readable on white */
.hero-section .text-white {
    color: var(--text-primary) !important;
}

.hero-img {
    height: auto;
    width: 100%;
    /* Ensure full width */
    object-fit: contain;
    /* Ensure full image is shown */
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* White border for glass effect on light */
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #fff;
    /* White text on gold button for better contrast */
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 137, 123, 0.4);
    color: #fff;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.gradient-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.05), rgba(251, 192, 45, 0.05));
    /* Light Teal-Yellow gradient */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gradient-box::after {
    content: 'Diman';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    letter-spacing: 10px;
}

.value-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Services */
.service-card {
    transition: var(--transition);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.service-img-placeholder {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-placeholder img {
    transform: scale(1.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

/* Products */
/* Products */
.product-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(0, 137, 123, 0.05) 0%, transparent 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.product-card:hover::before {
    height: 100%;
}

.product-icon {
    font-size: 3.5rem;
    color: var(--accent);
    transition: all 0.4s ease;
    display: inline-block;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.product-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Process */
.step-card {
    padding: 2rem;
    height: 100%;
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 137, 123, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 700;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    z-index: 1;
}

@media (max-width: 768px) {
    .process-steps::before {
        display: none;
    }
}

/* Glass Banner (Why Choose Us) */
.glass-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border-top: 4px solid var(--accent-secondary);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent);
    filter: blur(80px);
    opacity: 0.15;
    top: -50px;
    right: -50px;
}

/* Contact Form */
.form-control {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background: #fff;
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(0, 137, 123, 0.1);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

/* Contact Form */
.contact-card {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent) !important;
}

.contact-card .icon-wrapper {
    transition: all 0.4s ease;
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent) !important;
    color: #fff !important;
}

.hover-accent:hover {
    color: var(--accent) !important;
}

.ls-2 {
    letter-spacing: 2px;
}

.bg-accent-light {
    background: rgba(0, 137, 123, 0.1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* =========================================
   Mobile Responsiveness (Max-Width: 991px)
   ========================================= */
@media (max-width: 991.98px) {

    /* Navbar Mobile Fixes */
    .navbar-collapse {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0.75rem;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(0, 137, 123, 0.25);
    }

    .nav-item {
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem 0 !important;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
        /* Remove underline effect on mobile */
    }

    /* Hero Section Mobile Adjustments */
    .hero-section {
        padding-top: 120px;
        /* More space for fixed header */
        text-align: center;
        min-height: auto;
        /* Allow content to dictate height on mobile */
        padding-bottom: 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        /* Smaller heading */
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-feature-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }

    /* General Layout Adjustments */
    .section-padding {
        padding: 60px 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }

    .step-card {
        margin-bottom: 1rem;
    }

    .glass-banner {
        padding: 2rem !important;
    }

    .contact-form-wrapper {
        padding: 2rem !important;
    }
}