/* Global Styles */
:root {
    --primary: #1E3A8A;
    --primary-dark: #172554;
    --accent: #F97316;
    --accent-dark: #EA580C;
    --bg: #F9FAFB;
    --bg-alt: #F3F4F6;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --spacing-unit: 4rem;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: var(--line-height-normal);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.section-padding {
    padding: var(--spacing-unit) 0;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    color: var(--text-dark) !important;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('https://images.unsplash.com/photo-1531972497489-8eb337acf6e5?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(17, 24, 39, 0.7),
        rgba(17, 24, 39, 0.6)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: var(--line-height-relaxed);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-wrapper {
    display: inline-block;
    position: relative;
}

.btn-glow {
    background: var(--primary);
    color: #ffffff;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.4);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-glow:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(30, 58, 138, 0.6);
    color: #ffffff;
}

.btn-glow:hover::before {
    transform: translateX(100%);
}

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

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .btn-glow {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn-glow {
        font-size: 1rem;
        padding: 0.75rem 1.75rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Sections */
.bg-light {
    background-color: var(--bg-alt) !important;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 3rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-copyright p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* About Section */
.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.feature-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Owner Section */
.owner-content {
    position: relative;
    z-index: 1;
}

.owner-image-wrapper {
    position: relative;
    padding: 2rem;
}

.owner-image {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: 0 auto;
}

.owner-image img {
    border: 8px solid #fff;
    transition: transform 0.3s ease;
}

.owner-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-5deg);
    z-index: 1;
}

.owner-info {
    padding: 2rem;
}

.owner-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.owner-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.owner-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin-bottom: 1.5rem;
}

.owner-bio {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.owner-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    color: white;
}

/* Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-glow {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: calc(var(--spacing-unit) * 0.75) 0;
    }

    .owner-name {
        font-size: 2rem;
    }

    .owner-title {
        font-size: 1.1rem;
    }

    .owner-bio {
        font-size: 1rem;
    }

    .owner-image-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-glow {
        font-size: 1rem;
        padding: 0.75rem 1.75rem;
    }
    
    .section-padding {
        padding: calc(var(--spacing-unit) * 0.5) 0;
    }

    .about-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

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

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .owner-info {
        text-align: center;
        padding: 1rem;
    }

    .owner-divider {
        margin: 1.5rem auto;
    }

    .owner-social {
        justify-content: center;
    }
}

/* Products Section */
.products-scroll-container {
    position: relative;
    padding: 1rem 0;
}

.products-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.products-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-card {
    flex: 0 0 auto;
    width: 300px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: var(--line-height-relaxed);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.product-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(3px);
}

/* Scroll Indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.scroll-indicator.left {
    left: 0;
}

.scroll-indicator.right {
    right: 0;
}

.products-scroll-container:hover .scroll-indicator {
    opacity: 1;
}

.scroll-indicator:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .products-wrapper {
        gap: 1rem;
        padding: 1rem 0.5rem;
    }

    .product-card {
        width: 260px;
    }

    .product-content {
        padding: 1.25rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Why Choose Us Section */
.feature-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    top: 0;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon-wrap::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrap::before {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    opacity: 0.3;
}

.feature-icon {
    font-size: 2rem;
    color: #ffffff;
}

.feature-box-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-box-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Animation for feature boxes */
.feature-box.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.feature-box.fade-in-up:hover {
    transform: translateY(-10px);
}

@media (max-width: 991.98px) {
    .feature-box {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .feature-icon {
        font-size: 1.75rem;
    }

    .feature-box-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .feature-box {
        margin-bottom: 1rem;
    }

    .feature-box-text {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Form Styling */
.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .input-group {
    border-radius: 12px;
    overflow: hidden;
}

.contact-form .input-group-text {
    background-color: var(--bg);
    border: 1px solid var(--border-color);
    border-right: none;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Contact Info Styling */
.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.contact-info-header {
    margin-bottom: 2.5rem;
}

.contact-info-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.contact-info-list {
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.25rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
    color: white;
}

.contact-social {
    margin-top: auto;
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 991.98px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }

    .contact-info-header h3 {
        font-size: 1.5rem;
    }

    .contact-info-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
    }

    .contact-info-content h4 {
        font-size: 1rem;
    }
} 