/* Base Design Tokens */
:root {
    --primary-orange: #FB9A15;
    --text-black: #000000;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F0F0F0;
    --bg-accent: #C5E9F5;
    --bg-soft-blue: #EAF1FB;
    --heading-font: 'Bodoni Moda', serif;
    --body-font: 'Arial', sans-serif;
    --transition-speed: 0.3s;
}

/* Global Styles */
body {
    font-family: var(--body-font);
    color: var(--text-black);
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Navbar Styling - Exact Match */
.navbar {
    background-color: transparent;
    padding: 10px 0;
    transition: var(--transition-speed);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.navbar-scrolled {
    background-color: rgba(128, 128, 128, 0.9);
    /* Greyish-transparent scroll */
    position: fixed;
    padding: 5px 0;
}

.brand-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 60px;
    margin-right: 15px;
}

.brand-text-box {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-subtext {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Nav Pill Container */
.nav-pill-container {
    background: white;
    padding: 5px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.nav-link {
    color: #4A90E2 !important;
    /* Blueish color from screenshot */
    font-weight: 500;
    text-transform: none;
    font-size: 1rem;
    padding: 5px 15px !important;
}

.nav-link.active {
    background: transparent;
    color: #4A90E2 !important;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background-color: #4A90E2;
    margin: 0 5px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/imgi_2_nsplsh_9f0015535851422e949c2480ae07e7ba~mv2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(0, 0, 0, 0.2);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-logo-large {
    height: 150px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.hero-text-box {
    text-align: left;
}

.hero-text-box h1 {
    font-size: 5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.hero-text-box p {
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--primary-orange);
    font-weight: 700;
}

/* Responsive Adjustments */
/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/imgi_4_11062b_bf19dad021044d0abcfc9fb5044cc805~mv2.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--text-white);
    text-align: center;
}

.welcome-section h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.welcome-section p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #f8f9fa;
}

.btn-know-more {
    background: white;
    color: var(--text-black);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-speed);
}

.btn-know-more:hover {
    background-color: var(--primary-orange);
    color: white;
}

.btn-know-more i {
    font-size: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Cards - Overlay Design */
.feature-section {
    padding: 60px 0;
    background-color: var(--bg-accent);
}

.feature-item {
    position: relative;
    height: 400px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--text-white);
}

.feature-overlay h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-btn {
    background: white;
    color: var(--primary-orange);
    border: none;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: var(--transition-speed);
}

.feature-btn:hover {
    background: var(--primary-orange);
    color: white;
}

/* Mission & Vision - Refined Shadow Design */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--bg-accent);
}

.mv-card-refined {
    background: white;
    border-radius: 5px;
    padding: 40px;
    position: relative;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.mv-header-bar {
    background: #FFBD59;
    /* Pastel orange from screen */
    padding: 10px 40px;
    border: 1px solid #707070;
    border-radius: 10px;
    position: absolute;
    top: -25px;
    left: 20px;
}

.mv-header-bar h3 {
    margin: 0;
    font-size: 2.2rem;
    font-family: var(--heading-font);
    color: var(--text-black);
}

.mv-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.mv-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-right: 20px;
}

.mv-icon-box {
    width: 100px;
    display: flex;
    justify-content: flex-end;
}

.mv-icon-box i {
    font-size: 5rem;
    color: var(--primary-orange);
}

/* Product Showcase */
.product-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

.product-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(251, 154, 21, 0.8);
    /* Using primary orange with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay h4 {
    color: var(--text-white);
    font-size: 1.8rem;
    font-family: var(--heading-font);
    font-weight: 700;
    margin: 0;
    text-align: center;
    padding: 0 15px;
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--bg-accent);
}

.why-choose-content {
    background-color: var(--bg-white);
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-content h2 {
    margin-bottom: 30px;
}

.why-choose-content ul {
    list-style: none;
    padding: 0;
}

.why-choose-content li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.why-choose-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

/* Footer */

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

.footer-links h5 {
    font-family: var(--body-font);
    font-weight: 700;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-black);
    text-decoration: none;
    transition: var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
    text-align: center;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    transition: var(--transition-speed);
}

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

/* Animations - Wix Reveal Style */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Hero Text Masking/Overlay */
.hero-section {
    background-attachment: fixed;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

/* Product Section Exact Colors */
.product-section {
    background-color: var(--bg-white);
}

.product-item {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-overlay {
    background: rgba(0, 0, 0, 0.3);
    /* Lighter overlay */
}

.product-overlay h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 2px;
}

/* Mobile Responsiveness Refinements */
@media (max-width: 991px) {
    .navbar {
        background-color: rgba(0, 0, 0, 0.8) !important;
        padding: 15px 0;
        position: fixed;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .brand-subtext {
        font-size: 0.9rem;
    }

    .brand-logo {
        height: 45px;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
        padding: 4px 8px;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        background-color: var(--bg-white);
        margin-top: 15px;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-pill-container {
        background: transparent;
        padding: 0;
        border-radius: 0;
        display: block;
        box-shadow: none;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        padding: 10px 0 !important;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-separator {
        display: none;
    }

    /* Hero Responsive */
    .hero-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }

    .hero-logo-large {
        height: 100px;
    }

    .hero-text-box {
        text-align: center;
    }

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

    .hero-text-box p {
        font-size: 1.2rem;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-section h2 {
        font-size: 2rem;
    }

    /* Feature Cards */
    .feature-item {
        height: 300px;
    }

    .feature-overlay h3 {
        font-size: 1.5rem;
    }

    /* Mission & Vision */
    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-card-refined {
        padding: 40px 20px 20px;
        margin-top: 40px;
    }

    .mv-header-bar {
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        padding: 5px 25px;
    }

    .mv-header-bar h3 {
        font-size: 1.5rem;
    }

    .mv-content {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .mv-text {
        padding-right: 0;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .mv-icon-box {
        width: 100%;
        justify-content: center;
    }

    .mv-icon-box i {
        font-size: 3rem;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    /* Product Section */
    .section-title h2 {
        font-size: 2.2rem;
    }

    .why-choose-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .brand-name {
        font-size: 1.2rem;
    }

    .hero-text-box h1 {
        font-size: 2rem;
    }

    .footer-logo,
    .footer-links {
        text-align: center;
        margin-bottom: 40px;
    }

    .whatsapp-float {
        left: 20px;
        bottom: 20px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}