﻿@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

@font-face {
    font-family: 'TheSeasonsReg';
    src: url('../fonts/Fontspring-DEMO-theseasons-reg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --primary-color: #37499f;
    /* Modern Blue */
    --secondary-color: #64748b;
    --third-color: #c94d1c;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-text: #f8fafc;
    --card-bg: #1e293b;
    --transition-speed: 0.3s;
    --font-family: 'Baskervville', serif;
    --font-family1: 'Quicksand', sans-serif;
    --font-family2: 'TheSeasonsReg', serif;
}

body {
    font-family: var(--font-family);
    color: #252525;
    overflow-x: hidden;
}

.text-justify {
    font-family: var(--font-family1);
    text-align: justify;
}

.text-primary {
    font-weight: 600;
    font-family: var(--font-family1);
    color: var(--third-color) !important;
}

.text-secondary {
    color: var(--primary-color) !important;
}

.about-text {
    color: #414b58;
    font-size: 1.15rem;
    font-weight: 500;
}

.text-muted {
    color: rgba(33, 37, 41, 0.822) !important;
    font-weight: 500;
}



.hero-small {
    padding-top: 140px !important;
    height: 80vh;
}

@media (max-width: 768px) {
    .hero-small {
        padding-top: 120px !important;
        height: 45vh;
    }
}

.navbar {
    z-index: 1030;
}

/* Ensure Home Hero starts at top (no padding needed as it is 100vh) */
.hero-section {
    padding-top: 0 !important;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    /* font-family: var(--font-family2); */
    text-shadow: 1px 2px 6px #ffffffab;
    transition: all var(--transition-speed);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--third-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--third-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--third-color);
    border-color: var(--third-color);
    transition: all var(--transition-speed);
}

.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 6px #ffffff;
}

@media (max-width: 768px) {
    .hero-title {
    font-size: 2rem;
}
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    mix-blend-mode: difference;
    margin-bottom: 2rem;
}

/* Card Styles */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1rem;
    transition: all var(--transition-speed);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */

.footer-section {
    background: url('../../assets/images/background/milgbg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .footer-section {
        background-position: center bottom;
    }
}

p {
    font-weight: 500;
    font-family: var(--font-family1);
}

.footer-section ul li {
    font-weight: 500;
    font-size: 1.1rem;
    font-family: var(--font-family1);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    color: #000000;
    /* Secondary color fallback */
}

.footer-links a::before {
    content: '\f105';
    /* FontAwesome Chevron Right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(10px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -12px;
}

/* Contact Info Icons - Premium Style */
.footer-section ul:not(.footer-links) li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

/* .footer-section ul:not(.footer-links) li i {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    color: var(--primary-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30%;
    margin-right: 15px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
} */

/* .footer-section ul:not(.footer-links) li:hover i {
    background: var(--primary-color);
    color: white !important;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(55, 73, 159, 0.25);
} */

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    /* Light slate background for contrast */
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(55, 73, 159, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    /* margin-bottom: 1rem; */
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Offcanvas Customization */
@media (max-width: 991.98px) {
    .offcanvas-lg {
        position: fixed !important;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        /* Standard sidebar width */
        z-index: 1045;
        background-color: #ffffff !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        /* backdrop-filter: blur(15px); */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        visibility: hidden;
        /* Hidden by default */
        height: 100vh !important;
        display: block;
        /* Ensure it takes space when shown */
    }

    .offcanvas-lg.show {
        transform: none !important;
        visibility: visible !important;
    }

    .offcanvas-body {
        padding-top: 2rem;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        /* Darker border for white bg */
    }

    .navbar-nav .btn-primary {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}


.offcanvas-header .btn-close-white {
    opacity: 0.8;
}

.bg-white {
    background: url('../../assets/images/background/bg.jpg') no-repeat center center / cover;
}

.custombg {
    background: url('../../assets/images/background/doodle.webp') no-repeat center center / contain;
}

/* Video Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #ffffff26; */
    /* Dark overlay */
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Owl Carousel Customization */
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    margin: 5px 5px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

/* Owl Carousel Navigation Arrows - Hidden by default */
.hero-slider .owl-nav {
    display: none;
}

/* Show navigation arrows only on about page */
body.about-page .hero-slider .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    z-index: 10;
}

body.about-page .hero-slider .owl-nav button.owl-prev,
body.about-page .hero-slider .owl-nav button.owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body.about-page .hero-slider .owl-nav button.owl-prev {
    left: 20px;
}

body.about-page .hero-slider .owl-nav button.owl-next {
    right: 20px;
}

body.about-page .hero-slider .owl-nav button.owl-prev:hover,
body.about-page .hero-slider .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(55, 73, 159, 0.4);
}

body.about-page .hero-slider .owl-nav button i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

body.about-page .hero-slider .owl-nav button:hover i {
    color: white;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {

    body.about-page .hero-slider .owl-nav button.owl-prev,
    body.about-page .hero-slider .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }

    body.about-page .hero-slider .owl-nav button.owl-prev {
        left: 10px;
    }

    body.about-page .hero-slider .owl-nav button.owl-next {
        right: 10px;
    }

    body.about-page .hero-slider .owl-nav button i {
        font-size: 1rem;
    }
}

/* GSAP Horizontal Scroll Slider */
.gsap-slider-section {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: linear-gradient(358deg, #ffffff, #cae1f63d, #c94d1c29);
    /* background: url('../../assets/images/background/bg.jpg') no-repeat center center / cover; */
    opacity: 0;
    /* Hidden initially for reveal effect */
}

.gsap-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.gsap-track {
    display: flex;
    gap: 60px;
    padding: 15vw;
    width: max-content;
    /* Important for horizontal calculation */
}

.product-card-gsap {
    min-width: 300px;
    height: 350px;
    background: #fdfb0d24;
    border-radius: 14px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    /* Premium shadow */
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}

.product-card-gsap:hover {
    transform: translateY(-15px);
}

.product-card-gsap .img-container {
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-card-gsap .img-container::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
}

.product-card-gsap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.product-card-gsap:hover img {
    transform: scale(1.05) rotate(2deg);
}

.product-card-gsap h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    /* margin-top: 15px; */
    text-align: center;
}

.product-card-gsap .btn {
    width: 70%;
    border-radius: 12px;
    font-weight: 600;
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Process Slider Customization */
.process-slider .item {
    padding: 10px;
    padding-top: 30px;
    /* Space for number */
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: -15px;
    left: 20px;
    z-index: 1;
    font-family: var(--font-family1);
}

.process-bubble {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Clean, soft shadow */
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.process-bubble:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(55, 73, 159, 0.15);
}

.process-bubble img.process-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process-bubble:hover img.process-image {
    transform: scale(1.08);
}

.process-bubble .bubble-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 1.25rem 1.25rem 0.5rem;
    font-family: var(--font-family2);
}

.process-bubble .process-description {
    padding: 0 1.25rem 1.5rem;
}

.process-bubble .process-description p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hide dots if any show up */

.process-slider .owl-dots {
    display: none !important;
}

/* Strengths Page Styles - New Design */

/* Strength Hero */
.strength-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background: url('../../assets/images/banner/big-bkg-low.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px;
    /* Added for fixed header */
}

.strength-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(55, 73, 159, 0.8)); */
    z-index: 1;
}

.ls-1 {
    letter-spacing: 1px;
}

/* Floating Stats Strip */
.stats-strip-container {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    z-index: 10;
}

.stats-strip {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    position: relative;
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid #e2e8f0;
    }
}

/* Zig Zag Layout Components */
.bg-primary-soft {
    font-size: 1rem;
    background: rgba(55, 73, 159, 0.1);
}

.strength-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.strength-visual .blob-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #e0e7ff, #f3e8ff);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

.strength-visual .blob-2 {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, #fef3c7, #fee2e2);
    animation-delay: 1s;
}

.strength-visual .blob-3 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, #ccfbf1, #e0f2fe);
    animation-delay: 2s;
}

.strength-visual .blob-4 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(45deg, #fce7f3, #fae8ff);
    animation-delay: 3s;
}

.strength-visual .blob-5 {
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 60%;
    background: linear-gradient(45deg, #dcfce7, #d1fae5);
    animation-delay: 4s;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 40% 60%;
    }

    100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

/* Logo Animation */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.main-hero-logo {
    width: 15%;
    display: block;
    margin: 0 auto;
    animation: logoFadeIn 1.5s ease-in-out;
}

@media (max-width: 768px) {
    .main-hero-logo {
        width: 40%;
    }
}

/* Slide Up Animation */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease;
}

.strength-visual:hover .glass-card {
    transform: translateY(-10px) scale(1.02);
}

.icon-wrapper img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
}

.strength-detail {
    position: relative;
}

.strength-detail h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0f172a;
    font-family: var(--font-family);
}

.stat-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    max-width: 350px;
}

.stat-box h4 {
    font-family: var(--font-family1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .strength-hero {
        height: auto;
        padding: 140px 0 40px;
        /* Added top padding for header clearance */
    }

    .strength-hero h1 {
        font-size: 2.5rem;
    }

    .stats-strip-container {
        position: relative;
        bottom: 0;
        margin-top: -40px;
        padding-bottom: 2rem;
    }

    .strength-visual {
        height: 350px;
    }

    .strength-visual .blob-bg {
        width: 300px;
        height: 300px;
    }

    .strength-detail h2 {
        font-size: 2rem;
    }

    .strength-detail {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        max-width: 100%;
        border-left: none;
        border-top: 4px solid var(--primary-color);
        border-radius: 12px;
        margin-top: 1rem;
    }

    .strength-row {
        margin-bottom: 4rem !important;
        padding-bottom: 0 !important;
        flex-direction: column !important;
        /* Force stacking */
    }

    /* Reset order for zig-zag to straight line */
    .strength-row.flex-lg-row-reverse {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .strength-hero h1 {
        font-size: 2rem;
    }

    .stats-strip {
        padding: 1.5rem;
    }

    /* Ensure stats stack on mobile */
    .stats-strip .row {
        flex-direction: column;
    }

    .stats-strip .col-md-4 {
        width: 100%;
        margin-bottom: 1.5rem;
        border-left: none !important;
        /* Remove connecting borders */
        border-bottom: 1px solid #e2e8f0;
        /* Add separators instead */
        padding-bottom: 1.5rem;
    }

    .stats-strip .col-md-4:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-item {
        margin-bottom: 0;
        /* Handling margin on col level now */
    }

    .strength-visual {
        height: 280px;
    }

    .strength-visual .blob-bg {
        width: 220px;
        height: 220px;
    }

    .icon-wrapper img {
        width: 80px;
        height: 80px;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

/* Institutional & Bulk Products Section */
/* Institutional & Bulk Products Section */
.institutional-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.product-showcase-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 0;
    /* Removed padding to let image take space */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 380px;
    /* Fixed height for uniformity */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(55, 73, 159, 0.15);
    border-color: rgba(55, 73, 159, 0.2);
}

/* Image Area - Expanded */
.product-showcase-card .mb-2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-bottom: 80px;
    background: radial-gradient(circle at center, rgba(55, 73, 159, 0.05) 0%, transparent 70%);
    margin-bottom: 0 !important;
}

.product-showcase-card img {
    width: auto;
    height: 180px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    margin-bottom: 0;
}

.product-showcase-card:hover img {
    transform: scale(1.1) translateY(-30px);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
}

/* Content Overlay */
.product-showcase-card .product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-showcase-card .product-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    font-family: var(--font-family);
    transition: color 0.3s;
}

.product-showcase-card:hover .product-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Description - Hidden to Shown */
.product-showcase-card .product-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.product-showcase-card:hover .product-content p {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.5rem;
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(55, 73, 159, 0.3);
}

/* --- Moved from Products.php --- */

.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: visible;
    background: #fff;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(55, 73, 159, 0.1) !important;
    border-color: rgba(55, 73, 159, 0.1) !important;
}

.product-card .overflow-hidden {
    position: relative;
    z-index: 1;
    /* height: 260px; */
    background: radial-gradient(circle at center, rgba(55, 73, 159, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 20px 20px 0 0;
}

/* Decorative Blob behind image */
.product-card .overflow-hidden::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 230px;
    height: 230px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
    transition: all 0.5s ease;
}

.product-card:hover .overflow-hidden::before {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
}

.product-card img {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 220px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover img {
    transform: scale(1.15) rotate(3deg) translateY(-5px);
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.2));
}

.card-title {
    font-family: var(--font-family2);
    font-size: 1.35rem;
    color: var(--primary-color) !important;
}

.card-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}


.manufacturing-unit {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.manufacturing-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.manufacturing-list li:last-child {
    border-bottom: none;
}

.manufacturing-list img {
    width: 24px;
    height: auto;
    margin-right: 15px;
    opacity: 0.8;
}

.manufacturing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Thank You Section Redesign */
.thank-you-section {
    background: #ffffff;
    /* padding-bottom: 80px; */
}

.thank-you-card {
    background: #fcfcfc;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.thank-you-title {
    font-family: var(--font-family2);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.divider-custom {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0.8;
}

.thank-you-text {
    font-family: var(--font-family1);
    color: #2c3036;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.script-font {
    font-family: 'Baskervville', serif;
    /* Fallback to serif if no script font loaded, or use existing */
    font-style: italic;
    letter-spacing: 1px;
}

/* Decorative Corners */
.corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.thank-you-card:hover .corner-decoration {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}


@media (max-width: 768px) {
    .map-section img {
        width: 10%;
    }

    .map-section .map {
        padding-bottom: 1.5rem;
    }
}